From 826e928cd0e2381949dbc802915bf7c94df6a332 Mon Sep 17 00:00:00 2001 From: Thijn <113618658+tdeerenberg@users.noreply.github.com> Date: Tue, 8 Apr 2025 17:28:42 +0200 Subject: [PATCH] Update Makefile --- sample_bof/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sample_bof/Makefile b/sample_bof/Makefile index e69de29..71a7f17 100644 --- a/sample_bof/Makefile +++ b/sample_bof/Makefile @@ -0,0 +1,7 @@ +INFILE:= main.c +OUTFILE:= main.o +CC_X64:= x86_64-w64-mingw32-gcc +OPTIONS:= -Wall -masm=intel + +coff: + $(CC_X64) -c $(INFILE) -o (OUTFILE) $(OPTIONS)