summaryrefslogtreecommitdiff
path: root/other/arpmitm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'other/arpmitm/Makefile')
-rw-r--r--other/arpmitm/Makefile13
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 @@
1CC=gcc
2CFLAGS=-Wall -O2
3LIBS=-lm
4LIBNET_DEFS=`libnet-config --defines`
5LIBNET_LIBS=`libnet-config --libs`
6
7all:
8
9 $(CC) $(CFLAGS) $(LIBNET_DEFS) arpmitm.c -o arpmitm $(LIBS) $(LIBNET_LIBS)
10 strip arpmitm
11
12clean:
13 rm -vf arpmitm