aboutsummaryrefslogtreecommitdiffstats
path: root/repos/dnsmap/Makefile
diff options
context:
space:
mode:
authorEUcancER <root@euer.krebsco.de>2012-04-18 23:14:55 +0200
committerEUcancER <root@euer.krebsco.de>2012-04-18 23:14:55 +0200
commit2ebb1766f1df1055151dd069fba6ca5e8a16af31 (patch)
tree1bd16f0573b708fea3ce374e2a9d6ef688fab8fa /repos/dnsmap/Makefile
parentf2698383b9d945fc6dd6a8b72ecb74e3f0c76db3 (diff)
Reaktor: add dnsmap-0.30
Diffstat (limited to 'repos/dnsmap/Makefile')
-rw-r--r--repos/dnsmap/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/repos/dnsmap/Makefile b/repos/dnsmap/Makefile
new file mode 100644
index 0000000..2393d37
--- /dev/null
+++ b/repos/dnsmap/Makefile
@@ -0,0 +1,12 @@
+CC=gcc
+CFLAGS=-I.
+BINDIR=/usr/local/bin
+
+dnsmap: dnsmap.c dnsmap.h
+ $(CC) $(CFLAGS) -o dnsmap dnsmap.c
+
+install: dnsmap
+ mkdir -p $(DESTDIR)$(BINDIR)
+ install -m 0755 dnsmap $(DESTDIR)$(BINDIR)
+ install -m 0755 dnsmap-bulk.sh $(DESTDIR)$(BINDIR)/dnsmap-bulk
+