blob: d050562d2c5a8eebbd054a55f4e39b217b30bb20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $Id: Makefile,v 1.1 1995/10/18 08:45:03 deraadt 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=4555
MAN= crontab.1 crontab.5
.PATH: ${.CURDIR}/../../usr.sbin/cron
.include <bsd.prog.mk>
|