about summary refs log tree commit diff stats
path: root/benchmark/Makefile
blob: 6dd995d37ef2eed25bde4057d965a204eb47d00c (plain) (blame)
1
2
3
4
5
6
7
8
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