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