glass 5056f8f1ba cleaned up such that it compiles quietly
now installs with right permissions
now installs both man pages properly
1993-03-28 17:27:04 +00:00

18 lines
445 B
Makefile

PROG= crontab
SRCS= crontab.c misc.c entry.c env.c
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../libexec/crond -DDEBUGGING=1 -DBSD -DCRONDIR='"/var/cron"' -fstrength-reduce
BINOWN =root
BINMODE=4111
MAN1= crontab.0
CLEANFILES=crontab.5.0
crontab.0: crontab.5.0
afterinstall:
install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} crontab.5.0 \
${DESTDIR}${MANDIR}5/crontab.0
.include <bsd.prog.mk>
.PATH: ${.CURDIR}/../../libexec/crond