mirror of
https://github.com/open-sdr/openwifi.git
synced 2024-12-19 13:48:24 +00:00
14 lines
268 B
Makefile
14 lines
268 B
Makefile
|
|
all: inject_80211 analyze_80211
|
|
|
|
inject_80211: inject_80211.c
|
|
gcc -Wall -Werror inject_80211.c -o inject_80211 -lpcap
|
|
|
|
analyze_80211: analyze_80211.c
|
|
gcc -Wall -Werror radiotap.c analyze_80211.c -o analyze_80211 -lpcap
|
|
|
|
|
|
clean:
|
|
rm -f inject_80211 analyze_80211
|
|
|