xref: /dragonfly/etc/Makefile (revision f746689a)
1#	from: @(#)Makefile	5.11 (Berkeley) 5/21/91
2# $FreeBSD: src/etc/Makefile,v 1.219.2.38 2003/03/04 09:49:00 ru Exp $
3# $DragonFly: src/etc/Makefile,v 1.217 2008/10/03 10:27:42 swildner Exp $
4
5.if !defined(NO_SENDMAIL)
6SUBDIR=	sendmail
7.endif
8
9# Files that should be installed read-only (444)
10#
11BINUPDATE= apmd.conf fbtab gettytab network.subr \
12	pf.os \
13	protocols \
14	rc rc.firewall6 \
15	rc.sendmail rc.shutdown \
16	rc.subr rpc services \
17	etc.${MACHINE_ARCH}/disktab
18.if defined(BINARY_UPGRADE) # location of these depends on upgrade method
19BINUPDATE+=mail.rc locate.rc
20.else
21BINUPDATE+=${.CURDIR}/../usr.bin/mail/misc/mail.rc \
22	${.CURDIR}/../usr.bin/locate/locate/locate.rc
23.endif
24
25# Initial distribution files are installed read-write (644)
26#
27BIN1=	amd.map auth.conf \
28	crontab csh.cshrc csh.login csh.logout \
29	devd.conf devices.conf dhclient.conf dm.conf dntpd.conf \
30	ftpusers group \
31	hosts hosts.allow hosts.equiv hosts.lpd \
32	inetd.conf login.access login.conf \
33	motd modems netconfig networks newsyslog.conf \
34	nscd.conf pf.conf phones printcap profile \
35	remote sensorsd.conf \
36	shells sysctl.conf syslog.conf usbd.conf \
37	etc.${MACHINE_ARCH}/ttys
38.if defined(BINARY_UPGRADE) # location of these depends on upgrade method
39BIN1+=	manpath.config
40.else
41BIN1+=	${.CURDIR}/../gnu/usr.bin/man/manpath/manpath.config
42.endif
43
44.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
45.if !defined(NO_OPENSSH)
46DIRS+=	secure/lib/libssh \
47	secure/usr.bin/ssh \
48	secure/usr.sbin/sshd
49.endif
50DIRS+=	secure/usr.bin/openssl
51.endif
52
53# Files that should be installed read-only-executable (555) root:wheel
54#
55BIN2=	pccard_ether rc.firewall rc.suspend rc.resume
56
57DEFAULTS= rc.conf make.conf periodic.conf uuids
58
59MTREE=	BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
60	BSD.var.dist
61.if !defined(NO_SENDMAIL)
62MTREE+=	BSD.sendmail.dist
63.endif
64
65NAMEDB=	PROTO.localhost.rev PROTO.localhost-v6.rev named.conf named.root \
66	make-localhost getroot README
67
68PPPCNF=	ppp.conf
69
70ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
71	mailertable.sample aliases
72
73# Special top level files for FreeBSD
74FREEBSD=COPYRIGHT
75
76# List of libraries in /usr/lib/compat that might have to be removed
77# from /usr/lib.
78COMPAT_LIBS != cd ${DESTDIR}/usr/lib/compat && find . -name '*.so.*'
79
80# Use this directory as the source for new configuration files when upgrading
81UPGRADE_SRCDIR?=${.CURDIR}
82
83distribute:
84	cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
85
86# Include file which contains obsolete files
87.if exists(${DESTDIR}/etc/upgrade/Makefile_upgrade.inc)
88.include "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
89.else
90	@echo "Please do a make installworld first.  See build(7) for further"
91	@echo "information."
92.endif
93
94remove-obsolete-files:
95	@echo "===> Remove now obsolete files"
96	@for item in ${TO_REMOVE:M*.info.gz}; do \
97		if [ -e ${DESTDIR}$${item} ]; then \
98			install-info --delete ${DESTDIR}$${item} \
99			    /usr/share/info/dir; \
100		fi; \
101	done;
102	@for item in ${TO_REMOVE}; do \
103		if [ -e ${DESTDIR}$${item} ]; then \
104			echo "${DESTDIR}$${item}"; \
105			rm -rf "${DESTDIR}$${item}"; \
106		fi; \
107	done
108	@rm -f "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
109
110preupgrade:
111.if !defined(NO_SENDMAIL)
112	(pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
113		pw -V ${DESTDIR}/etc groupadd smmsp -g 25
114	(pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
115		pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
116		   -c "Sendmail Submission User" \
117		   -d /var/spool/clientmqueue -s /sbin/nologin
118.endif
119	(pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
120		pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
121		   -c "pflogd privsep user" \
122		   -d /var/empty -s /sbin/nologin
123	(pw -V ${DESTDIR}/etc usershow _sdpd -q > /dev/null) || \
124		pw -V ${DESTDIR}/etc useradd _sdpd -u 70 \
125		   -c "sdpd privsep user" \
126		   -d /var/empty -s /sbin/nologin
127	(pw -V ${DESTDIR}/etc usershow _dhcp -q > /dev/null) || \
128		pw -V ${DESTDIR}/etc useradd _dhcp -u 77 \
129		   -c "DHCP programs" \
130		   -d /var/empty -s /sbin/nologin
131	(pw -V ${DESTDIR}/etc groupshow authpf -q > /dev/null) || \
132		pw -V ${DESTDIR}/etc groupadd authpf -g 63
133	(pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
134		pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
135	(pw -V ${DESTDIR}/etc groupshow _sdpd -q > /dev/null) || \
136		pw -V ${DESTDIR}/etc groupadd _sdpd -g 70
137	(pw -V ${DESTDIR}/etc groupshow _dhcp -q > /dev/null) || \
138		pw -V ${DESTDIR}/etc groupadd _dhcp -g 77
139
140upgrade_etc:	preupgrade remove-obsolete-files
141.if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
142	cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
143.endif
144	cd ${UPGRADE_SRCDIR}; \
145	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
146		${BINUPDATE} ${DESTDIR}/etc; \
147	    cap_mkdb ${DESTDIR}/etc/login.conf; \
148	    for f in ${BIN1}; do \
149		[ -e "${DESTDIR}/etc/$${f##*/}" ] || \
150		    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
151			$$f ${DESTDIR}/etc; \
152	    done; \
153	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
154		${BIN2} ${DESTDIR}/etc;
155	cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
156	    ${DEFAULTS} ${DESTDIR}/etc/defaults
157	cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
158	mkdir -p ${DESTDIR}/etc/rc.d
159	cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install
160	# "../share/termcap/make etc-termcap" expanded inline here:
161	${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
162	# "../usr.sbin/rmt/make etc-rmt" expanded inline here:
163	${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
164.if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
165.if !defined(NO_SENDMAIL)
166	cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
167.endif
168.endif
169.if !defined(NO_I4B)
170	cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
171.endif
172	cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
173	    ${MTREE} ${DESTDIR}/etc/mtree
174	cd ${UPGRADE_SRCDIR}/bluetooth; ${MAKE} install
175	cd ${UPGRADE_SRCDIR}/dma; ${MAKE} install
176	cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 Makefile.usr ${DESTDIR}/usr/Makefile
177.if !exists(${DESTDIR}/etc/pam.d)
178	mkdir -p ${DESTDIR}/etc/pam.d
179	cd ${UPGRADE_SRCDIR}/pam.d; ${MAKE} install
180	sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
181.else
182.for pamconf in README convert.sh atrun cron passwd rsh su system
183.if !exists(${DESTDIR}/etc/pam.d/${pamconf})
184	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
185.endif
186.endfor
187.endif
188	# these removals must occur AFTER any pam conversion
189	csh -c "rm -f /usr/lib/pam_{cleartext_pass_ok,deny,opie,opieaccess,permit,radius,skey,ssh,tacplus,unix}.so"
190	rm -f /etc/pam.conf
191.if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
192	cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
193	    ${FREEBSD} ${DESTDIR}/
194.endif
195	rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
196	rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
197	${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
198	${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
199.if exists(${DESTDIR}/usr/lib/gcc2)
200	ldconfig -m ${DESTDIR}/usr/lib/gcc2
201.endif
202.for lib in ${COMPAT_LIBS:M*.so.*}
203.if exists(${DESTDIR}/usr/lib/${lib})
204	chflags noschg ${DESTDIR}/usr/lib/${lib}
205	rm -f ${DESTDIR}/usr/lib/${lib}
206.endif
207.endfor
208.if !defined(NO_OPENSSH)
209	cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc obj
210	cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc install
211.endif
212.if exists(${DESTDIR}/boot)
213.if exists(${DESTDIR}/kernel)
214	chflags noschg ${DESTDIR}/kernel
215	mv ${DESTDIR}/kernel ${DESTDIR}/boot/kernel
216	chflags schg ${DESTDIR}/boot/kernel
217.endif
218.if exists(${DESTDIR}/modules)
219	mv ${DESTDIR}/modules ${DESTDIR}/boot/modules
220	rm -rf ${DESTDIR}/boot/modules/modules
221.endif
222.if exists(${DESTDIR}/kernel.old)
223	mv ${DESTDIR}/kernel.old ${DESTDIR}/boot/kernel.old
224.endif
225.if exists(${DESTDIR}/modules.old)
226	mv ${DESTDIR}/modules.old ${DESTDIR}/boot/modules.old
227	rm -rf ${DESTDIR}/boot/modules.old/modules.old
228.endif
229.endif
230	ldconfig -R
231.if !defined(BINARY_UPGRADE) # binary upgrade just copies these nodes
232.if !defined(NO_MAKEDEV)
233	cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
234	    MAKEDEV.local MAKEDEV ${DESTDIR}/dev
235.if !defined(NO_MAKEDEV_RUN)
236	cd ${DESTDIR}/dev; sh MAKEDEV upgrade
237.endif
238.endif
239.endif
240
241# The existence of cleartext_pass_ok means pam config files are out of date.
242	@set - `fgrep cleartext_pass_ok ${DESTDIR}/etc/pam.d/*`; \
243	if [ $$# -gt 0 ] ; \
244	then \
245		echo "It appears your PAM configuration files need to be updated"; \
246		echo "This can be done by manually editing the files or:"; \
247		echo "	cd ${UPGRADE_SRCDIR}/pam.d"; \
248		echo "	make install"; \
249	fi
250
251distribution:
252	cd ${.CURDIR}; \
253	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
254		${BINUPDATE} ${DESTDIR}/etc; \
255	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
256		${BIN1} ${DESTDIR}/etc; \
257	    cap_mkdb ${DESTDIR}/etc/login.conf; \
258	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
259		${BIN2} ${DESTDIR}/etc; \
260	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
261		master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
262	    pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
263	cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
264	    ${DEFAULTS} ${DESTDIR}/etc/defaults
265	cd ${.CURDIR}/pam.d; ${MAKE} install
266	cd ${.CURDIR}/bluetooth; ${MAKE} install
267	cd ${.CURDIR}/dma; ${MAKE} install
268	cd ${.CURDIR}/periodic; ${MAKE} install
269	cd ${.CURDIR}/rc.d; ${MAKE} install
270	cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
271	cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
272	cd ${.CURDIR}; \
273	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
274		Makefile.usr ${DESTDIR}/usr/Makefile
275.if !defined(NO_I4B)
276	cd ${.CURDIR}/isdn; ${MAKE} install
277.endif
278.if !defined(NO_SENDMAIL)
279	cd ${.CURDIR}/sendmail; ${MAKE} obj
280	cd ${.CURDIR}/sendmail; ${MAKE} distribution
281.endif
282.for dir in ${DIRS}
283.if exists(${.CURDIR}/../${dir}/Makefile.etc)
284	cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
285	cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
286.endif
287.endfor
288.if !defined(NO_MAKEDEV)
289	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
290	    MAKEDEV.local MAKEDEV ${DESTDIR}/dev
291.if !defined(NO_MAKEDEV_RUN)
292	cd ${DESTDIR}/dev; sh MAKEDEV all
293.endif
294.endif
295	cd ${.CURDIR}/root; \
296	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
297		dot.cshrc ${DESTDIR}/root/.cshrc; \
298	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
299		dot.klogin ${DESTDIR}/root/.klogin; \
300	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
301		dot.login ${DESTDIR}/root/.login; \
302	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
303		dot.profile ${DESTDIR}/root/.profile; \
304	    rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
305	    ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
306	    ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
307	cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
308	    ${MTREE} ${DESTDIR}/etc/mtree
309	cd ${.CURDIR}/namedb; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
310	    ${NAMEDB} ${DESTDIR}/etc/namedb
311	cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
312	    ${PPPCNF} ${DESTDIR}/etc/ppp
313	cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
314	    ${ETCMAIL} ${DESTDIR}/etc/mail
315	@if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
316	      ! -f ${DESTDIR}/etc/aliases ]; then \
317		set -x; \
318		${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
319	fi
320	${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
321	    ${DESTDIR}/etc/dumpdates
322	${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
323	    ${DESTDIR}/var/db/locate.database
324	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
325	    ${DESTDIR}/var/log/auth.log
326	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
327	    ${DESTDIR}/var/log/cron
328	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
329	    ${DESTDIR}/var/log/lpd-errs
330	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
331	    ${DESTDIR}/var/log/maillog
332	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
333	    ${DESTDIR}/var/log/lastlog
334	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
335	    ${DESTDIR}/var/log/messages
336	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
337	    ${DESTDIR}/var/log/security
338	${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
339	    ${DESTDIR}/var/log/slip.log
340	${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
341	    ${DESTDIR}/var/log/ppp.log
342	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
343	    ${DESTDIR}/var/log/wtmp
344	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
345	    ${DESTDIR}/var/run/utmp
346	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
347	    ${DESTDIR}/var/crash
348	cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
349	    ${FREEBSD} ${DESTDIR}/
350.if !defined(NOMAN)
351	cd ${.CURDIR}/../share/man; ${MAKE} makedb
352.endif
353
354distrib-dirs:
355	-set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
356	while [ $$# -gt 0 ] ; \
357	do \
358		for dir in /usr/share/locale \
359			   /usr/share/nls \
360			   /usr/local/share/nls; \
361		do \
362			test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
363			test -L "$$2" && rm -rf "$$2"; \
364			test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
365		done; \
366		shift; shift; \
367	done
368	mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
369	mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
370	mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
371	mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
372		-p ${DESTDIR}/usr/include
373.if !defined(NO_SENDMAIL)
374	mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
375.endif
376	cd ${DESTDIR}/etc/namedb; rm -f etc/namedb; ${LN} -s ".." etc/namedb
377	cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ${LN} -s usr/src/sys sys
378	cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
379	cd ${DESTDIR}/usr/share/man; \
380	set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
381	while [ $$# -gt 0 ] ; \
382	do \
383		rm -rf "$$1"; \
384		${LN} -s "$$2" "$$1"; \
385		shift; shift; \
386	done
387	cd ${DESTDIR}/usr/share/locale; \
388	set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
389	while [ $$# -gt 0 ] ; \
390	do \
391		rm -rf "$$1"; \
392		${LN} -s "$$2" "$$1"; \
393		shift; shift; \
394	done
395	cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
396	cd ${DESTDIR}/usr/share/nls; \
397	set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
398	while [ $$# -gt 0 ] ; \
399	do \
400		rm -rf "$$1"; \
401		${LN} -s "$$2" "$$1"; \
402		shift; shift; \
403	done
404
405etc-examples:
406	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
407	    ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
408	    ${DESTDIR}/usr/share/examples/etc
409	cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
410	    ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
411
412.include <bsd.prog.mk>
413