Codebase list donut-shellcode / c74c436d-2298-411d-80ba-1e7e1dcc7e76/main Makefile.mingw
c74c436d-2298-411d-80ba-1e7e1dcc7e76/main

Tree @c74c436d-2298-411d-80ba-1e7e1dcc7e76/main (Download .tar.gz)

Makefile.mingw @c74c436d-2298-411d-80ba-1e7e1dcc7e76/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