386BSD 0.1 development
authorWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Tue, 3 Mar 1992 00:22:23 +0000 (16:22 -0800)
committerWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Tue, 3 Mar 1992 00:22:23 +0000 (16:22 -0800)
Work on file usr/othersrc/etc/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

usr/othersrc/etc/Makefile [new file with mode: 0644]

diff --git a/usr/othersrc/etc/Makefile b/usr/othersrc/etc/Makefile
new file mode 100644 (file)
index 0000000..52225d6
--- /dev/null
@@ -0,0 +1,76 @@
+#      @(#)Makefile    5.11 (Berkeley) 5/21/91
+
+NOOBJ= oobj
+
+# disktab may be wrong -- hcx9 is a tahoe, but gets its own.
+# -rw-r--r--
+BIN1=  aliases csh.cshrc csh.login csh.logout crontab daily dm.conf \
+       ftpusers gettytab group hosts hosts.equiv hosts.lpd inetd.conf \
+       man.conf monthly motd netstart phones printcap protocols rc \
+       rc.local remote security services shells syslog.conf ttys weekly \
+       etc.${MACHINE}/disktab
+
+# -rw-rw-rw-
+BIN2=  motd
+
+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:
+
+distribution:
+       install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
+       install -c -o ${BINOWN} -g ${BINGRP} -m 666 ${BIN2} ${DESTDIR}/etc
+       install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
+       (cd ${DESTDIR}/etc; \
+           pwd_mkdb -p master.passwd; \
+           mv master.passwd.pag passwd.pag; \
+           mv master.passwd.dir passwd.dir; \
+           mv master.passwd.orig passwd)
+       install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
+            MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
+       (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
+       install -c -o ${BINOWN} -g operator -m 664 /dev/null \
+           ${DESTDIR}/etc/dumpdates
+       install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
+           ${DESTDIR}/var/log/messages
+       install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
+           ${DESTDIR}/var/log/maillog
+       install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
+           ${DESTDIR}/var/log/lpd-errs
+       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 \
+           fstab.* ${DESTDIR}/)
+.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
+
+hcx9-distribution:
+       (cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \
+           ${DESTDIR}/)
+
+.include <bsd.prog.mk>