Codebase list donut-shellcode / 8398b045-8c6a-4141-800e-0b571147294e/main Makefile.mingw
8398b045-8c6a-4141-800e-0b571147294e/main

Tree @8398b045-8c6a-4141-800e-0b571147294e/main (Download .tar.gz)

Makefile.mingw @8398b045-8c6a-4141-800e-0b571147294e/mainraw · history · blame

1
2
3
4
5
6
donut:
	x86_64-w64-mingw32-gcc -Wall -fpack-struct=8 -DDONUT_EXE -I include donut.c hash.c encrypt.c payload/clib.c -odonut.exe
debug:
	x86_64-w64-mingw32-gcc -Wall -Wno-format -fpack-struct=8 -DDEBUG -DDONUT_EXE -I include donut.c hash.c encrypt.c payload/clib.c -odonut.exe
clean:
	rm donut.exe *.o