Files
bruteratel/BruteRatel-v2.1.2/adhoc_scripts/shellcode_loader_samples/Makefile
T

12 lines
218 B
Makefile
Raw Normal View History

2026-08-27 11:22:43 -06:00
all:
make exe
make dll
exe:
x86_64-w64-mingw32-gcc shellcode.c -o shellcode.exe -lntdll -s
dll:
x86_64-w64-mingw32-gcc shellcode.c -o shellcode.dll -lntdll -s -DBUILD_DLL -shared
clean:
rm -rf *.exe *.dll *.bin