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