diff options
author | Marc <foxtrot@malloc.me> | 2021-12-05 03:34:54 +0000 |
---|---|---|
committer | Marc <foxtrot@malloc.me> | 2021-12-05 03:35:00 +0000 |
commit | 24881ebff29c363505cbc33dff65106fc7ce1f5b (patch) | |
tree | ec829d61bd728bc7cc5c897a75afc0348e9824b7 /examples/parse_beacon/Makefile | |
parent | 70963323b91d8f88e48bf6d4711dd7d4bef48343 (diff) | |
download | libwifi-24881ebff29c363505cbc33dff65106fc7ce1f5b.tar.gz libwifi-24881ebff29c363505cbc33dff65106fc7ce1f5b.tar.bz2 libwifi-24881ebff29c363505cbc33dff65106fc7ce1f5b.zip |
examples: Add Makefiles
Fixes #1
Diffstat (limited to 'examples/parse_beacon/Makefile')
-rw-r--r-- | examples/parse_beacon/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/parse_beacon/Makefile b/examples/parse_beacon/Makefile new file mode 100644 index 0000000..b1c78b4 --- /dev/null +++ b/examples/parse_beacon/Makefile | |||
@@ -0,0 +1,9 @@ | |||
1 | CC=clang | ||
2 | CFLAGS=-Wall -Werror -O3 -o parse_beacon | ||
3 | LDFLAGS=-lpcap -lwifi | ||
4 | |||
5 | parse_eapol: parse_beacon.o | ||
6 | $(CC) $(CFLAGS) parse_beacon.c $(LDFLAGS) | ||
7 | |||
8 | clean: | ||
9 | rm parse_beacon *.o | ||