11 lines
522 B
Makefile
11 lines
522 B
Makefile
# sorry this makefile doesn't include anything cross-platform
|
|
# was hurriedly made to test it
|
|
|
|
all:
|
|
mkdir -p bin
|
|
mingw32-gcc --std=c99 -g -ggdb -c -o bin/lt.o src/lt.c -liconv
|
|
mingw32-gcc -shared -g -ggdb -o bin/LoveToken.dll bin/lt.o -Wl,--out-implib,bin/libLoveToken.a -liconv
|
|
#mingw32-gcc --std=c99 -g -ggdb -c -o bin/lt.o -DI_FUCKING_HATE_WINDOWS src/lt.c
|
|
#mingw32-gcc -shared -g -ggdb -o bin/LoveToken.dll bin/iconv.o bin/lt.o -Wl,--out-implib,bin/libLoveToken.a
|
|
#cp bin/LoveToken.dll test/LoveToken.dll
|