Merge branch 'master' of github.com:jimcheetham/zmap into jimcheetham-master

This commit is contained in:
Eric 2013-08-29 01:49:04 -04:00
commit 851cdb05d6
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@ PREFIX=/usr/local
INSTALL=install
INSTALLDATA=install -m 644
mandir=/usr/share/man/man1/
mandir=$(PREFIX)/man/man1/
bindir=$(PREFIX)/sbin
# Hardening and warnings for building with gcc
@ -55,6 +55,7 @@ zopt.c zopt.h: zopt.ggo
install: zmap
$(INSTALL) zmap $(bindir)/zmap
test -d /etc/zmap || (mkdir /etc/zmap && $(INSTALLDATA) ../conf/* /etc/zmap/)
test -d $(mandir) || mkdir -p $(mandir)
$(INSTALLDATA) ./zmap.1 $(mandir)
@echo "\n**************\nSuccess! ZMap is installed. Try running (as root):\nzmap -p 80 -N 10 -B 1M -o -\n**************"