Makefile revision 147
1#	@(#)Makefile	5.11 (Berkeley) 5/21/91
2
3LOCALTIME=	US/Pacific
4TZDIR=/usr/share/zoneinfo
5
6NOOBJ=	oobj
7
8# disktab may be wrong -- hcx9 is a tahoe, but gets its own.
9# -rw-r--r--
10BINOWN= root
11BINGRP= wheel
12BIN1=	aliases csh.cshrc csh.login csh.logout dm.conf \
13	ftpusers gettytab group hosts hosts.equiv hosts.lpd inetd.conf \
14	man.conf motd myname netstart phones \
15	printcap protocols rc rc.local remote security services shells \
16	syslog.conf ttys etc.${MACHINE}/disktab rpc
17
18# -rw-rw-rw-
19BIN2=	motd
20
21# -rwxr-xr-x root.wheel, for the new f***ing cron root.wheel
22BIN3=	daily weekly monthly
23
24MTREE=	BSD.root.dist BSD.usr.dist BSD.var.dist
25NAMEDB=	localhost.rev named.boot root.cache
26PCS=	pcs750.bin
27WCS1=	wcs fppwcs poc poc1 poc2 fppoc
28WCS2=	fpevent fppwcs fppwcs_dual hdcwcs load_diags start_fpp wcs wcs_dual
29
30all clean cleandir depend etc install lint:
31
32distribution: distrib-dirs
33	install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
34	install -c -o ${BINOWN} -g ${BINGRP} -m 666 ${BIN2} ${DESTDIR}/etc
35	install -c -o root -g wheel -m 755 ${BIN3} ${DESTDIR}/etc
36	install -c -o root -g wheel -m 600 crontab ${DESTDIR}/var/cron/tabs/root
37	install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
38	(cd ${DESTDIR}/etc; pwd_mkdb -p master.passwd)
39	install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
40	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
41	(cd ${DESTDIR}/dev; sh MAKEDEV all)
42	(cd root; \
43		install -c -o root -g wheel -m 644 dot.cshrc \
44		    ${DESTDIR}/root/.cshrc; \
45		install -c -o root -g wheel -m 644 dot.klogin \
46		    ${DESTDIR}/root/.klogin; \
47		install -c -o root -g wheel -m 644 dot.login \
48		    ${DESTDIR}/root/.login; \
49		install -c -o root -g wheel -m 644 dot.profile \
50		    ${DESTDIR}/root/.profile; \
51		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
52		ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
53		ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
54	cd mtree; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${MTREE} \
55	    ${DESTDIR}/etc/mtree
56	cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \
57	    ${DESTDIR}/etc/namedb
58	/bin/rm -f ${DESTDIR}/etc/localtime
59	ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
60	install -c -o ${BINOWN} -g operator -m 664 /dev/null \
61	    ${DESTDIR}/etc/dumpdates
62	install -c -o nobody -g ${BINGRP} -m 664 /dev/null \
63	    ${DESTDIR}/var/db/locate.database
64	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
65	    ${DESTDIR}/var/log/lpd-errs
66	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
67	    ${DESTDIR}/var/log/maillog
68	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
69	    ${DESTDIR}/var/log/messages
70	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
71	    ${DESTDIR}/var/log/wtmp
72	install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
73	    ${DESTDIR}/var/run/utmp
74	(cd etc.${MACHINE}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
75	    fstab.* ${DESTDIR}/etc)
76.if ${MACHINE} == "tahoe"
77	(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS1} \
78	    ${DESTDIR}/)
79.endif
80.if ${MACHINE} == "vax"
81	(cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \
82	    ${DESTDIR}/)
83.endif
84
85hcx9-distribution:
86	(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \
87	    ${DESTDIR}/)
88
89distrib-dirs:
90	mtree -du -f mtree/BSD.root.dist -p ${DESTDIR}
91	mtree -u -f mtree/BSD.var.dist -p ${DESTDIR}/var
92	mtree -u -f mtree/BSD.usr.dist -p ${DESTDIR}/usr
93	(cd ${DESTDIR}; rm -f ${DESTDIR}/sys; \
94	    ln -s usr/src/sys.386bsd sys )
95
96.include <bsd.prog.mk>
97