summaryrefslogtreecommitdiff
path: root/other/grabbb/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'other/grabbb/Makefile')
-rw-r--r--other/grabbb/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/other/grabbb/Makefile b/other/grabbb/Makefile
new file mode 100644
index 0000000..545ea2e
--- /dev/null
+++ b/other/grabbb/Makefile
@@ -0,0 +1,12 @@
1CFLAGS=-Wall
2CC=gcc
3OBJS=grabbb.o
4
5all: grabbb
6
7clean:
8 rm -f *.o grabbb
9
10arptool: $(OBJS)
11 $(CC) $(CFLAGS) -o grabbb $(OBJS)
12 strip grabbb