blob: b512640af682f707f688cab98809f0c8a096c887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: Makefile,v 1.23 2002/09/18 14:00:36 lukem Exp $
.include <bsd.own.mk>
PROG= crontab
SRCS= crontab.c misc.c entry.c env.c
CPPFLAGS+=-I${.CURDIR} -I${NETBSDSRCDIR}/usr.sbin/cron -DDEBUGGING=1
CPPFLAGS+=-DUSE_UTIMES
BINOWN =root
BINMODE=4555
MAN= crontab.1 crontab.5
.PATH: ${NETBSDSRCDIR}/usr.sbin/cron
.include <bsd.prog.mk>
|