about summary refs log tree commit diff stats
path: root/examples/parse_beacon/Makefile
blob: b1c78b4658bdaaa65b1e7399a31318e31e12dd71 (plain) (blame)
1
2
3
4
5
6
7
8
9
CC=clang
CFLAGS=-Wall -Werror -O3 -o parse_beacon
LDFLAGS=-lpcap -lwifi

parse_eapol: parse_beacon.o
	$(CC) $(CFLAGS) parse_beacon.c $(LDFLAGS)

clean:
	rm parse_beacon *.o