about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--examples/generate_beacon/Makefile9
-rw-r--r--examples/generate_rtscts/Makefile9
-rw-r--r--examples/parse_beacon/Makefile9
-rw-r--r--examples/parse_eapol/Makefile9
4 files changed, 36 insertions, 0 deletions
diff --git a/examples/generate_beacon/Makefile b/examples/generate_beacon/Makefile new file mode 100644 index 0000000..799de5b --- /dev/null +++ b/examples/generate_beacon/Makefile
@@ -0,0 +1,9 @@
1CC=clang
2CFLAGS=-Wall -Werror -O3 -o generate_beacon
3LDFLAGS=-lpcap -lwifi
4
5parse_eapol: generate_beacon.o
6 $(CC) $(CFLAGS) generate_beacon.c $(LDFLAGS)
7
8clean:
9 rm generate_beacon *.o
diff --git a/examples/generate_rtscts/Makefile b/examples/generate_rtscts/Makefile new file mode 100644 index 0000000..dbe6b10 --- /dev/null +++ b/examples/generate_rtscts/Makefile
@@ -0,0 +1,9 @@
1CC=clang
2CFLAGS=-Wall -Werror -O3 -o generate_rtscts
3LDFLAGS=-lpcap -lwifi
4
5parse_eapol: generate_rtscts.o
6 $(CC) $(CFLAGS) generate_rtscts.c $(LDFLAGS)
7
8clean:
9 rm generate_rtscts *.o
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 @@
1CC=clang
2CFLAGS=-Wall -Werror -O3 -o parse_beacon
3LDFLAGS=-lpcap -lwifi
4
5parse_eapol: parse_beacon.o
6 $(CC) $(CFLAGS) parse_beacon.c $(LDFLAGS)
7
8clean:
9 rm parse_beacon *.o
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