Makefile revision 1.2
11.1Scgd#	@(#)Makefile	5.11 (Berkeley) 5/21/91
21.1Scgd
31.1ScgdNOOBJ=	oobj
41.1Scgd
51.1Scgd# disktab may be wrong -- hcx9 is a tahoe, but gets its own.
61.1Scgd# -rw-r--r--
71.1ScgdBIN1=	aliases csh.cshrc csh.login csh.logout crontab daily dm.conf \
81.1Scgd	ftpusers gettytab group hosts hosts.equiv hosts.lpd inetd.conf \
91.1Scgd	man.conf monthly motd netstart phones printcap protocols rc \
101.1Scgd	rc.local remote security services shells syslog.conf ttys weekly \
111.1Scgd	etc.${MACHINE}/disktab
121.1Scgd
131.1Scgd# -rw-rw-rw-
141.1ScgdBIN2=	motd
151.1Scgd
161.1ScgdMTREE=	BSD.root.dist BSD.usr.dist BSD.var.dist
171.1ScgdNAMEDB=	localhost.rev named.boot root.cache
181.1ScgdPCS=	pcs750.bin
191.1ScgdWCS1=	wcs fppwcs poc poc1 poc2 fppoc
201.1ScgdWCS2=	fpevent fppwcs fppwcs_dual hdcwcs load_diags start_fpp wcs wcs_dual
211.1Scgd
221.1Scgdall clean cleandir depend etc install lint:
231.1Scgd
241.1Scgddistribution:
251.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
261.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 666 ${BIN2} ${DESTDIR}/etc
271.1Scgd	install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
281.2Scgd	(cd ${DESTDIR}/etc; pwd_mkdb -p master.passwd)
291.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
301.1Scgd	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
311.1Scgd	(cd root; \
321.1Scgd		install -c -o root -g wheel -m 644 dot.cshrc \
331.1Scgd		    ${DESTDIR}/root/.cshrc; \
341.1Scgd		install -c -o root -g wheel -m 644 dot.klogin \
351.1Scgd		    ${DESTDIR}/root/.klogin; \
361.1Scgd		install -c -o root -g wheel -m 644 dot.login \
371.1Scgd		    ${DESTDIR}/root/.login; \
381.1Scgd		install -c -o root -g wheel -m 644 dot.profile \
391.1Scgd		    ${DESTDIR}/root/.profile; \
401.1Scgd		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
411.1Scgd		ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
421.1Scgd		ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
431.1Scgd	cd mtree; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${MTREE} \
441.1Scgd	    ${DESTDIR}/etc/mtree
451.1Scgd	cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \
461.1Scgd	    ${DESTDIR}/etc/namedb
471.1Scgd	install -c -o ${BINOWN} -g operator -m 664 /dev/null \
481.1Scgd	    ${DESTDIR}/etc/dumpdates
491.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
501.1Scgd	    ${DESTDIR}/var/log/messages
511.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
521.1Scgd	    ${DESTDIR}/var/log/maillog
531.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
541.1Scgd	    ${DESTDIR}/var/log/lpd-errs
551.1Scgd	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
561.1Scgd	    ${DESTDIR}/var/run/utmp
571.1Scgd	(cd etc.${MACHINE}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
581.1Scgd	    fstab.* ${DESTDIR}/)
591.1Scgd.if ${MACHINE} == "tahoe"
601.1Scgd	(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS1} \
611.1Scgd	    ${DESTDIR}/)
621.1Scgd.endif
631.1Scgd.if ${MACHINE} == "vax"
641.1Scgd	(cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \
651.1Scgd	    ${DESTDIR}/)
661.1Scgd.endif
671.1Scgd
681.1Scgdhcx9-distribution:
691.1Scgd	(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \
701.1Scgd	    ${DESTDIR}/)
711.1Scgd
721.1Scgd.include <bsd.prog.mk>
73