mirror of
https://github.com/rasta-mouse/LibTP
synced 2026-06-08 17:01:36 +00:00
15 lines
260 B
Makefile
15 lines
260 B
Makefile
CC_64=x86_64-w64-mingw32-gcc
|
|
|
|
all: libtp.x64.zip
|
|
|
|
bin:
|
|
mkdir bin
|
|
|
|
libtp.x64.zip: bin
|
|
$(CC_64) -DWIN_X64 -shared -Wall -Wno-pointer-arith -fno-ident -c src/tp.c -o bin/tp.x64.o
|
|
zip -q -j libtp.x64.zip bin/*.x64.o
|
|
|
|
clean:
|
|
rm -rf bin/*.o
|
|
rm -f libtp.x64.zip
|