diff options
Diffstat (limited to 'other/arpmitm/Makefile')
| -rw-r--r-- | other/arpmitm/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/other/arpmitm/Makefile b/other/arpmitm/Makefile new file mode 100644 index 0000000..603c4f2 --- /dev/null +++ b/other/arpmitm/Makefile | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | CC=gcc | ||
| 2 | CFLAGS=-Wall -O2 | ||
| 3 | LIBS=-lm | ||
| 4 | LIBNET_DEFS=`libnet-config --defines` | ||
| 5 | LIBNET_LIBS=`libnet-config --libs` | ||
| 6 | |||
| 7 | all: | ||
| 8 | |||
| 9 | $(CC) $(CFLAGS) $(LIBNET_DEFS) arpmitm.c -o arpmitm $(LIBS) $(LIBNET_LIBS) | ||
| 10 | strip arpmitm | ||
| 11 | |||
| 12 | clean: | ||
| 13 | rm -vf arpmitm | ||
