blob: d9b4c2e4ad19d402e800334b2946f3583403ddbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $Id: Makefile,v 1.10 1994/02/10 02:03:33 cgd Exp $
PROG= crontab
SRCS= crontab.c misc.c entry.c env.c
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../usr.sbin/cron -DDEBUGGING=1
BINOWN =root
BINMODE=4111
MAN1=
MAN5=
CLEANFILES=crontab.1.0 crontab.5.0
.if !defined(NOMAN)
all: crontab.1.0 crontab.5.0
crontab.1.0: crontab.1
nroff -mandoc ${.ALLSRC} > ${.TARGET}
crontab.5.0: crontab.5
nroff -mandoc ${.ALLSRC} > ${.TARGET}
maninstall:
${MINSTALL} crontab.1.0 ${DESTDIR}${MANDIR}1/crontab.0
${MINSTALL} crontab.5.0 ${DESTDIR}${MANDIR}5/crontab.0
.endif
.include <bsd.prog.mk>
.PATH: ${.CURDIR}/../../usr.sbin/cron
|