Makefile revision 1.6
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.3SglassBIN1= aliases csh.cshrc csh.login csh.logout daily dm.conf \ 81.1Scgd ftpusers gettytab group hosts hosts.equiv hosts.lpd inetd.conf \ 91.4Scgd man.conf monthly motd myname netstart phones printcap protocols rc \ 101.1Scgd rc.local remote security services shells syslog.conf ttys weekly \ 111.5Sglass etc.${MACHINE}/disktab rpc 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.3Sglass install -c -o root -g wheel -m 600 crontab ${DESTDIR}/var/cron/tabs/root 281.1Scgd install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc 291.2Scgd (cd ${DESTDIR}/etc; pwd_mkdb -p master.passwd) 301.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 555 \ 311.1Scgd MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev 321.1Scgd (cd root; \ 331.1Scgd install -c -o root -g wheel -m 644 dot.cshrc \ 341.1Scgd ${DESTDIR}/root/.cshrc; \ 351.1Scgd install -c -o root -g wheel -m 644 dot.klogin \ 361.1Scgd ${DESTDIR}/root/.klogin; \ 371.1Scgd install -c -o root -g wheel -m 644 dot.login \ 381.1Scgd ${DESTDIR}/root/.login; \ 391.1Scgd install -c -o root -g wheel -m 644 dot.profile \ 401.1Scgd ${DESTDIR}/root/.profile; \ 411.1Scgd rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \ 421.1Scgd ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \ 431.1Scgd ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile) 441.1Scgd cd mtree; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${MTREE} \ 451.1Scgd ${DESTDIR}/etc/mtree 461.1Scgd cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \ 471.1Scgd ${DESTDIR}/etc/namedb 481.1Scgd install -c -o ${BINOWN} -g operator -m 664 /dev/null \ 491.1Scgd ${DESTDIR}/etc/dumpdates 501.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ 511.1Scgd ${DESTDIR}/var/log/messages 521.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ 531.1Scgd ${DESTDIR}/var/log/maillog 541.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ 551.1Scgd ${DESTDIR}/var/log/lpd-errs 561.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ 571.1Scgd ${DESTDIR}/var/run/utmp 581.1Scgd (cd etc.${MACHINE}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ 591.6Scgd fstab.* ${DESTDIR}/etc) 601.1Scgd.if ${MACHINE} == "tahoe" 611.1Scgd (cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS1} \ 621.1Scgd ${DESTDIR}/) 631.1Scgd.endif 641.1Scgd.if ${MACHINE} == "vax" 651.1Scgd (cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \ 661.1Scgd ${DESTDIR}/) 671.1Scgd.endif 681.1Scgd 691.1Scgdhcx9-distribution: 701.1Scgd (cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \ 711.1Scgd ${DESTDIR}/) 721.1Scgd 731.1Scgd.include <bsd.prog.mk> 74