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