mirror of
https://github.com/kleiton0x00/RemoteShellcodeExec
synced 2026-06-08 15:17:36 +00:00
11 lines
174 B
Makefile
11 lines
174 B
Makefile
CCX64 := x86_64-w64-mingw32-gcc
|
|
CCX86 := i686-w64-mingw32-gcc
|
|
|
|
OUTX64 := inject-http.o
|
|
|
|
all: x64
|
|
|
|
x64:
|
|
@ echo Compiling the BOF...
|
|
@ $(CCX64) -c inject-http.c -o $(OUTX64)
|