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

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

clean:
	rm parse_eapol *.o