Module Name:    src
Committed By:   christos
Date:           Thu May  6 18:58:45 UTC 2010

Added Files:
        src/external/bsd/cron: Makefile
        src/external/bsd/cron/bin: Makefile Makefile.inc
        src/external/bsd/cron/bin/cron: Makefile
        src/external/bsd/cron/bin/crontab: Makefile

Log Message:
Add build glue.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/bsd/cron/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/cron/bin/Makefile \
    src/external/bsd/cron/bin/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/external/bsd/cron/bin/cron/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/cron/bin/crontab/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: src/external/bsd/cron/Makefile
diff -u /dev/null src/external/bsd/cron/Makefile:1.1
--- /dev/null	Thu May  6 14:58:45 2010
+++ src/external/bsd/cron/Makefile	Thu May  6 14:58:45 2010
@@ -0,0 +1,5 @@
+#	$NetBSD: Makefile,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+SUBDIR=	bin
+
+.include <bsd.subdir.mk>

Index: src/external/bsd/cron/bin/Makefile
diff -u /dev/null src/external/bsd/cron/bin/Makefile:1.1
--- /dev/null	Thu May  6 14:58:45 2010
+++ src/external/bsd/cron/bin/Makefile	Thu May  6 14:58:45 2010
@@ -0,0 +1,5 @@
+#	$NetBSD: Makefile,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+SUBDIR= cron crontab
+
+.include <bsd.subdir.mk>
Index: src/external/bsd/cron/bin/Makefile.inc
diff -u /dev/null src/external/bsd/cron/bin/Makefile.inc:1.1
--- /dev/null	Thu May  6 14:58:45 2010
+++ src/external/bsd/cron/bin/Makefile.inc	Thu May  6 14:58:45 2010
@@ -0,0 +1,4 @@
+#	$NetBSD: Makefile.inc,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+.PATH: ${.PARSEDIR}/../dist
+WARNS?=		4

Index: src/external/bsd/cron/bin/cron/Makefile
diff -u /dev/null src/external/bsd/cron/bin/cron/Makefile:1.1
--- /dev/null	Thu May  6 14:58:45 2010
+++ src/external/bsd/cron/bin/cron/Makefile	Thu May  6 14:58:45 2010
@@ -0,0 +1,11 @@
+#	$NetBSD: Makefile,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+BINDIR=	/usr/sbin
+PROG=	cron
+SRCS=	cron.c database.c do_command.c entry.c env.c job.c \
+	misc.c popen.c pw_dup.c user.c
+CPPFLAGS+=-I${.CURDIR} -DLOGIN_CAP
+LDADD+=-lutil
+MAN=	cron.8
+
+.include <bsd.prog.mk>

Index: src/external/bsd/cron/bin/crontab/Makefile
diff -u /dev/null src/external/bsd/cron/bin/crontab/Makefile:1.1
--- /dev/null	Thu May  6 14:58:45 2010
+++ src/external/bsd/cron/bin/crontab/Makefile	Thu May  6 14:58:45 2010
@@ -0,0 +1,13 @@
+#	$NetBSD: Makefile,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+.include <bsd.own.mk>
+
+USE_FORT?= yes	# setuid
+PROG=	crontab
+SRCS=	crontab.c misc.c entry.c env.c pw_dup.c
+CPPFLAGS+=-I${.CURDIR} -DDEBUGGING=1
+BINOWN =root
+BINMODE=4555
+MAN=	crontab.1 crontab.5
+
+.include <bsd.prog.mk>

Reply via email to