21 lines
472 B
Makefile
21 lines
472 B
Makefile
# $NetBSD: Makefile,v 1.26 2008/08/29 00:02:24 gmcgarry Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # setuid
|
|
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>
|
|
|
|
.if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
|
|
COPTS.misc.c+= -Wno-pointer-sign
|
|
.endif
|