Introduce WANT_NETGRAPH7 make variable.
[dragonfly.git] / etc / Makefile
blob8c274bc2a09f2347d7c1c2b5164ceb94b8111987
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 $
4 .if !defined(NO_SENDMAIL)
5 SUBDIR= sendmail
6 .endif
8 # Files that should be installed read-only (444)
10 BINUPDATE= apmd.conf fbtab gettytab network.subr \
11 pf.os \
12 protocols \
13 rc rc.firewall6 \
14 rc.sendmail rc.shutdown \
15 rc.subr rpc services \
16 etc.${MACHINE_ARCH}/disktab
17 .if defined(BINARY_UPGRADE) # location of these depends on upgrade method
18 BINUPDATE+=mail.rc locate.rc
19 .else
20 BINUPDATE+=${.CURDIR}/../usr.bin/mail/misc/mail.rc \
21 ${.CURDIR}/../usr.bin/locate/locate/locate.rc
22 .endif
24 # Initial distribution files are installed read-write (644)
26 BIN1= amd.map auth.conf \
27 crontab csh.cshrc csh.login csh.logout \
28 devd.conf devtab dhclient.conf dm.conf dntpd.conf \
29 ftpusers group \
30 hosts hosts.allow hosts.equiv hosts.lpd \
31 inetd.conf login.access login.conf \
32 motd modems netconfig networks newsyslog.conf \
33 nscd.conf pf.conf phones printcap profile \
34 regdomain.xml remote sensorsd.conf \
35 shells sysctl.conf syslog.conf usbd.conf \
36 etc.${MACHINE_ARCH}/ttys
37 .if defined(BINARY_UPGRADE) # location of these depends on upgrade method
38 BIN1+= manpath.config
39 .else
40 BIN1+= ${.CURDIR}/../gnu/usr.bin/man/manpath/manpath.config
41 .endif
43 .if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
44 .if !defined(NO_OPENSSH)
45 DIRS+= secure/lib/libssh \
46 secure/usr.bin/ssh \
47 secure/usr.sbin/sshd
48 .endif
49 DIRS+= secure/usr.bin/openssl
50 .endif
51 DIRS+= libexec/dma
53 # Files that should be installed read-only-executable (555) root:wheel
55 BIN2= pccard_ether rc.firewall rc.suspend rc.resume
57 DEFAULTS= compilers.conf devfs.conf make.conf mkinitrd.conf periodic.conf \
58 rc.conf uuids
60 MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
61 BSD.var.dist
62 .if !defined(NO_SENDMAIL)
63 MTREE+= BSD.sendmail.dist
64 .endif
66 PPPCNF= ppp.conf
68 ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
69 mailertable.sample aliases
71 # Special top level files for FreeBSD
72 FREEBSD=COPYRIGHT
74 # List of libraries in /usr/lib/compat that might have to be removed
75 # from /usr/lib.
76 COMPAT_LIBS != cd ${DESTDIR}/usr/lib/compat && find . -name '*.so.*'
78 # Use this directory as the source for new configuration files when upgrading
79 UPGRADE_SRCDIR?=${.CURDIR}
81 # Include file which contains obsolete files
82 .if exists(${DESTDIR}/etc/upgrade/Makefile_upgrade.inc)
83 .include "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
84 .endif
86 remove-obsolete-files:
87 @if [ -z "${TO_REMOVE}" ]; then \
88 echo "Please do a 'make installworld' first."; \
89 echo "See build(7) for further information."; \
90 exit 1; \
91 fi;
92 @echo "===> Remove now obsolete files"
93 @for item in ${TO_REMOVE:M*.info.gz}; do \
94 if [ -e ${DESTDIR}$${item} ]; then \
95 install-info --delete ${DESTDIR}$${item} \
96 /usr/share/info/dir; \
97 fi; \
98 done;
99 @for item in ${TO_REMOVE}; do \
100 if [ -e ${DESTDIR}$${item} -o -L ${DESTDIR}$${item} ]; then \
101 echo "${DESTDIR}$${item}"; \
102 chflags -Rf noschg "${DESTDIR}$${item}"; \
103 rm -rf "${DESTDIR}$${item}"; \
104 fi; \
105 done
107 preupgrade:
108 (pw -V ${DESTDIR}/etc usershow mail -q > /dev/null) || \
109 pw -V ${DESTDIR}/etc useradd mail -u 6 -g 6 \
110 -c "Mail user" \
111 -d /nonexistent -s /sbin/nologin
112 .if !defined(NO_SENDMAIL)
113 (pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
114 pw -V ${DESTDIR}/etc groupadd smmsp -g 25
115 (pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
116 pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
117 -c "Sendmail Submission User" \
118 -d /var/spool/clientmqueue -s /sbin/nologin
119 .endif
120 (pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
121 pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
122 -c "pflogd privsep user" \
123 -d /var/empty -s /sbin/nologin
124 (pw -V ${DESTDIR}/etc usershow _sdpd -q > /dev/null) || \
125 pw -V ${DESTDIR}/etc useradd _sdpd -u 70 \
126 -c "sdpd privsep user" \
127 -d /var/empty -s /sbin/nologin
128 (pw -V ${DESTDIR}/etc usershow _dhcp -q > /dev/null) || \
129 pw -V ${DESTDIR}/etc useradd _dhcp -u 77 \
130 -c "DHCP programs" \
131 -d /var/empty -s /sbin/nologin
132 (pw -V ${DESTDIR}/etc groupshow authpf -q > /dev/null) || \
133 pw -V ${DESTDIR}/etc groupadd authpf -g 63
134 (pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
135 pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
136 (pw -V ${DESTDIR}/etc groupshow _sdpd -q > /dev/null) || \
137 pw -V ${DESTDIR}/etc groupadd _sdpd -g 70
138 (pw -V ${DESTDIR}/etc groupshow _dhcp -q > /dev/null) || \
139 pw -V ${DESTDIR}/etc groupadd _dhcp -g 77
141 upgrade_etc: preupgrade remove-obsolete-files
142 # files that should be dirs (not possible with Makefile_upgrade.inc)
143 .for f in usr/include/dev/misc/ppi usr/share/initrd/sbin
144 [ -d ${DESTDIR}/${f} ] || rm -f ${DESTDIR}/${f}
145 .endfor
146 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
147 cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
148 .endif
149 cd ${UPGRADE_SRCDIR}; \
150 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
151 ${BINUPDATE} ${DESTDIR}/etc; \
152 cap_mkdb ${DESTDIR}/etc/login.conf; \
153 for f in ${BIN1}; do \
154 [ -e "${DESTDIR}/etc/$${f##*/}" ] || \
155 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
156 $$f ${DESTDIR}/etc; \
157 done; \
158 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
159 ${BIN2} ${DESTDIR}/etc;
160 cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
161 ${DEFAULTS} ${DESTDIR}/etc/defaults
162 cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
163 mkdir -p ${DESTDIR}/etc/rc.d
164 cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install
165 # "../share/termcap/make etc-termcap" expanded inline here:
166 ${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
167 # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
168 ${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
169 .if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
170 .if !defined(NO_SENDMAIL)
171 cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
172 .endif
173 .endif
174 .if !defined(NO_I4B)
175 cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
176 .endif
177 cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
178 ${MTREE} ${DESTDIR}/etc/mtree
179 cd ${UPGRADE_SRCDIR}/bluetooth; ${MAKE} install
180 cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 Makefile.usr ${DESTDIR}/usr/Makefile
181 .if !exists(${DESTDIR}/etc/pam.d)
182 mkdir -p ${DESTDIR}/etc/pam.d
183 cd ${UPGRADE_SRCDIR}/pam.d; ${MAKE} install
184 sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
185 .else
186 .for pamconf in README convert.sh atrun cron passwd rsh su system
187 .if !exists(${DESTDIR}/etc/pam.d/${pamconf})
188 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
189 .endif
190 .endfor
191 .endif
192 # these removals must occur AFTER any pam conversion
193 csh -c "rm -f /usr/lib/pam_{cleartext_pass_ok,deny,opie,opieaccess,permit,radius,skey,ssh,tacplus,unix}.so"
194 rm -f /etc/pam.conf
195 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
196 cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
197 ${FREEBSD} ${DESTDIR}/
198 .endif
199 rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
200 rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
201 ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
202 ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
203 .if exists(${DESTDIR}/usr/lib/gcc2)
204 ldconfig -m ${DESTDIR}/usr/lib/gcc2
205 .endif
206 .for lib in ${COMPAT_LIBS:M*.so.*}
207 .if exists(${DESTDIR}/usr/lib/${lib})
208 chflags noschg ${DESTDIR}/usr/lib/${lib}
209 rm -f ${DESTDIR}/usr/lib/${lib}
210 .endif
211 .endfor
212 .if !defined(NO_OPENSSH)
213 cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc obj
214 cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc install
215 .endif
216 .if exists(${DESTDIR}/boot)
217 .if exists(${DESTDIR}/kernel)
218 chflags noschg ${DESTDIR}/kernel
219 mv ${DESTDIR}/kernel ${DESTDIR}/boot/kernel
220 chflags schg ${DESTDIR}/boot/kernel
221 .endif
222 .if exists(${DESTDIR}/modules)
223 mv ${DESTDIR}/modules ${DESTDIR}/boot/modules
224 rm -rf ${DESTDIR}/boot/modules/modules
225 .endif
226 .if exists(${DESTDIR}/kernel.old)
227 mv ${DESTDIR}/kernel.old ${DESTDIR}/boot/kernel.old
228 .endif
229 .if exists(${DESTDIR}/modules.old)
230 mv ${DESTDIR}/modules.old ${DESTDIR}/boot/modules.old
231 rm -rf ${DESTDIR}/boot/modules.old/modules.old
232 .endif
233 .endif
234 .if exists(${DESTDIR}/etc/settings.conf)
235 mv ${DESTDIR}/etc/settings.conf ${DESTDIR}/etc/pkg_radd.conf
236 .endif
237 for ext in a so.0; do \
238 f=${DESTDIR}/usr/lib/libpthread.$$ext; \
239 dest=$$(readlink "$$f"); \
240 case "$$dest" in \
241 libthread_xu.*|libc_r.*) \
242 ln -fs thread/$$dest $$f ;; \
243 esac; \
244 done
245 ldconfig -R
246 mkdir -p ${DESTDIR}/dev
248 # The existence of cleartext_pass_ok means pam config files are out of date.
249 @set - `fgrep cleartext_pass_ok ${DESTDIR}/etc/pam.d/*`; \
250 if [ $$# -gt 0 ] ; \
251 then \
252 echo "It appears your PAM configuration files need to be updated"; \
253 echo "This can be done by manually editing the files or:"; \
254 echo " cd ${UPGRADE_SRCDIR}/pam.d"; \
255 echo " make install"; \
258 distribution:
259 cd ${.CURDIR}; \
260 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
261 ${BINUPDATE} ${DESTDIR}/etc; \
262 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
263 ${BIN1} ${DESTDIR}/etc; \
264 cap_mkdb ${DESTDIR}/etc/login.conf; \
265 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
266 ${BIN2} ${DESTDIR}/etc; \
267 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
268 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
269 pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
270 cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
271 ${DEFAULTS} ${DESTDIR}/etc/defaults
272 cd ${.CURDIR}/pam.d; ${MAKE} install
273 cd ${.CURDIR}/bluetooth; ${MAKE} install
274 cd ${.CURDIR}/periodic; ${MAKE} install
275 cd ${.CURDIR}/rc.d; ${MAKE} install
276 cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
277 cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
278 cd ${.CURDIR}; \
279 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
280 Makefile.usr ${DESTDIR}/usr/Makefile
281 .if !defined(NO_I4B)
282 cd ${.CURDIR}/isdn; ${MAKE} install
283 .endif
284 .if !defined(NO_SENDMAIL)
285 cd ${.CURDIR}/sendmail; ${MAKE} obj
286 cd ${.CURDIR}/sendmail; ${MAKE} distribution
287 .endif
288 .for dir in ${DIRS}
289 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
290 cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
291 cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
292 .endif
293 .endfor
294 mkdir -p ${DESTDIR}/dev
295 cd ${.CURDIR}/root; \
296 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
297 dot.cshrc ${DESTDIR}/root/.cshrc; \
298 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
299 dot.klogin ${DESTDIR}/root/.klogin; \
300 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
301 dot.login ${DESTDIR}/root/.login; \
302 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
303 dot.profile ${DESTDIR}/root/.profile; \
304 rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
305 ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
306 ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
307 cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
308 ${MTREE} ${DESTDIR}/etc/mtree
309 cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
310 ${PPPCNF} ${DESTDIR}/etc/ppp
311 cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
312 ${ETCMAIL} ${DESTDIR}/etc/mail
313 @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
314 ! -f ${DESTDIR}/etc/aliases ]; then \
315 set -x; \
316 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
318 ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
319 ${DESTDIR}/etc/dumpdates
320 ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
321 ${DESTDIR}/var/db/locate.database
322 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
323 ${DESTDIR}/var/log/auth.log
324 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
325 ${DESTDIR}/var/log/cron
326 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
327 ${DESTDIR}/var/log/daemon
328 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
329 ${DESTDIR}/var/log/lpd-errs
330 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
331 ${DESTDIR}/var/log/maillog
332 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
333 ${DESTDIR}/var/log/lastlog
334 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
335 ${DESTDIR}/var/log/lastlogx
336 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
337 ${DESTDIR}/var/log/messages
338 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
339 ${DESTDIR}/var/log/security
340 ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
341 ${DESTDIR}/var/log/slip.log
342 ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
343 ${DESTDIR}/var/log/ppp.log
344 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
345 ${DESTDIR}/var/log/wtmp
346 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
347 ${DESTDIR}/var/log/wtmpx
348 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
349 ${DESTDIR}/var/run/utmp
350 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
351 ${DESTDIR}/var/run/utmpx
352 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
353 ${DESTDIR}/var/crash
354 cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
355 ${FREEBSD} ${DESTDIR}/
356 ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
357 ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
358 .if !defined(NOMAN)
359 cd ${.CURDIR}/../share/man; ${MAKE} makedb
360 .endif
362 distrib-dirs:
363 -set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
364 while [ $$# -gt 0 ] ; \
365 do \
366 for dir in /usr/share/locale \
367 /usr/share/nls \
368 /usr/local/share/nls; \
369 do \
370 test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
371 test -L "$$2" && rm -rf "$$2"; \
372 test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
373 done; \
374 shift; shift; \
375 done
376 mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
377 mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
378 mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
379 mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
380 -p ${DESTDIR}/usr/include
381 .if !defined(NO_SENDMAIL)
382 mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
383 .endif
384 cd ${DESTDIR}/; test -e sys || (rm -f sys; ${LN} -s usr/src/sys sys)
385 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
386 cd ${DESTDIR}/usr/share/man; \
387 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.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/locale; \
395 set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
396 while [ $$# -gt 0 ] ; \
397 do \
398 rm -rf "$$1"; \
399 ${LN} -s "$$2" "$$1"; \
400 shift; shift; \
401 done
402 cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
403 cd ${DESTDIR}/usr/share/nls; \
404 set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
405 while [ $$# -gt 0 ] ; \
406 do \
407 rm -rf "$$1"; \
408 ${LN} -s "$$2" "$$1"; \
409 shift; shift; \
410 done
412 etc-examples:
413 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
414 ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
415 ${DESTDIR}/usr/share/examples/etc
416 cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
417 ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
419 .include <bsd.prog.mk>