]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - etc/Makefile
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / etc / Makefile
1 #       from: @(#)Makefile      5.11 (Berkeley) 5/21/91
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 .if ${MK_SENDMAIL} != "no"
7 SUBDIR= sendmail
8 .endif
9
10 BIN1=   auth.conf \
11         crontab devd.conf devfs.conf \
12         ddb.conf dhclient.conf disktab fbtab \
13         ftpusers gettytab group \
14         hosts hosts.allow hosts.equiv \
15         inetd.conf libalias.conf login.access login.conf mac.conf motd \
16         netconfig network.subr networks newsyslog.conf nsswitch.conf \
17         phones profile protocols \
18         rc rc.bsdextended rc.firewall rc.initdiskless \
19         rc.sendmail rc.shutdown \
20         rc.subr remote rpc services shells \
21         sysctl.conf syslog.conf termcap.small
22
23 .if exists(${.CURDIR}/etc.${MACHINE}/ttys)
24 BIN1+=  etc.${MACHINE}/ttys
25 .elif exists(${.CURDIR}/etc.${MACHINE_ARCH}/ttys)
26 BIN1+=  etc.${MACHINE_ARCH}/ttys
27 .elif exists(${.CURDIR}/etc.${MACHINE_CPUARCH}/ttys)
28 BIN1+=  etc.${MACHINE_CPUARCH}/ttys
29 .else
30 .error etc.MACHINE/ttys missing
31 .endif
32
33 OPENBSMDIR=                     ${.CURDIR}/../contrib/openbsm
34 BSM_ETC_OPEN_FILES=             ${OPENBSMDIR}/etc/audit_class \
35                                 ${OPENBSMDIR}/etc/audit_event
36 BSM_ETC_RESTRICTED_FILES=       ${OPENBSMDIR}/etc/audit_control \
37                                 ${OPENBSMDIR}/etc/audit_user
38 BSM_ETC_EXEC_FILES=             ${OPENBSMDIR}/etc/audit_warn
39 BSM_ETC_DIR=                    ${DESTDIR}/etc/security
40
41 # NB: keep these sorted by MK_* knobs
42
43 .if ${MK_AMD} != "no"
44 BIN1+= amd.map
45 .endif
46
47 .if ${MK_APM} != "no"
48 BIN1+= apmd.conf
49 .endif
50
51 .if ${MK_BSNMP} != "no"
52 BIN1+= snmpd.config
53 .endif
54
55 .if ${MK_FREEBSD_UPDATE} != "no"
56 BIN1+= freebsd-update.conf
57 .endif
58
59 .if ${MK_LOCATE} != "no"
60 BIN1+=  ${.CURDIR}/../usr.bin/locate/locate/locate.rc
61 .endif
62
63 .if ${MK_LPR} != "no"
64 BIN1+=  hosts.lpd printcap
65 .endif
66
67 .if ${MK_MAIL} != "no"
68 BIN1+=  ${.CURDIR}/../usr.bin/mail/misc/mail.rc
69 .endif
70
71 .if ${MK_NTP} != "no"
72 BIN1+=  ntp.conf
73 .endif
74
75 .if ${MK_OPENSSH} != "no"
76 SSH=    ${.CURDIR}/../crypto/openssh/ssh_config \
77         ${.CURDIR}/../crypto/openssh/sshd_config \
78         ${.CURDIR}/../crypto/openssh/moduli
79 .endif
80 .if ${MK_OPENSSL} != "no"
81 SSL=    ${.CURDIR}/../crypto/openssl/apps/openssl.cnf
82 .endif
83
84 .if ${MK_NS_CACHING} != "no"
85 BIN1+= nscd.conf
86 .endif
87
88 .if ${MK_PORTSNAP} != "no"
89 BIN1+= portsnap.conf
90 .endif
91
92 .if ${MK_PF} != "no"
93 BIN1+= pf.os
94 .endif
95
96 .if ${MK_TCSH} != "no"
97 BIN1+= csh.cshrc csh.login csh.logout
98 .endif
99
100 .if ${MK_WIRELESS} != "no"
101 BIN1+= regdomain.xml
102 .endif
103
104 # -rwxr-xr-x root:wheel, for the new cron root:wheel
105 BIN2=   netstart pccard_ether rc.suspend rc.resume
106
107 MTREE=  BSD.include.dist BSD.root.dist BSD.usr.dist BSD.var.dist
108 .if ${MK_SENDMAIL} != "no"
109 MTREE+= BSD.sendmail.dist
110 .endif
111 .if ${MK_BIND} != "no"
112 MTREE+= BIND.chroot.dist
113 .if ${MK_BIND_LIBS} != "no"
114 MTREE+= BIND.include.dist
115 .endif
116 .endif
117
118 PPPCNF= ppp.conf
119
120 .if ${MK_SENDMAIL} == "no"
121 ETCMAIL=mailer.conf aliases
122 .else
123 ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
124         mailertable.sample aliases
125 .endif
126
127 # Special top level files for FreeBSD
128 FREEBSD=COPYRIGHT
129
130 afterinstall:
131 .if ${MK_MAN} != "no"
132         ${_+_}cd ${.CURDIR}/../share/man; ${MAKE} makedb
133 .endif
134
135 distribute:
136         ${_+_}cd ${.CURDIR} ; ${MAKE} install DESTDIR=${DISTDIR}/${DISTRIBUTION}
137         ${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
138
139 .include <bsd.endian.mk>
140 .if ${TARGET_ENDIANNESS} == "1234"
141 CAP_MKDB_ENDIAN?= -l
142 PWD_MKDB_ENDIAN?= -L
143 .elif ${TARGET_ENDIANNESS} == "4321"
144 CAP_MKDB_ENDIAN?= -b
145 PWD_MKDB_ENDIAN?= -B
146 .else
147 CAP_MKDB_ENDIAN?=
148 PWD_MKDB_ENDIAN?=
149 .endif
150
151 distribution:
152 .if !defined(DESTDIR)
153         @echo "set DESTDIR before running \"make ${.TARGET}\""
154         @false
155 .endif
156         cd ${.CURDIR}; \
157             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
158                 ${BIN1} ${DESTDIR}/etc; \
159             cap_mkdb ${CAP_MKDB_ENDIAN} ${DESTDIR}/etc/login.conf; \
160             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 \
161                 ${BIN2} ${DESTDIR}/etc; \
162             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
163                 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc;
164 .if ${MK_AT} == "no"
165         sed -i "" -e 's;.*/usr/libexec/atrun;#&;' ${DESTDIR}/etc/crontab
166 .endif
167 .if ${MK_TCSH} == "no"
168         sed -i "" -e 's;/bin/csh;/bin/sh;' ${DESTDIR}/etc/master.passwd
169 .endif
170         pwd_mkdb ${PWD_MKDB_ENDIAN} -i -p -d ${DESTDIR}/etc \
171             ${DESTDIR}/etc/master.passwd
172 .if ${MK_BLUETOOTH} != "no"
173         ${_+_}cd ${.CURDIR}/bluetooth; ${MAKE} install
174 .endif
175         ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install
176         ${_+_}cd ${.CURDIR}/devd; ${MAKE} install
177         ${_+_}cd ${.CURDIR}/gss; ${MAKE} install
178         ${_+_}cd ${.CURDIR}/periodic; ${MAKE} install
179         ${_+_}cd ${.CURDIR}/rc.d; ${MAKE} install
180         ${_+_}cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall
181         ${_+_}cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
182         ${_+_}cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
183         ${_+_}cd ${.CURDIR}/pam.d; ${MAKE} install
184         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0444 \
185             ${BSM_ETC_OPEN_FILES} ${BSM_ETC_DIR}
186         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0600 \
187             ${BSM_ETC_RESTRICTED_FILES} ${BSM_ETC_DIR}
188         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0500 \
189             ${BSM_ETC_EXEC_FILES} ${BSM_ETC_DIR}
190 .if ${MK_BIND_MTREE} != "no"
191         @if [ ! -e ${DESTDIR}/etc/namedb ]; then \
192                 set -x; \
193                 ln -s ../var/named/etc/namedb ${DESTDIR}/etc/namedb; \
194         fi
195 .endif
196 .if ${MK_BIND_ETC} != "no"
197         ${_+_}cd ${.CURDIR}/namedb; ${MAKE} install
198 .endif
199 .if ${MK_SENDMAIL} != "no"
200         ${_+_}cd ${.CURDIR}/sendmail; ${MAKE} distribution
201 .endif
202 .if ${MK_OPENSSH} != "no"
203         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
204             ${SSH} ${DESTDIR}/etc/ssh
205 .endif
206 .if ${MK_OPENSSL} != "no"
207         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
208             ${SSL} ${DESTDIR}/etc/ssl
209 .endif
210 .if ${MK_KERBEROS} != "no"
211         cd ${.CURDIR}/root; \
212             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
213                 dot.k5login ${DESTDIR}/root/.k5login;
214 .endif
215         cd ${.CURDIR}/root; \
216             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
217                 dot.profile ${DESTDIR}/root/.profile; \
218             rm -f ${DESTDIR}/.profile; \
219             ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile
220 .if ${MK_TCSH} != "no"
221         cd ${.CURDIR}/root; \
222             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
223                 dot.cshrc ${DESTDIR}/root/.cshrc; \
224             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
225                 dot.login ${DESTDIR}/root/.login; \
226             rm -f ${DESTDIR}/.cshrc; \
227             ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc
228 .endif
229         cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
230             ${MTREE} ${DESTDIR}/etc/mtree
231 .if ${MK_PPP} != "no"
232         cd ${.CURDIR}/ppp; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
233             ${PPPCNF} ${DESTDIR}/etc/ppp
234 .endif
235 .if ${MK_MAIL} != "no"
236         cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
237             ${ETCMAIL} ${DESTDIR}/etc/mail
238         @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
239               ! -f ${DESTDIR}/etc/aliases ]; then \
240                 set -x; \
241                 ln -s mail/aliases ${DESTDIR}/etc/aliases; \
242         fi
243 .endif
244         ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
245             ${DESTDIR}/etc/dumpdates
246         ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
247             ${DESTDIR}/var/db/locate.database
248         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
249             ${DESTDIR}/var/crash
250         cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
251                 ${FREEBSD} ${DESTDIR}/
252 .if ${MK_BOOT} != "no"
253 .if exists(${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints)
254         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
255             ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \
256             ${DESTDIR}/boot/device.hints
257 .endif
258 .endif
259 .if ${MK_NIS} == "no"
260         sed -i "" -e 's/.*_compat:/# &/' -e 's/compat$$/files/' \
261                 ${DESTDIR}/etc/nsswitch.conf
262 .endif
263
264 distrib-dirs:
265         mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
266         mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
267         mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
268         mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
269                 -p ${DESTDIR}/usr/include
270 .if ${MK_BIND_LIBS} != "no"
271         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.include.dist \
272             -p ${DESTDIR}/usr/include
273 .endif
274 .if ${MK_BIND_MTREE} != "no"
275         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.chroot.dist \
276             -p ${DESTDIR}/var/named
277 .endif
278 .if ${MK_GROFF} != "no"
279         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.groff.dist -p ${DESTDIR}/usr
280 .endif
281 .if ${MK_SENDMAIL} != "no"
282         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
283 .endif
284         cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys
285         cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* .
286         cd ${DESTDIR}/usr/share/man/en.UTF-8; ln -sf ../man* .
287         cd ${DESTDIR}/usr/share/man; \
288         set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
289         while [ $$# -gt 0 ] ; \
290         do \
291                 rm -rf "$$1"; \
292                 ln -s "$$2" "$$1"; \
293                 shift; shift; \
294         done
295         cd ${DESTDIR}/usr/share/openssl/man; \
296         set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
297         while [ $$# -gt 0 ] ; \
298         do \
299                 rm -rf "$$1"; \
300                 ln -s "$$2" "$$1"; \
301                 shift; shift; \
302         done
303         cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ln -sf ../man* .
304         cd ${DESTDIR}/usr/share/nls; \
305         set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
306         while [ $$# -gt 0 ] ; \
307         do \
308                 rm -rf "$$1"; \
309                 ln -s "$$2" "$$1"; \
310                 shift; shift; \
311         done
312
313 etc-examples:
314         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
315             ${BIN1} ${BIN2} nsmb.conf opieaccess \
316             ${DESTDIR}/usr/share/examples/etc
317         ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install \
318             DESTDIR=${DESTDIR}/usr/share/examples
319
320 .include <bsd.prog.mk>