Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/cron Add build glue.



details:   https://anonhg.NetBSD.org/src/rev/a99e768faa5b
branches:  trunk
changeset: 754630:a99e768faa5b
user:      christos <christos%NetBSD.org@localhost>
date:      Thu May 06 18:58:45 2010 +0000

description:
Add build glue.

diffstat:

 external/bsd/cron/Makefile             |   5 +++++
 external/bsd/cron/bin/Makefile         |   5 +++++
 external/bsd/cron/bin/Makefile.inc     |   4 ++++
 external/bsd/cron/bin/cron/Makefile    |  11 +++++++++++
 external/bsd/cron/bin/crontab/Makefile |  13 +++++++++++++
 5 files changed, 38 insertions(+), 0 deletions(-)

diffs (58 lines):

diff -r 9888cc012f22 -r a99e768faa5b external/bsd/cron/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/cron/Makefile        Thu May 06 18:58:45 2010 +0000
@@ -0,0 +1,5 @@
+#      $NetBSD: Makefile,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+SUBDIR=        bin
+
+.include <bsd.subdir.mk>
diff -r 9888cc012f22 -r a99e768faa5b external/bsd/cron/bin/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/cron/bin/Makefile    Thu May 06 18:58:45 2010 +0000
@@ -0,0 +1,5 @@
+#      $NetBSD: Makefile,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+SUBDIR= cron crontab
+
+.include <bsd.subdir.mk>
diff -r 9888cc012f22 -r a99e768faa5b external/bsd/cron/bin/Makefile.inc
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/cron/bin/Makefile.inc        Thu May 06 18:58:45 2010 +0000
@@ -0,0 +1,4 @@
+#      $NetBSD: Makefile.inc,v 1.1 2010/05/06 18:58:45 christos Exp $
+
+.PATH: ${.PARSEDIR}/../dist
+WARNS?=                4
diff -r 9888cc012f22 -r a99e768faa5b external/bsd/cron/bin/cron/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/cron/bin/cron/Makefile       Thu May 06 18:58:45 2010 +0000
@@ -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>
diff -r 9888cc012f22 -r a99e768faa5b external/bsd/cron/bin/crontab/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/cron/bin/crontab/Makefile    Thu May 06 18:58:45 2010 +0000
@@ -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>



Home | Main Index | Thread Index | Old Index