Makefile revision 1.67
11.67Sperry#	$NetBSD: Makefile,v 1.67 1997/03/13 04:32:11 perry Exp $
21.66Smikel#	from: @(#)Makefile	8.7 (Berkeley) 5/25/95
31.1Scgd
41.23ScgdTZDIR=		/usr/share/zoneinfo
51.19SderaadtLOCALTIME=	US/Pacific
61.19Sderaadt
71.55Sperry# setting NOOBJ prevents "make obj" from doing anything;
81.55Sperry# an objdir would break the installation stuff below
91.1ScgdNOOBJ=	oobj
101.1Scgd
111.32Sjtc.if exists(etc.${MACHINE}/Makefile.inc)
121.34Scgd.include "etc.${MACHINE}/Makefile.inc"
131.32Sjtc.endif
141.32Sjtc
151.21Scgd# -rw-r--r--
161.21ScgdBINOWN= root
171.21ScgdBINGRP= wheel
181.45ScgdBIN1=	aliases bootptab changelist csh.cshrc csh.login csh.logout daily \
191.65Smikel	daily.conf dm.conf floppytab ftpchroot ftpusers ftpwelcome \
201.65Smikel	gettytab group hosts hosts.equiv hosts.lpd inetd.conf lkm.conf \
211.65Smikel	man.conf monthly monthly.conf mrouted.conf myname netstart networks \
221.60Smrg	newsyslog.conf phones printcap protocols rbootd.conf rc rc.conf \
231.61Sthorpej	rc.lkm rc.local remote rpc security security.conf services shells \
241.60Smrg	syslog.conf weekly weekly.conf etc.${MACHINE}/ttys \
251.60Smrg	etc.${MACHINE}/disktab
261.1Scgd
271.46Sderaadt# -rw-rw-r--
281.1ScgdBIN2=	motd
291.1Scgd
301.1ScgdNAMEDB=	localhost.rev named.boot root.cache
311.1ScgdPCS=	pcs750.bin
321.1Scgd
331.53Scgdall clean cleandir depend etc includes install lint:
341.1Scgd
351.34Scgd.ifndef DESTDIR
361.41Scgddistribution distrib-dirs snapshot:
371.36Scgd	@echo setenv DESTDIR before doing that!
381.34Scgd	@false
391.34Scgd.else
401.7Scgddistribution: distrib-dirs
411.53Scgd	(cd ..; ${MAKE} includes)
421.32Sjtc	(cd ..; ${MAKE} install)
431.56Sthorpej	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
441.56Sthorpej	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} ${DESTDIR}/etc
451.56Sthorpej	${INSTALL} -c -o root -g wheel -m 600 crontab \
461.56Sthorpej	    ${DESTDIR}/var/cron/tabs/root
471.56Sthorpej	${INSTALL} -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
481.32Sjtc	chroot ${DESTDIR}/ pwd_mkdb -p /etc/master.passwd
491.56Sthorpej	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
501.1Scgd	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
511.1Scgd	(cd root; \
521.56Sthorpej		${INSTALL} -c -o root -g wheel -m 644 dot.cshrc \
531.1Scgd		    ${DESTDIR}/root/.cshrc; \
541.65Smikel		${INSTALL} -c -o root -g wheel -m 600 dot.klogin \
551.1Scgd		    ${DESTDIR}/root/.klogin; \
561.56Sthorpej		${INSTALL} -c -o root -g wheel -m 644 dot.login \
571.1Scgd		    ${DESTDIR}/root/.login; \
581.56Sthorpej		${INSTALL} -c -o root -g wheel -m 644 dot.profile \
591.1Scgd		    ${DESTDIR}/root/.profile; \
601.1Scgd		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
611.1Scgd		ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
621.1Scgd		ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
631.47Scgd	(cd mtree; \
641.56Sthorpej		${INSTALL} -c -o root -g wheel -m 600 special \
651.47Scgd		    ${DESTDIR}/etc/mtree; \
661.67Sperry		${INSTALL} -c -o root -g wheel -m 444 NetBSD.dist \
671.47Scgd		    ${DESTDIR}/etc/mtree)
681.63Smikel	(cd namedb; \
691.63Smikel		${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \
701.64Spk		    ${DESTDIR}/etc/namedb)
711.19Sderaadt	/bin/rm -f ${DESTDIR}/etc/localtime
721.19Sderaadt	ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
731.48Sderaadt	/bin/rm -f ${DESTDIR}/etc/rmt
741.48Sderaadt	ln -s /usr/sbin/rmt ${DESTDIR}/etc/rmt
751.56Sthorpej	${INSTALL} -c -o ${BINOWN} -g operator -m 664 /dev/null \
761.32Sjtc		${DESTDIR}/etc/dumpdates
771.56Sthorpej	${INSTALL} -c -o ${BINOWN} -g operator -m 644 /dev/null \
781.44Sderaadt		${DESTDIR}/etc/skeykeys
791.56Sthorpej	${INSTALL} -c -o root -g wheel -m 600 /dev/null \
801.38Scgd		${DESTDIR}/var/cron/log
811.56Sthorpej	${INSTALL} -c -o nobody -g ${BINGRP} -m 664 /dev/null \
821.32Sjtc		${DESTDIR}/var/db/locate.database
831.56Sthorpej	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
841.32Sjtc		${DESTDIR}/var/log/lastlog
851.58Slukem	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
861.32Sjtc		${DESTDIR}/var/log/lpd-errs
871.58Slukem	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
881.32Sjtc		${DESTDIR}/var/log/maillog
891.58Slukem	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
901.32Sjtc		${DESTDIR}/var/log/messages
911.58Slukem	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
921.58Slukem		${DESTDIR}/var/log/secure
931.58Slukem	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
941.32Sjtc		${DESTDIR}/var/log/wtmp
951.56Sthorpej	${INSTALL} -c -o daemon -g staff -m 664 /dev/null \
961.39Scgd		${DESTDIR}/var/msgs/bounds
971.56Sthorpej	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
981.32Sjtc		${DESTDIR}/var/run/utmp
991.56Sthorpej	(cd etc.${MACHINE}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
1001.6Scgd	    fstab.* ${DESTDIR}/etc)
1011.49Stls	(cd ${DESTDIR}/dev; ./MAKEDEV all)
1021.62Sperry	(cd ../usr.bin/mail; ${MAKE} distribution)
1031.35Scgd	(cd ../usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
1041.1Scgd
1051.1Scgd
1061.7Scgddistrib-dirs:
1071.56Sthorpej	${INSTALL} -d -o root -g wheel -m 755 ${DESTDIR}
1081.67Sperry	-mtree -def mtree/NetBSD.dist -p ${DESTDIR}/ -u
1091.28Sjtc	cd ${DESTDIR}; rm -f sys; ln -s usr/src/sys sys
1101.41Scgd
1111.41Scgdsnapshot: distribution snap_pre snap_tar snap_md
1121.41Scgd	cd ${DESTDIR}/snapshot && cksum * > CKSUMS
1131.41Scgd
1141.41Scgdsnap_pre:
1151.41Scgd	/bin/rm -rf ${DESTDIR}/snapshot
1161.56Sthorpej	${INSTALL} -d -o root -g wheel -m 755 ${DESTDIR}/snapshot
1171.41Scgd
1181.41Scgdsnap_tar:
1191.41Scgd	cd ${DESTDIR} && tar cf - bin | gzip -9 > snapshot/bin.tar.gz
1201.41Scgd	cd ${DESTDIR} && tar cf - dev | gzip -9 > snapshot/dev.tar.gz
1211.41Scgd	cd ${DESTDIR} && tar cf - .profile .cshrc etc mnt root sys tmp | \
1221.41Scgd	    gzip -9 > snapshot/etc.tar.gz
1231.41Scgd	cd ${DESTDIR} && tar cf - sbin | gzip -9 > snapshot/sbin.tar.gz
1241.41Scgd	cd ${DESTDIR} && tar cf - usr/bin | gzip -9 > snapshot/usr.bin.tar.gz
1251.41Scgd	cd ${DESTDIR} && tar cf - usr/games | gzip -9 > \
1261.41Scgd	    snapshot/usr.games.tar.gz
1271.41Scgd	cd ${DESTDIR} && tar cf - usr/include | gzip -9 > \
1281.41Scgd	    snapshot/usr.include.tar.gz
1291.41Scgd	cd ${DESTDIR} && tar cf - usr/lib | gzip -9 > snapshot/usr.lib.tar.gz
1301.41Scgd	cd ${DESTDIR} && tar cf - usr/libexec | gzip -9 > \
1311.41Scgd	    snapshot/usr.libexec.tar.gz
1321.51Spk	cd ${DESTDIR} && tar cf - usr/mdec usr/libdata usr/local usr/src \
1331.51Spk	    usr/obj | gzip -9 > snapshot/usr.misc.tar.gz
1341.41Scgd	cd ${DESTDIR} && tar cf - usr/sbin | gzip -9 > snapshot/usr.sbin.tar.gz
1351.41Scgd	cd ${DESTDIR} && tar cf - usr/share | gzip -9 > \
1361.41Scgd	    snapshot/usr.share.tar.gz
1371.41Scgd	cd ${DESTDIR} && tar cf - var | gzip -9 > snapshot/var.tar.gz
1381.41Scgd
1391.41Scgdsnap_md:
1401.41Scgd# nothing here -- look in the machine-dependent Makefile.inc
1411.41Scgd
1421.34Scgd.endif	# DESTDIR check
1431.7Scgd
1441.1Scgd.include <bsd.prog.mk>
145