From ae6c98a48da409d040604aeffb84a38155fb5bac Mon Sep 17 00:00:00 2001 From: Marc Date: Tue, 30 Nov 2021 22:39:26 +0000 Subject: Initial Commit Signed-off-by: Marc --- benchmark/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 benchmark/Makefile (limited to 'benchmark/Makefile') diff --git a/benchmark/Makefile b/benchmark/Makefile new file mode 100644 index 0000000..6dd995d --- /dev/null +++ b/benchmark/Makefile @@ -0,0 +1,9 @@ +CC=clang +CFLAGS=-Wall -Werror -O3 -o benchmark_beacon +LDFLAGS=-lpcap -lwifi + +benchmark_beacon: benchmark_beacon.o + $(CC) $(CFLAGS) benchmark_beacon.c $(LDFLAGS) + +clean: + rm benchmark_beacon *.o -- cgit 1.4.1