diff options
author | EUcancER <root@euer.krebsco.de> | 2012-04-18 23:14:55 +0200 |
---|---|---|
committer | EUcancER <root@euer.krebsco.de> | 2012-04-18 23:14:55 +0200 |
commit | 3c52c7895c28e7f63e27680bd7ef533b93ec37ba (patch) | |
tree | c5acac4a10aa9a7cf0b5ed82c7e3ead39e823e24 /Reaktor/repos/dnsmap/Makefile | |
parent | 9917d1d3974cb156a434e6f3a518de3ac643163e (diff) |
Reaktor: add dnsmap-0.30
Diffstat (limited to 'Reaktor/repos/dnsmap/Makefile')
-rw-r--r-- | Reaktor/repos/dnsmap/Makefile | 12 |
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 + |