mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-11 01:06:10 +06:00
15 lines
418 B
Makefile
15 lines
418 B
Makefile
all: decrypt_win32.exe decrypt_win64.exe
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm decrypt_win32.exe decrypt_win64.exe 2>/dev/null || /bin/true
|
|
|
|
decrypt_win32.exe: main.c Makefile
|
|
i686-w64-mingw32-gcc main.c -Os -o decrypt_win32.exe -lcrypt32
|
|
i686-w64-mingw32-strip decrypt_win32.exe
|
|
|
|
decrypt_win64.exe: main.c Makefile
|
|
x86_64-w64-mingw32-gcc main.c -Os -o decrypt_win64.exe -lcrypt32
|
|
x86_64-w64-mingw32-strip decrypt_win64.exe
|
|
|