Activate make distribute and pray I didn't break release building.

This commit is contained in:
Paul Traina 1997-08-12 18:23:29 +00:00
parent 66fab4cf01
commit f6b272984d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=28120
7 changed files with 61 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
# $Id: Makefile,v 1.153 1997/07/18 03:49:47 asami Exp $
# $Id: Makefile,v 1.154 1997/08/02 00:22:44 davidn Exp $
# -rw-r--r--
BINOWN= root
@ -56,6 +56,7 @@ distribution:
${DESTDIR}/var/cron/log; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 \
master.passwd ${DESTDIR}/etc; \
( cd ${.CURDIR}/cron.d; ${MAKE} install );\
( cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall );\
( cd ${.CURDIR}/../gnu/libexec/uucp/sample; ${MAKE} install ); \
( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \

5
etc/cron.d/Makefile Normal file
View File

@ -0,0 +1,5 @@
# $Id$
SUBDIR= daily weekly monthly
.include <bsd.subdir.mk>

12
etc/cron.d/Makefile.inc Normal file
View File

@ -0,0 +1,12 @@
# $Id$
BINDIR= /etc/cron.d/${.CURDIR:T}
BINOWN= root
BINGRP= wheel
all depend etc lint:
install:
cd ${.CURDIR}; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN} \
${DESTDIR}/${BINDIR}

24
etc/cron.d/daily/Makefile Normal file
View File

@ -0,0 +1,24 @@
# $Id$
BIN= 100.clean-disks \
110.clean-tmps \
120.clean-preserve \
130.clean-msgs \
140.clean-rwho \
200.backup-passwd \
210.backup-aliases \
220.backup-distfile \
300.calendar \
310.accounting \
320.rdist \
330.news \
340.uucp \
400.status-disks \
410.status-uucp \
420.status-network \
430.status-rwho \
440.status-mailq \
450.status-security \
999.local
.include <bsd.prog.mk>

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id$
# $Id: 999.monthly.local,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
#
if [ -f /etc/monthly.local ]; then
echo ""

View File

@ -0,0 +1,6 @@
# $Id$
BIN= 200.accounting \
999.local
.include <bsd.prog.mk>

View File

@ -0,0 +1,11 @@
# $Id$
BIN= 100.clean-src \
120.clean-kvmdb
300.uucp \
310.locate \
320.whatis \
330.catman \
999.local
.include <bsd.prog.mk>