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