Initial Commit

This commit is contained in:
KingOfTheNOPs
2026-04-21 20:49:26 -04:00
parent c47cc0a6ea
commit 7dc3143399
9 changed files with 2185 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
CC=x86_64-w64-mingw32-gcc
OBJCOPY=x86_64-w64-mingw32-objcopy
CFLAGS=-O2 -c -Wall -Wextra -fno-asynchronous-unwind-tables -fno-unwind-tables -fno-exceptions -fno-stack-protector
INCLUDES=-I .
OUT=cdp_enable_bof.o
.PHONY: all clean
all: $(OUT)
$(OUT): cdp_enable_bof.c
$(CC) $(CFLAGS) -o $@ $< $(INCLUDES)
$(OBJCOPY) --remove-section .pdata --remove-section .xdata --remove-section .eh_frame $@
clean:
rm -f $(OUT)