Codebase list donut-shellcode / 8c6e6fcc-b23d-4eea-874a-9e1d87d9c245/main Makefile.mingw
8c6e6fcc-b23d-4eea-874a-9e1d87d9c245/main

Tree @8c6e6fcc-b23d-4eea-874a-9e1d87d9c245/main (Download .tar.gz)

Makefile.mingw @8c6e6fcc-b23d-4eea-874a-9e1d87d9c245/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