7328d212f1
- patch included libtools - use ports gmp now that our gmp is gone - make included scripts more readable
24 lines
486 B
Makefile
24 lines
486 B
Makefile
#
|
|
# Makefile wrapper for nessus
|
|
#
|
|
# Original by dug song <dugsong@monkey.org>
|
|
# Enhanced by Matt Behrens <matt@openbsd.org>
|
|
#
|
|
|
|
all:
|
|
@for dir in @@NESSUS_DIRS@@ ; do \
|
|
echo "===> Building $$dir" ; \
|
|
(cd $$dir ; make $@) ; \
|
|
done
|
|
|
|
install:
|
|
@for dir in @@NESSUS_DIRS@@ ; do \
|
|
echo "===> Installing $$dir" ; \
|
|
(cd $$dir ; \
|
|
make prefix=${PREFIX} \
|
|
localstatedir=${WRKINST}/var/nessus \
|
|
sysconfdir=${PREFIX}/share/examples/nessus \
|
|
$@) ; \
|
|
done
|
|
|