Makefile revision 279505
1#	from: @(#)Makefile	5.11 (Berkeley) 5/21/91
2# $FreeBSD: stable/10/etc/Makefile 279505 2015-03-01 22:03:52Z ngie $
3
4.include <bsd.own.mk>
5
6SUBDIR=	\
7	newsyslog.conf.d
8
9.if ${MK_SENDMAIL} != "no"
10SUBDIR+=sendmail
11.endif
12
13.if ${MK_TESTS} != "no"
14SUBDIR+=tests
15.endif
16
17BIN1=	crontab \
18	devd.conf \
19	devfs.conf \
20	ddb.conf \
21	dhclient.conf \
22	disktab \
23	fbtab \
24	gettytab \
25	group \
26	hosts \
27	hosts.allow \
28	hosts.equiv \
29	libalias.conf \
30	libmap.conf \
31	login.access \
32	login.conf \
33	mac.conf \
34	motd \
35	netconfig \
36	network.subr \
37	networks \
38	newsyslog.conf \
39	nsswitch.conf \
40	phones \
41	profile \
42	protocols \
43	rc \
44	rc.bsdextended \
45	rc.firewall \
46	rc.initdiskless \
47	rc.sendmail \
48	rc.shutdown \
49	rc.subr \
50	remote \
51	rpc \
52	services \
53	shells \
54	sysctl.conf \
55	syslog.conf \
56	termcap.small
57
58.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64"
59BIN1+=	libmap32.conf
60.endif
61
62.if exists(${.CURDIR}/etc.${MACHINE}/ttys)
63BIN1+=	etc.${MACHINE}/ttys
64.elif exists(${.CURDIR}/etc.${MACHINE_ARCH}/ttys)
65BIN1+=	etc.${MACHINE_ARCH}/ttys
66.elif exists(${.CURDIR}/etc.${MACHINE_CPUARCH}/ttys)
67BIN1+=	etc.${MACHINE_CPUARCH}/ttys
68.else
69.error etc.MACHINE/ttys missing
70.endif
71
72OPENBSMDIR=			${.CURDIR}/../contrib/openbsm
73BSM_ETC_OPEN_FILES=		${OPENBSMDIR}/etc/audit_class \
74				${OPENBSMDIR}/etc/audit_event
75BSM_ETC_RESTRICTED_FILES=	${OPENBSMDIR}/etc/audit_control \
76				${OPENBSMDIR}/etc/audit_user
77BSM_ETC_EXEC_FILES=		${OPENBSMDIR}/etc/audit_warn
78BSM_ETC_DIR=			${DESTDIR}/etc/security
79
80# NB: keep these sorted by MK_* knobs
81
82.if ${MK_AMD} != "no"
83BIN1+= amd.map
84.endif
85
86.if ${MK_APM} != "no"
87BIN1+= apmd.conf
88.endif
89
90.if ${MK_AUTOFS} != "no"
91BIN1+= auto_master
92.endif
93
94.if ${MK_BSNMP} != "no"
95BIN1+= snmpd.config
96.endif
97
98.if ${MK_FREEBSD_UPDATE} != "no"
99BIN1+= freebsd-update.conf
100.endif
101
102.if ${MK_FTP} != "no"
103BIN1+= ftpusers
104.endif
105
106.if ${MK_INETD} != "no"
107BIN1+= inetd.conf
108.endif
109
110.if ${MK_LOCATE} != "no"
111BIN1+=	${.CURDIR}/../usr.bin/locate/locate/locate.rc
112.endif
113
114.if ${MK_LPR} != "no"
115BIN1+=	hosts.lpd printcap
116.endif
117
118.if ${MK_MAIL} != "no"
119BIN1+=	${.CURDIR}/../usr.bin/mail/misc/mail.rc
120.endif
121
122.if ${MK_NTP} != "no"
123BIN1+=	ntp.conf
124.endif
125
126.if ${MK_OPENSSH} != "no"
127SSH=	${.CURDIR}/../crypto/openssh/ssh_config \
128	${.CURDIR}/../crypto/openssh/sshd_config \
129	${.CURDIR}/../crypto/openssh/moduli
130.endif
131.if ${MK_OPENSSL} != "no"
132SSL=	${.CURDIR}/../crypto/openssl/apps/openssl.cnf
133.endif
134
135.if ${MK_NS_CACHING} != "no"
136BIN1+= nscd.conf
137.endif
138
139.if ${MK_PORTSNAP} != "no"
140BIN1+= portsnap.conf
141.endif
142
143.if ${MK_PF} != "no"
144BIN1+= pf.os
145.endif
146
147.if ${MK_TCSH} != "no"
148BIN1+= csh.cshrc csh.login csh.logout
149.endif
150
151.if ${MK_WIRELESS} != "no"
152BIN1+= regdomain.xml
153.endif
154
155# -rwxr-xr-x root:wheel, for the new cron root:wheel
156BIN2=	netstart pccard_ether rc.suspend rc.resume
157
158MTREE=	BSD.include.dist BSD.root.dist BSD.usr.dist BSD.var.dist
159.if ${MK_TESTS} != "no"
160MTREE+=	BSD.tests.dist
161.endif
162.if ${MK_SENDMAIL} != "no"
163MTREE+=	BSD.sendmail.dist
164.endif
165.if ${MK_DEBUG_FILES} != "no"
166MTREE+=	BSD.debug.dist
167.endif
168
169PPPCNF=	ppp.conf
170
171.if ${MK_SENDMAIL} == "no"
172ETCMAIL=mailer.conf aliases
173.else
174ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
175	mailertable.sample aliases
176.endif
177
178# Special top level files for FreeBSD
179FREEBSD=COPYRIGHT
180
181# Sanitize DESTDIR
182DESTDIR:=	${DESTDIR:C://*:/:g}
183
184afterinstall:
185.if ${MK_MAN} != "no"
186	${_+_}cd ${.CURDIR}/../share/man; ${MAKE} makedb
187.endif
188
189distribute:
190	# Avoid installing tests here; "make distribution" will do this and
191	# correctly place them in the right location.
192	${_+_}cd ${.CURDIR} ; ${MAKE} -DNO_TESTS install \
193	    DESTDIR=${DISTDIR}/${DISTRIBUTION}
194	${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
195
196.include <bsd.endian.mk>
197.if ${TARGET_ENDIANNESS} == "1234"
198CAP_MKDB_ENDIAN?= -l
199PWD_MKDB_ENDIAN?= -L
200.elif ${TARGET_ENDIANNESS} == "4321"
201CAP_MKDB_ENDIAN?= -b
202PWD_MKDB_ENDIAN?= -B
203.else
204CAP_MKDB_ENDIAN?=
205PWD_MKDB_ENDIAN?=
206.endif
207
208.if defined(NO_ROOT)
209METALOG.add?=	cat -l >> ${METALOG}
210.endif
211
212distribution:
213.if !defined(DESTDIR)
214	@echo "set DESTDIR before running \"make ${.TARGET}\""
215	@false
216.endif
217	cd ${.CURDIR}; \
218	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
219		${BIN1} ${DESTDIR}/etc; \
220	    cap_mkdb ${CAP_MKDB_ENDIAN} ${DESTDIR}/etc/login.conf; \
221	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 \
222		${BIN2} ${DESTDIR}/etc; \
223	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
224		master.passwd nsmb.conf opieaccess ${DESTDIR}/etc;
225.if ${MK_AT} == "no"
226	sed -i "" -e 's;.*/usr/libexec/atrun;#&;' ${DESTDIR}/etc/crontab
227.endif
228.if ${MK_TCSH} == "no"
229	sed -i "" -e 's;/bin/csh;/bin/sh;' ${DESTDIR}/etc/master.passwd
230.endif
231	pwd_mkdb ${PWD_MKDB_ENDIAN} -i -p -d ${DESTDIR}/etc \
232	    ${DESTDIR}/etc/master.passwd
233.if defined(NO_ROOT)
234	( \
235		echo "./etc/login.conf.db type=file mode=0644 uname=root gname=wheel"; \
236		echo "./etc/passwd type=file mode=0644 uname=root gname=wheel"; \
237		echo "./etc/pwd.db type=file mode=0644 uname=root gname=wheel"; \
238		echo "./etc/spwd.db type=file mode=0600 uname=root gname=wheel"; \
239	) | ${METALOG.add}
240.endif
241.if ${MK_AUTOFS} != "no"
242	${_+_}cd ${.CURDIR}/autofs; ${MAKE} install
243.endif
244.if ${MK_BLUETOOTH} != "no"
245	${_+_}cd ${.CURDIR}/bluetooth; ${MAKE} install
246.endif
247	${_+_}cd ${.CURDIR}/defaults; ${MAKE} install
248	${_+_}cd ${.CURDIR}/devd; ${MAKE} install
249	${_+_}cd ${.CURDIR}/gss; ${MAKE} install
250	${_+_}cd ${.CURDIR}/periodic; ${MAKE} install
251	${_+_}cd ${.CURDIR}/pkg; ${MAKE} install
252	${_+_}cd ${.CURDIR}/rc.d; ${MAKE} install
253	${_+_}cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
254	${_+_}cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
255	${_+_}cd ${.CURDIR}/pam.d; ${MAKE} install
256	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0444 \
257	    ${BSM_ETC_OPEN_FILES} ${BSM_ETC_DIR}
258	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0600 \
259	    ${BSM_ETC_RESTRICTED_FILES} ${BSM_ETC_DIR}
260	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0500 \
261	    ${BSM_ETC_EXEC_FILES} ${BSM_ETC_DIR}
262.if ${MK_UNBOUND} != "no"
263	if [ ! -e ${DESTDIR}/etc/unbound ]; then \
264		${INSTALL_SYMLINK} ../var/unbound ${DESTDIR}/etc/unbound; \
265	fi
266.endif
267.if ${MK_SENDMAIL} != "no"
268	${_+_}cd ${.CURDIR}/sendmail; ${MAKE} distribution
269.endif
270.if ${MK_OPENSSH} != "no"
271	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
272	    ${SSH} ${DESTDIR}/etc/ssh
273.endif
274.if ${MK_OPENSSL} != "no"
275	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
276	    ${SSL} ${DESTDIR}/etc/ssl
277.endif
278.if ${MK_KERBEROS} != "no"
279	cd ${.CURDIR}/root; \
280	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
281		dot.k5login ${DESTDIR}/root/.k5login;
282.endif
283	cd ${.CURDIR}/root; \
284	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
285		dot.profile ${DESTDIR}/root/.profile; \
286	    rm -f ${DESTDIR}/.profile; \
287	    ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile
288.if ${MK_TCSH} != "no"
289	cd ${.CURDIR}/root; \
290	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
291		dot.cshrc ${DESTDIR}/root/.cshrc; \
292	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
293		dot.login ${DESTDIR}/root/.login; \
294	    rm -f ${DESTDIR}/.cshrc; \
295	    ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc
296.endif
297	cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
298	    ${MTREE} ${DESTDIR}/etc/mtree
299.if ${MK_PPP} != "no"
300	cd ${.CURDIR}/ppp; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
301	    ${PPPCNF} ${DESTDIR}/etc/ppp
302.endif
303.if ${MK_MAIL} != "no"
304	cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
305	    ${ETCMAIL} ${DESTDIR}/etc/mail
306	if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
307	      ! -f ${DESTDIR}/etc/aliases ]; then \
308		ln -s mail/aliases ${DESTDIR}/etc/aliases; \
309	fi
310.endif
311	${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
312	    ${DESTDIR}/etc/dumpdates
313	${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
314	    ${DESTDIR}/var/db/locate.database
315	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
316	    ${DESTDIR}/var/crash
317	cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
318		${FREEBSD} ${DESTDIR}/
319.if ${MK_BOOT} != "no"
320.if exists(${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints)
321	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
322	    ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \
323	    ${DESTDIR}/boot/device.hints
324.endif
325.endif
326.if ${MK_NIS} == "no"
327	sed -i "" -e 's/.*_compat:/# &/' -e 's/compat$$/files/' \
328		${DESTDIR}/etc/nsswitch.conf
329.endif
330
331MTREE_CMD?=	mtree
332
333MTREES=		mtree/BSD.root.dist		/		\
334		mtree/BSD.var.dist		/var		\
335		mtree/BSD.usr.dist		/usr		\
336		mtree/BSD.include.dist		/usr/include
337.if ${MK_DEBUG_FILES} != "no"
338MTREES+=	mtree/BSD.debug.dist		/usr/lib
339.endif
340.if ${MK_GROFF} != "no"
341MTREES+=	mtree/BSD.groff.dist		/usr
342.endif
343.if ${MK_TESTS} != "no"
344MTREES+=	mtree/BSD.tests.dist		${TESTSBASE}
345.endif
346.if ${MK_SENDMAIL} != "no"
347MTREES+=	mtree/BSD.sendmail.dist		/
348.endif
349.for mtree in ${LOCAL_MTREE}
350MTREES+=	../${mtree}			/
351.endfor
352
353distrib-dirs: ${MTREES:N/*}
354	@set ${MTREES}; \
355	while test $$# -ge 2; do \
356		m=${.CURDIR}/$$1; \
357		shift; \
358		d=${DESTDIR}$$1; \
359		shift; \
360		test -d $$d || mkdir -p $$d; \
361		${ECHO} ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} \
362		    -f $$m -p $$d; \
363		${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -f $$m -p $$d; \
364	done; true
365.if defined(NO_ROOT)
366	@set ${MTREES}; \
367	while test $$# -ge 2; do \
368		m=${.CURDIR}/$$1; \
369		shift; \
370		d=$$1; \
371		test "$$d" == "/" && d=""; \
372		d=${DISTBASE}$$d; \
373		shift; \
374		test -d $$d || mkdir -p $$d; \
375		${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K uname,gname | " \
376		    "sed s#^\.#.$$d# | ${METALOG.add}" ; \
377		${MTREE_CMD:N-W} -C -f $$m -K uname,gname | sed s#^\.#.$$d# | \
378		    ${METALOG.add} ; \
379	done; true
380.endif
381	${INSTALL_SYMLINK} usr/src/sys ${DESTDIR}/sys
382	cd ${DESTDIR}/usr/share/man; \
383	for mandir in man*; do \
384		${INSTALL_SYMLINK} ../$$mandir \
385		    ${DESTDIR}/usr/share/man/en.ISO8859-1/; \
386		${INSTALL_SYMLINK} ../$$mandir \
387		    ${DESTDIR}/usr/share/man/en.UTF-8/; \
388	done
389	cd ${DESTDIR}/usr/share/openssl/man; \
390	for mandir in man*; do \
391		${INSTALL_SYMLINK} ../$$mandir \
392		    ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1/; \
393	done
394	set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
395	while [ $$# -gt 0 ] ; do \
396		${INSTALL_SYMLINK} "$$2" "${DESTDIR}/usr/share/man/$$1"; \
397		${INSTALL_SYMLINK} "$$2" \
398		    "${DESTDIR}/usr/share/openssl/man/$$1"; \
399		shift; shift; \
400	done
401	set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
402	while [ $$# -gt 0 ] ; do \
403		${INSTALL_SYMLINK} "$$2" "${DESTDIR}/usr/share/nls/$$1"; \
404		shift; shift; \
405	done
406
407etc-examples:
408	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
409	    ${BIN1} ${BIN2} nsmb.conf opieaccess \
410	    ${DESTDIR}/usr/share/examples/etc
411	${_+_}cd ${.CURDIR}/defaults; ${MAKE} install \
412	    DESTDIR=${DESTDIR}/usr/share/examples
413
414.include <bsd.prog.mk>
415