Archived
1
0
This repository has been archived on 2019-01-29. You can view files and clone it, but cannot push or open issues or pull requests.
LoveToken/Makefile
2015-06-05 07:09:08 -04:00

9 lines
313 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 lt.c
mingw32-gcc -shared -g -ggdb -o bin/LoveToken.dll bin/lt.o -Wl,--out-implib,bin/libLoveToken.a
# cp bin/LoveToken.dll test/LoveToken.dll