kernel: Move GPL'd kernel files to sys/gnu to have them all in one place.
[dragonfly.git] / etc / Makefile
blob2b97caaacfdbbf60a653a701a56a198f8276dd51
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 periodic.conf rc.conf uuids
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
65 PPPCNF= ppp.conf
67 ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
68 mailertable.sample aliases
70 # Special top level files for FreeBSD
71 FREEBSD=COPYRIGHT
73 # List of libraries in /usr/lib/compat that might have to be removed
74 # from /usr/lib.
75 COMPAT_LIBS != cd ${DESTDIR}/usr/lib/compat && find . -name '*.so.*'
77 # Use this directory as the source for new configuration files when upgrading
78 UPGRADE_SRCDIR?=${.CURDIR}
80 # Include file which contains obsolete files
81 .if exists(${DESTDIR}/etc/upgrade/Makefile_upgrade.inc)
82 .include "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
83 .endif
85 remove-obsolete-files:
86 @if [ -z "${TO_REMOVE}" ]; then \
87 echo "Please do a 'make installworld' first."; \
88 echo "See build(7) for further information."; \
89 exit 1; \
90 fi;
91 @echo "===> Remove now obsolete files"
92 @for item in ${TO_REMOVE:M*.info.gz}; do \
93 if [ -e ${DESTDIR}$${item} ]; then \
94 install-info --delete ${DESTDIR}$${item} \
95 /usr/share/info/dir; \
96 fi; \
97 done;
98 @for item in ${TO_REMOVE}; do \
99 if [ -e ${DESTDIR}$${item} -o -L ${DESTDIR}$${item} ]; then \
100 echo "${DESTDIR}$${item}"; \
101 chflags -Rf noschg "${DESTDIR}$${item}"; \
102 rm -rf "${DESTDIR}$${item}"; \
103 fi; \
104 done
106 preupgrade:
107 .if !defined(NO_SENDMAIL)
108 (pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
109 pw -V ${DESTDIR}/etc groupadd smmsp -g 25
110 (pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
111 pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
112 -c "Sendmail Submission User" \
113 -d /var/spool/clientmqueue -s /sbin/nologin
114 .endif
115 (pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
116 pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
117 -c "pflogd privsep user" \
118 -d /var/empty -s /sbin/nologin
119 (pw -V ${DESTDIR}/etc usershow _sdpd -q > /dev/null) || \
120 pw -V ${DESTDIR}/etc useradd _sdpd -u 70 \
121 -c "sdpd privsep user" \
122 -d /var/empty -s /sbin/nologin
123 (pw -V ${DESTDIR}/etc usershow _dhcp -q > /dev/null) || \
124 pw -V ${DESTDIR}/etc useradd _dhcp -u 77 \
125 -c "DHCP programs" \
126 -d /var/empty -s /sbin/nologin
127 (pw -V ${DESTDIR}/etc groupshow authpf -q > /dev/null) || \
128 pw -V ${DESTDIR}/etc groupadd authpf -g 63
129 (pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
130 pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
131 (pw -V ${DESTDIR}/etc groupshow _sdpd -q > /dev/null) || \
132 pw -V ${DESTDIR}/etc groupadd _sdpd -g 70
133 (pw -V ${DESTDIR}/etc groupshow _dhcp -q > /dev/null) || \
134 pw -V ${DESTDIR}/etc groupadd _dhcp -g 77
136 upgrade_etc: preupgrade remove-obsolete-files
137 # files that should be dirs (not possible with Makefile_upgrade.inc)
138 .for f in usr/include/dev/misc/ppi usr/share/initrd/sbin
139 [ -d ${DESTDIR}/${f} ] || rm -f ${DESTDIR}/${f}
140 .endfor
141 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
142 cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
143 .endif
144 cd ${UPGRADE_SRCDIR}; \
145 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
146 ${BINUPDATE} ${DESTDIR}/etc; \
147 cap_mkdb ${DESTDIR}/etc/login.conf; \
148 for f in ${BIN1}; do \
149 [ -e "${DESTDIR}/etc/$${f##*/}" ] || \
150 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
151 $$f ${DESTDIR}/etc; \
152 done; \
153 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
154 ${BIN2} ${DESTDIR}/etc;
155 cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
156 ${DEFAULTS} ${DESTDIR}/etc/defaults
157 cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
158 mkdir -p ${DESTDIR}/etc/rc.d
159 cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install
160 # "../share/termcap/make etc-termcap" expanded inline here:
161 ${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
162 # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
163 ${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
164 .if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
165 .if !defined(NO_SENDMAIL)
166 cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
167 .endif
168 .endif
169 .if !defined(NO_I4B)
170 cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
171 .endif
172 cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
173 ${MTREE} ${DESTDIR}/etc/mtree
174 cd ${UPGRADE_SRCDIR}/bluetooth; ${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 .if exists(${DESTDIR}/etc/settings.conf)
230 mv ${DESTDIR}/etc/settings.conf ${DESTDIR}/etc/pkg_radd.conf
231 .endif
232 for ext in a so.0; do \
233 f=${DESTDIR}/usr/lib/libpthread.$$ext; \
234 dest=$$(readlink "$$f"); \
235 case "$$dest" in \
236 libthread_xu.*|libc_r.*) \
237 ln -fs thread/$$dest $$f ;; \
238 esac; \
239 done
240 ldconfig -R
241 mkdir -p ${DESTDIR}/dev
243 # The existence of cleartext_pass_ok means pam config files are out of date.
244 @set - `fgrep cleartext_pass_ok ${DESTDIR}/etc/pam.d/*`; \
245 if [ $$# -gt 0 ] ; \
246 then \
247 echo "It appears your PAM configuration files need to be updated"; \
248 echo "This can be done by manually editing the files or:"; \
249 echo " cd ${UPGRADE_SRCDIR}/pam.d"; \
250 echo " make install"; \
253 distribution:
254 cd ${.CURDIR}; \
255 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
256 ${BINUPDATE} ${DESTDIR}/etc; \
257 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
258 ${BIN1} ${DESTDIR}/etc; \
259 cap_mkdb ${DESTDIR}/etc/login.conf; \
260 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
261 ${BIN2} ${DESTDIR}/etc; \
262 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
263 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
264 pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
265 cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
266 ${DEFAULTS} ${DESTDIR}/etc/defaults
267 cd ${.CURDIR}/pam.d; ${MAKE} install
268 cd ${.CURDIR}/bluetooth; ${MAKE} install
269 cd ${.CURDIR}/periodic; ${MAKE} install
270 cd ${.CURDIR}/rc.d; ${MAKE} install
271 cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
272 cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
273 cd ${.CURDIR}; \
274 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
275 Makefile.usr ${DESTDIR}/usr/Makefile
276 .if !defined(NO_I4B)
277 cd ${.CURDIR}/isdn; ${MAKE} install
278 .endif
279 .if !defined(NO_SENDMAIL)
280 cd ${.CURDIR}/sendmail; ${MAKE} obj
281 cd ${.CURDIR}/sendmail; ${MAKE} distribution
282 .endif
283 .for dir in ${DIRS}
284 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
285 cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
286 cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
287 .endif
288 .endfor
289 mkdir -p ${DESTDIR}/dev
290 cd ${.CURDIR}/root; \
291 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
292 dot.cshrc ${DESTDIR}/root/.cshrc; \
293 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
294 dot.klogin ${DESTDIR}/root/.klogin; \
295 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
296 dot.login ${DESTDIR}/root/.login; \
297 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
298 dot.profile ${DESTDIR}/root/.profile; \
299 rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
300 ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
301 ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
302 cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
303 ${MTREE} ${DESTDIR}/etc/mtree
304 cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
305 ${PPPCNF} ${DESTDIR}/etc/ppp
306 cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
307 ${ETCMAIL} ${DESTDIR}/etc/mail
308 @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
309 ! -f ${DESTDIR}/etc/aliases ]; then \
310 set -x; \
311 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
313 ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
314 ${DESTDIR}/etc/dumpdates
315 ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
316 ${DESTDIR}/var/db/locate.database
317 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
318 ${DESTDIR}/var/log/auth.log
319 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
320 ${DESTDIR}/var/log/cron
321 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
322 ${DESTDIR}/var/log/daemon
323 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
324 ${DESTDIR}/var/log/lpd-errs
325 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
326 ${DESTDIR}/var/log/maillog
327 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
328 ${DESTDIR}/var/log/lastlog
329 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
330 ${DESTDIR}/var/log/lastlogx
331 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
332 ${DESTDIR}/var/log/messages
333 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
334 ${DESTDIR}/var/log/security
335 ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
336 ${DESTDIR}/var/log/slip.log
337 ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
338 ${DESTDIR}/var/log/ppp.log
339 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
340 ${DESTDIR}/var/log/wtmp
341 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
342 ${DESTDIR}/var/log/wtmpx
343 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
344 ${DESTDIR}/var/run/utmp
345 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
346 ${DESTDIR}/var/run/utmpx
347 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
348 ${DESTDIR}/var/crash
349 cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
350 ${FREEBSD} ${DESTDIR}/
351 .if !defined(NOMAN)
352 cd ${.CURDIR}/../share/man; ${MAKE} makedb
353 .endif
355 distrib-dirs:
356 -set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
357 while [ $$# -gt 0 ] ; \
358 do \
359 for dir in /usr/share/locale \
360 /usr/share/nls \
361 /usr/local/share/nls; \
362 do \
363 test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
364 test -L "$$2" && rm -rf "$$2"; \
365 test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
366 done; \
367 shift; shift; \
368 done
369 mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
370 mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
371 mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
372 mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
373 -p ${DESTDIR}/usr/include
374 .if !defined(NO_SENDMAIL)
375 mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
376 .endif
377 cd ${DESTDIR}/; test -e sys || (rm -f sys; ${LN} -s usr/src/sys sys)
378 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
379 cd ${DESTDIR}/usr/share/man; \
380 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
381 while [ $$# -gt 0 ] ; \
382 do \
383 rm -rf "$$1"; \
384 ${LN} -s "$$2" "$$1"; \
385 shift; shift; \
386 done
387 cd ${DESTDIR}/usr/share/locale; \
388 set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
389 while [ $$# -gt 0 ] ; \
390 do \
391 rm -rf "$$1"; \
392 ${LN} -s "$$2" "$$1"; \
393 shift; shift; \
394 done
395 cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
396 cd ${DESTDIR}/usr/share/nls; \
397 set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
398 while [ $$# -gt 0 ] ; \
399 do \
400 rm -rf "$$1"; \
401 ${LN} -s "$$2" "$$1"; \
402 shift; shift; \
403 done
405 etc-examples:
406 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
407 ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
408 ${DESTDIR}/usr/share/examples/etc
409 cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
410 ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
412 .include <bsd.prog.mk>