summaryrefslogtreecommitdiffstats
path: root/Reaktor/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
commit3c52c7895c28e7f63e27680bd7ef533b93ec37ba (patch)
treec5acac4a10aa9a7cf0b5ed82c7e3ead39e823e24 /Reaktor/repos/dnsmap/Makefile
parent9917d1d3974cb156a434e6f3a518de3ac643163e (diff)
Reaktor: add dnsmap-0.30
Diffstat (limited to 'Reaktor/repos/dnsmap/Makefile')
-rw-r--r--Reaktor/repos/dnsmap/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Reaktor/repos/dnsmap/Makefile b/Reaktor/repos/dnsmap/Makefile
new file mode 100644
index 00000000..2393d374
--- /dev/null
+++ b/Reaktor/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
+