Added diffs from NetBSD version to allow find to compile
[unix-history] / usr.bin / crontab / Makefile
CommitLineData
15637ed4
RG
1#
2# PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
3# -------------------- ----- ----------------------
4# CURRENT PATCH LEVEL: 1 00131
5# -------------------- ----- ----------------------
6#
7# 06 Apr 93 Adam Glass Fixed so manual pages install, install crontab
8# with proper permissions and owners
9#
10PROG= crontab
11SRCS= crontab.c misc.c entry.c env.c
12CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../libexec/crond -DDEBUGGING=1 -DBSD -DCRONDIR='"/var/cron"' -fstrength-reduce
13BINOWN =root
14BINMODE=4111
15MAN1= crontab.0
16CLEANFILES=crontab.5.0
17
18crontab.0: crontab.5.0
19
20afterinstall:
21 install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} crontab.5.0 \
22 ${DESTDIR}${MANDIR}5/crontab.0
23
24.include <bsd.prog.mk>
25.PATH: ${.CURDIR}/../../libexec/crond