From 0142fb19905808101878148ca188161f016eba5e Mon Sep 17 00:00:00 2001 From: spacehen Date: Fri, 30 Dec 2022 12:05:55 +0200 Subject: CDL: Compact Detour Library Initial commit for the CDL x86_64 detour library. --- tests/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..d28b133 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,16 @@ +IDIR=../ +CC=gcc +CFLAGS=-I$(IDIR) +CFILES_CDL=../cdl.c + +all: basic_jmp basic_swbp + +basic_jmp: basic_jmp.c + $(CC) $(CFLAGS) basic_jmp.c $(CFILES_CDL) -o basic_jmp +basic_swbp: basic_swbp.c + $(CC) $(CFLAGS) basic_swbp.c $(CFILES_CDL) -o basic_swbp + +.PHONY: clean +clean: + rm -f basic_jmp + rm -f basic_swbp -- cgit v1.2.3-70-g09d2