diff options
| -rw-r--r-- | examples/generate_beacon/Makefile | 9 | ||||
| -rw-r--r-- | examples/generate_rtscts/Makefile | 9 | ||||
| -rw-r--r-- | examples/parse_beacon/Makefile | 9 | ||||
| -rw-r--r-- | examples/parse_eapol/Makefile | 9 |
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 @@ | |||
| 1 | CC=clang | ||
| 2 | CFLAGS=-Wall -Werror -O3 -o generate_beacon | ||
| 3 | LDFLAGS=-lpcap -lwifi | ||
| 4 | |||
| 5 | parse_eapol: generate_beacon.o | ||
| 6 | $(CC) $(CFLAGS) generate_beacon.c $(LDFLAGS) | ||
| 7 | |||
| 8 | clean: | ||
| 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 @@ | |||
| 1 | CC=clang | ||
| 2 | CFLAGS=-Wall -Werror -O3 -o generate_rtscts | ||
| 3 | LDFLAGS=-lpcap -lwifi | ||
| 4 | |||
| 5 | parse_eapol: generate_rtscts.o | ||
| 6 | $(CC) $(CFLAGS) generate_rtscts.c $(LDFLAGS) | ||
| 7 | |||
| 8 | clean: | ||
| 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 @@ | |||
| 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 | ||
| 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 @@ | |||
| 1 | CC=clang | ||
| 2 | CFLAGS=-Wall -Werror -O3 -o parse_eapol | ||
| 3 | LDFLAGS=-lpcap -lwifi | ||
| 4 | |||
| 5 | parse_eapol: parse_eapol.o | ||
| 6 | $(CC) $(CFLAGS) parse_eapol.c $(LDFLAGS) | ||
| 7 | |||
| 8 | clean: | ||
| 9 | rm parse_eapol *.o | ||
