mirror of
https://github.com/pard0p/LibWinHttp
synced 2026-06-08 16:39:35 +00:00
14 lines
284 B
Makefile
14 lines
284 B
Makefile
CC_64=x86_64-w64-mingw32-gcc
|
|
|
|
all: libwinhttp.x64.zip
|
|
|
|
bin:
|
|
mkdir bin
|
|
|
|
libwinhttp.x64.zip: bin
|
|
$(CC_64) -DWIN_X64 -shared -masm=intel -Wall -Wno-pointer-arith -c src/HTTP.c -o bin/HTTP.x64.o
|
|
zip -q -j libwinhttp.x64.zip bin/*.x64.o
|
|
|
|
clean:
|
|
rm -rf bin/*.o
|
|
rm -f libwinhttp.x64.zip
|