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