NetBSD/usr.bin/crontab/Makefile

20 lines
472 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
.if !defined(NOMAN)
afterinstall:
install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} crontab.5.0 \
${DESTDIR}${MANDIR}5/crontab.0
.endif
.include <bsd.prog.mk>
.PATH: ${.CURDIR}/../../libexec/crond