about summary refs log tree commit diff stats
path: root/benchmark/Makefile
diff options
context:
space:
mode:
authorMarc <foxtrot@malloc.me>2021-11-30 22:39:26 +0000
committerMarc <foxtrot@malloc.me>2021-12-01 16:54:44 +0000
commitae6c98a48da409d040604aeffb84a38155fb5bac (patch)
treec27a8e28972209581ce3fba2130bf0c2b4f9c9c0 /benchmark/Makefile
downloadlibwifi-ae6c98a48da409d040604aeffb84a38155fb5bac.tar.gz
libwifi-ae6c98a48da409d040604aeffb84a38155fb5bac.tar.bz2
libwifi-ae6c98a48da409d040604aeffb84a38155fb5bac.zip
Initial Commit
Signed-off-by: Marc <foxtrot@malloc.me>
Diffstat (limited to 'benchmark/Makefile')
-rw-r--r--benchmark/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmark/Makefile b/benchmark/Makefile new file mode 100644 index 0000000..6dd995d --- /dev/null +++ b/benchmark/Makefile
@@ -0,0 +1,9 @@
1CC=clang
2CFLAGS=-Wall -Werror -O3 -o benchmark_beacon
3LDFLAGS=-lpcap -lwifi
4
5benchmark_beacon: benchmark_beacon.o
6 $(CC) $(CFLAGS) benchmark_beacon.c $(LDFLAGS)
7
8clean:
9 rm benchmark_beacon *.o