NetBSD/usr.sbin/cron/Makefile

15 lines
320 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.15 2011/06/20 07:44:01 mrg Exp $
1994-01-05 23:40:12 +03:00
1994-01-05 23:57:27 +03:00
PROG= cron
1997-03-13 09:19:07 +03:00
SRCS= cron.c database.c do_command.c entry.c env.c job.c \
misc.c popen.c user.c
CPPFLAGS+=-I${.CURDIR} -DLOGIN_CAP
LDADD+=-lutil
1994-12-22 14:32:57 +03:00
MAN= cron.8
1994-01-05 23:40:12 +03:00
1994-01-05 23:57:27 +03:00
.include <bsd.prog.mk>
.if defined(HAVE_GCC) || defined(HAVE_PCC)
COPTS.misc.c+= -Wno-pointer-sign
.endif