Makefile revision 1.49
11.24Smycroft#	from: @(#)Makefile	5.11 (Berkeley) 5/21/91
21.49Stls#	$Id: Makefile,v 1.49 1995/10/08 04:09:06 tls Exp $
31.1Scgd
41.23ScgdTZDIR=		/usr/share/zoneinfo
51.19SderaadtLOCALTIME=	US/Pacific
61.19Sderaadt
71.1ScgdNOOBJ=	oobj
81.1Scgd
91.32Sjtc.if exists(etc.${MACHINE}/Makefile.inc)
101.34Scgd.include "etc.${MACHINE}/Makefile.inc"
111.32Sjtc.endif
121.32Sjtc
131.1Scgd# disktab may be wrong -- hcx9 is a tahoe, but gets its own.
141.21Scgd# -rw-r--r--
151.21ScgdBINOWN= root
161.21ScgdBINGRP= wheel
171.45ScgdBIN1=	aliases bootptab changelist csh.cshrc csh.login csh.logout daily \
181.45Scgd	dm.conf ftpusers ftpchroot gettytab group hosts hosts.equiv hosts.lpd \
191.42Scgd	inetd.conf man.conf monthly motd myname netstart newsyslog.conf \
201.42Scgd	phones printcap protocols rc rc.local remote rpc security services \
211.42Scgd	shells syslog.conf weekly etc.${MACHINE}/ttys etc.${MACHINE}/disktab
221.1Scgd
231.46Sderaadt# -rw-rw-r--
241.1ScgdBIN2=	motd
251.1Scgd
261.1ScgdNAMEDB=	localhost.rev named.boot root.cache
271.1ScgdPCS=	pcs750.bin
281.1ScgdWCS1=	wcs fppwcs poc poc1 poc2 fppoc
291.1ScgdWCS2=	fpevent fppwcs fppwcs_dual hdcwcs load_diags start_fpp wcs wcs_dual
301.1Scgd
311.1Scgdall clean cleandir depend etc install lint:
321.1Scgd
331.34Scgd.ifndef DESTDIR
341.41Scgddistribution distrib-dirs snapshot:
351.36Scgd	@echo setenv DESTDIR before doing that!
361.34Scgd	@false
371.34Scgd.else
381.7Scgddistribution: distrib-dirs
391.32Sjtc	(cd ..; ${MAKE} install)
401.21Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
411.46Sderaadt	install -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} ${DESTDIR}/etc
421.3Sglass	install -c -o root -g wheel -m 600 crontab ${DESTDIR}/var/cron/tabs/root
431.1Scgd	install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
441.32Sjtc	chroot ${DESTDIR}/ pwd_mkdb -p /etc/master.passwd
451.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
461.1Scgd	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
471.1Scgd	(cd root; \
481.1Scgd		install -c -o root -g wheel -m 644 dot.cshrc \
491.1Scgd		    ${DESTDIR}/root/.cshrc; \
501.1Scgd		install -c -o root -g wheel -m 644 dot.klogin \
511.1Scgd		    ${DESTDIR}/root/.klogin; \
521.1Scgd		install -c -o root -g wheel -m 644 dot.login \
531.1Scgd		    ${DESTDIR}/root/.login; \
541.1Scgd		install -c -o root -g wheel -m 644 dot.profile \
551.1Scgd		    ${DESTDIR}/root/.profile; \
561.1Scgd		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
571.1Scgd		ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
581.1Scgd		ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
591.47Scgd	(cd mtree; \
601.47Scgd		install -c -o root -g wheel -m 600 special \
611.47Scgd		    ${DESTDIR}/etc/mtree; \
621.47Scgd		install -c -o root -g wheel -m 444 4.4BSD.dist \
631.47Scgd		    ${DESTDIR}/etc/mtree)
641.1Scgd	cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \
651.1Scgd	    ${DESTDIR}/etc/namedb
661.19Sderaadt	/bin/rm -f ${DESTDIR}/etc/localtime
671.19Sderaadt	ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
681.48Sderaadt	/bin/rm -f ${DESTDIR}/etc/rmt
691.48Sderaadt	ln -s /usr/sbin/rmt ${DESTDIR}/etc/rmt
701.1Scgd	install -c -o ${BINOWN} -g operator -m 664 /dev/null \
711.32Sjtc		${DESTDIR}/etc/dumpdates
721.44Sderaadt	install -c -o ${BINOWN} -g operator -m 644 /dev/null \
731.44Sderaadt		${DESTDIR}/etc/skeykeys
741.38Scgd	install -c -o root -g wheel -m 600 /dev/null \
751.38Scgd		${DESTDIR}/var/cron/log
761.16Scgd	install -c -o nobody -g ${BINGRP} -m 664 /dev/null \
771.32Sjtc		${DESTDIR}/var/db/locate.database
781.32Sjtc	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
791.32Sjtc		${DESTDIR}/var/log/lastlog
801.32Sjtc	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
811.32Sjtc		${DESTDIR}/var/log/lpd-errs
821.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
831.32Sjtc		${DESTDIR}/var/log/maillog
841.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
851.32Sjtc		${DESTDIR}/var/log/messages
861.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
871.32Sjtc		${DESTDIR}/var/log/wtmp
881.39Scgd	install -c -o daemon -g staff -m 664 /dev/null \
891.39Scgd		${DESTDIR}/var/msgs/bounds
901.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
911.32Sjtc		${DESTDIR}/var/run/utmp
921.1Scgd	(cd etc.${MACHINE}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
931.6Scgd	    fstab.* ${DESTDIR}/etc)
941.49Stls	(cd ${DESTDIR}/dev; ./MAKEDEV all)
951.1Scgd.if ${MACHINE} == "tahoe"
961.1Scgd	(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS1} \
971.1Scgd	    ${DESTDIR}/)
981.1Scgd.endif
991.1Scgd.if ${MACHINE} == "vax"
1001.1Scgd	(cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \
1011.1Scgd	    ${DESTDIR}/)
1021.1Scgd.endif
1031.35Scgd	(cd ../usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
1041.1Scgd
1051.1Scgdhcx9-distribution:
1061.1Scgd	(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \
1071.1Scgd	    ${DESTDIR}/)
1081.1Scgd
1091.7Scgddistrib-dirs:
1101.37Scgd	install -d -o root -g wheel -m 755 ${DESTDIR}
1111.47Scgd	-mtree -def mtree/4.4BSD.dist -p ${DESTDIR}/ -u
1121.28Sjtc	cd ${DESTDIR}; rm -f sys; ln -s usr/src/sys sys
1131.41Scgd
1141.41Scgdsnapshot: distribution snap_pre snap_tar snap_md
1151.41Scgd	cd ${DESTDIR}/snapshot && cksum * > CKSUMS
1161.41Scgd
1171.41Scgdsnap_pre:
1181.41Scgd	/bin/rm -rf ${DESTDIR}/snapshot
1191.41Scgd	install -d -o root -g wheel -m 755 ${DESTDIR}/snapshot
1201.41Scgd
1211.41Scgdsnap_tar:
1221.41Scgd	cd ${DESTDIR} && tar cf - bin | gzip -9 > snapshot/bin.tar.gz
1231.41Scgd	cd ${DESTDIR} && tar cf - dev | gzip -9 > snapshot/dev.tar.gz
1241.41Scgd	cd ${DESTDIR} && tar cf - .profile .cshrc etc mnt root sys tmp | \
1251.41Scgd	    gzip -9 > snapshot/etc.tar.gz
1261.41Scgd	cd ${DESTDIR} && tar cf - sbin | gzip -9 > snapshot/sbin.tar.gz
1271.41Scgd	cd ${DESTDIR} && tar cf - usr/bin | gzip -9 > snapshot/usr.bin.tar.gz
1281.41Scgd	cd ${DESTDIR} && tar cf - usr/games | gzip -9 > \
1291.41Scgd	    snapshot/usr.games.tar.gz
1301.41Scgd	cd ${DESTDIR} && tar cf - usr/include | gzip -9 > \
1311.41Scgd	    snapshot/usr.include.tar.gz
1321.41Scgd	cd ${DESTDIR} && tar cf - usr/lib | gzip -9 > snapshot/usr.lib.tar.gz
1331.41Scgd	cd ${DESTDIR} && tar cf - usr/libexec | gzip -9 > \
1341.41Scgd	    snapshot/usr.libexec.tar.gz
1351.41Scgd	cd ${DESTDIR} && tar cf - usr/mdec usr/local usr/src usr/obj | \
1361.41Scgd	    gzip -9 > snapshot/usr.misc.tar.gz
1371.41Scgd	cd ${DESTDIR} && tar cf - usr/sbin | gzip -9 > snapshot/usr.sbin.tar.gz
1381.41Scgd	cd ${DESTDIR} && tar cf - usr/share | gzip -9 > \
1391.41Scgd	    snapshot/usr.share.tar.gz
1401.41Scgd	cd ${DESTDIR} && tar cf - var | gzip -9 > snapshot/var.tar.gz
1411.41Scgd
1421.41Scgdsnap_md:
1431.41Scgd# nothing here -- look in the machine-dependent Makefile.inc
1441.41Scgd
1451.34Scgd.endif	# DESTDIR check
1461.7Scgd
1471.1Scgd.include <bsd.prog.mk>
148