diff options
Diffstat (limited to 'benchmark/Makefile')
| -rw-r--r-- | benchmark/Makefile | 9 |
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 @@ | |||
| 1 | CC=clang | ||
| 2 | CFLAGS=-Wall -Werror -O3 -o benchmark_beacon | ||
| 3 | LDFLAGS=-lpcap -lwifi | ||
| 4 | |||
| 5 | benchmark_beacon: benchmark_beacon.o | ||
| 6 | $(CC) $(CFLAGS) benchmark_beacon.c $(LDFLAGS) | ||
| 7 | |||
| 8 | clean: | ||
| 9 | rm benchmark_beacon *.o | ||
