From 24881ebff29c363505cbc33dff65106fc7ce1f5b Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 5 Dec 2021 03:34:54 +0000 Subject: examples: Add Makefiles Fixes #1 --- examples/parse_eapol/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 examples/parse_eapol/Makefile (limited to 'examples/parse_eapol') 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 @@ +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 -- cgit 1.4.1