1993-06-20 13:41:45 +00:00
|
|
|
# @(#)Makefile 5.11 (Berkeley) 5/21/91
|
|
|
|
|
1993-07-19 18:54:09 +00:00
|
|
|
LOCALTIME= US/Pacific
|
|
|
|
TZDIR=/usr/share/zoneinfo
|
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
NOOBJ= oobj
|
|
|
|
|
|
|
|
# disktab may be wrong -- hcx9 is a tahoe, but gets its own.
|
|
|
|
# -rw-r--r--
|
1993-07-19 18:54:09 +00:00
|
|
|
BINOWN= root
|
|
|
|
BINGRP= wheel
|
|
|
|
BIN1= aliases csh.cshrc csh.login csh.logout dm.conf \
|
1993-06-20 13:41:45 +00:00
|
|
|
ftpusers gettytab group hosts hosts.equiv hosts.lpd inetd.conf \
|
1993-07-19 18:54:09 +00:00
|
|
|
man.conf motd myname netstart phones \
|
|
|
|
printcap protocols rc rc.local remote security services shells \
|
|
|
|
syslog.conf ttys etc.${MACHINE}/disktab rpc
|
1993-06-20 13:41:45 +00:00
|
|
|
|
|
|
|
# -rw-rw-rw-
|
|
|
|
BIN2= motd
|
|
|
|
|
1993-07-19 18:54:09 +00:00
|
|
|
# -rwxr-xr-x root.wheel, for the new f***ing cron root.wheel
|
|
|
|
BIN3= daily weekly monthly
|
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
MTREE= BSD.root.dist BSD.usr.dist BSD.var.dist
|
|
|
|
NAMEDB= localhost.rev named.boot root.cache
|
|
|
|
PCS= pcs750.bin
|
|
|
|
WCS1= wcs fppwcs poc poc1 poc2 fppoc
|
|
|
|
WCS2= fpevent fppwcs fppwcs_dual hdcwcs load_diags start_fpp wcs wcs_dual
|
|
|
|
|
|
|
|
all clean cleandir depend etc install lint:
|
|
|
|
|
1993-07-19 18:54:09 +00:00
|
|
|
distribution: distrib-dirs
|
1993-06-20 13:41:45 +00:00
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
|
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 666 ${BIN2} ${DESTDIR}/etc
|
1993-07-19 18:54:09 +00:00
|
|
|
install -c -o root -g wheel -m 755 ${BIN3} ${DESTDIR}/etc
|
|
|
|
install -c -o root -g wheel -m 600 crontab ${DESTDIR}/var/cron/tabs/root
|
1993-06-20 13:41:45 +00:00
|
|
|
install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
|
1993-07-20 01:23:28 +00:00
|
|
|
#
|
|
|
|
# This is broken, it always does /etc. It IGNORES the $DESTDIR for
|
|
|
|
# where to write the spwd.db pwd.db files.
|
|
|
|
#(cd ${DESTDIR}/etc; pwd_mkdb -p master.passwd)
|
|
|
|
#
|
|
|
|
# Work around for above problem.
|
|
|
|
install -c -o root -g wheel -m 644 pwd.db ${DESTDIR}/etc
|
|
|
|
install -c -o root -g wheel -m 600 spwd.db ${DESTDIR}/etc
|
1993-06-20 13:41:45 +00:00
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
|
|
|
|
MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
|
1993-07-19 18:54:09 +00:00
|
|
|
(cd ${DESTDIR}/dev; sh MAKEDEV all)
|
1993-06-20 13:41:45 +00:00
|
|
|
(cd root; \
|
|
|
|
install -c -o root -g wheel -m 644 dot.cshrc \
|
|
|
|
${DESTDIR}/root/.cshrc; \
|
|
|
|
install -c -o root -g wheel -m 644 dot.klogin \
|
|
|
|
${DESTDIR}/root/.klogin; \
|
|
|
|
install -c -o root -g wheel -m 644 dot.login \
|
|
|
|
${DESTDIR}/root/.login; \
|
|
|
|
install -c -o root -g wheel -m 644 dot.profile \
|
|
|
|
${DESTDIR}/root/.profile; \
|
|
|
|
rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
|
|
|
|
ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
|
|
|
|
ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
|
|
|
|
cd mtree; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${MTREE} \
|
|
|
|
${DESTDIR}/etc/mtree
|
|
|
|
cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \
|
|
|
|
${DESTDIR}/etc/namedb
|
1993-07-19 18:54:09 +00:00
|
|
|
/bin/rm -f ${DESTDIR}/etc/localtime
|
|
|
|
ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
|
1993-06-20 13:41:45 +00:00
|
|
|
install -c -o ${BINOWN} -g operator -m 664 /dev/null \
|
|
|
|
${DESTDIR}/etc/dumpdates
|
1993-07-19 18:54:09 +00:00
|
|
|
install -c -o nobody -g ${BINGRP} -m 664 /dev/null \
|
|
|
|
${DESTDIR}/var/db/locate.database
|
1993-06-20 13:41:45 +00:00
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
|
1993-07-19 18:54:09 +00:00
|
|
|
${DESTDIR}/var/log/lpd-errs
|
1993-06-20 13:41:45 +00:00
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
|
|
|
|
${DESTDIR}/var/log/maillog
|
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
|
1993-07-19 18:54:09 +00:00
|
|
|
${DESTDIR}/var/log/messages
|
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
|
|
|
|
${DESTDIR}/var/log/wtmp
|
1993-06-20 13:41:45 +00:00
|
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
|
|
|
|
${DESTDIR}/var/run/utmp
|
|
|
|
(cd etc.${MACHINE}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
1993-07-19 18:54:09 +00:00
|
|
|
fstab.* ${DESTDIR}/etc)
|
1993-06-20 13:41:45 +00:00
|
|
|
.if ${MACHINE} == "tahoe"
|
|
|
|
(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS1} \
|
|
|
|
${DESTDIR}/)
|
|
|
|
.endif
|
|
|
|
.if ${MACHINE} == "vax"
|
|
|
|
(cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \
|
|
|
|
${DESTDIR}/)
|
|
|
|
.endif
|
1993-07-20 16:04:11 +00:00
|
|
|
.if ${MACHINE} == "i386"
|
1993-07-26 22:46:16 +00:00
|
|
|
(cd ../sys/i386/boot; make depend all install; \
|
1993-07-20 16:04:11 +00:00
|
|
|
cd /usr/mdec; find . | cpio -pdalmuv ${DESTDIR}/usr/mdec)
|
|
|
|
(cd ..; make install)
|
|
|
|
(cd ../include; make copies)
|
1993-07-20 18:20:56 +00:00
|
|
|
(cd ../usr.sbin/sendmail/src; make install)
|
1993-07-20 16:04:11 +00:00
|
|
|
.endif
|
1993-06-20 13:41:45 +00:00
|
|
|
|
|
|
|
hcx9-distribution:
|
|
|
|
(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \
|
|
|
|
${DESTDIR}/)
|
|
|
|
|
1993-07-19 18:54:09 +00:00
|
|
|
distrib-dirs:
|
|
|
|
mtree -du -f mtree/BSD.root.dist -p ${DESTDIR}
|
|
|
|
mtree -u -f mtree/BSD.var.dist -p ${DESTDIR}/var
|
|
|
|
mtree -u -f mtree/BSD.usr.dist -p ${DESTDIR}/usr
|
|
|
|
(cd ${DESTDIR}; rm -f ${DESTDIR}/sys; \
|
1993-07-26 22:46:16 +00:00
|
|
|
ln -s usr/src/sys sys )
|
1993-07-19 18:54:09 +00:00
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
.include <bsd.prog.mk>
|