about summary refs log tree commit diff stats
path: root/examples/parse_eapol
diff options
context:
space:
mode:
Diffstat (limited to 'examples/parse_eapol')
-rw-r--r--examples/parse_eapol/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/parse_eapol/Makefile b/examples/parse_eapol/Makefile new file mode 100644 index 0000000..bbc18ca --- /dev/null +++ b/examples/parse_eapol/Makefile
@@ -0,0 +1,9 @@
1CC=clang
2CFLAGS=-Wall -Werror -O3 -o parse_eapol
3LDFLAGS=-lpcap -lwifi
4
5parse_eapol: parse_eapol.o
6 $(CC) $(CFLAGS) parse_eapol.c $(LDFLAGS)
7
8clean:
9 rm parse_eapol *.o