mirror of
https://github.com/Yaxser/CobaltStrike-BOF
synced 2026-06-08 12:59:00 +00:00
11 lines
232 B
Makefile
11 lines
232 B
Makefile
BOF := AddUserToDomainGroup
|
|
CC_x64 := x86_64-w64-mingw32-g++
|
|
STRIP_x64 := x86_64-w64-mingw32-strip
|
|
|
|
all:
|
|
$(CC_x64) -o ../$(BOF).o -c $(BOF).cpp -Wno-write-strings
|
|
$(STRIP_x64) --strip-unneeded ../$(BOF).o
|
|
|
|
clean:
|
|
rm ../$(BOF).o
|