diff options
-rw-r--r-- | etc/periodic/Makefile.inc | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/etc/periodic/Makefile.inc b/etc/periodic/Makefile.inc index 33f7d8b..8967af1 100644 --- a/etc/periodic/Makefile.inc +++ b/etc/periodic/Makefile.inc @@ -1,12 +1,10 @@ -# $Id: Makefile.inc,v 1.1 1997/08/12 18:23:25 pst Exp $ +# $Id: Makefile.inc,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $ -BINDIR= /etc/periodic/${.CURDIR:T} -BINOWN= root -BINGRP= wheel +BINDIR= /etc/periodic/${.CURDIR:T} +BINOWN= root +BINGRP= wheel +NOOBJ= -all depend etc lint: - -install: - cd ${.CURDIR}; \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN} \ - ${DESTDIR}/${BINDIR} +beforeinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN} \ + ${DESTDIR}${BINDIR} |