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 $
5 .if
!defined
(NO_SENDMAIL
)
9 # Files that should be installed read-only (444)
11 BINUPDATE
= apmd.conf fbtab gettytab network.subr \
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
21 BINUPDATE
+=${.CURDIR
}/..
/usr.bin
/mail
/misc
/mail.rc \
22 ${.CURDIR
}/..
/usr.bin
/locate
/locate
/locate.rc
25 # Initial distribution files are installed read-write (644)
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 \
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
41 BIN1
+= ${.CURDIR
}/..
/gnu
/usr.bin
/man
/manpath
/manpath.config
44 .if exists
(${.CURDIR
}/..
/crypto
) && !defined
(NO_OPENSSL
)
45 .if
!defined
(NO_OPENSSH
)
46 DIRS
+= secure
/lib
/libssh \
50 DIRS
+= secure
/usr.bin
/openssl
53 # Files that should be installed read-only-executable (555) root:wheel
55 BIN2
= pccard_ether rc.firewall rc.suspend rc.resume
57 DEFAULTS
= rc.conf make.conf periodic.conf uuids
59 MTREE
= BSD.
include.
dist BSD.local.
dist BSD.root.
dist BSD.usr.
dist \
61 .if
!defined
(NO_SENDMAIL
)
62 MTREE
+= BSD.sendmail.
dist
65 NAMEDB
= PROTO.localhost.rev PROTO.localhost-v6.rev named.conf named.root \
66 make-localhost getroot README
70 ETCMAIL
=Makefile README mailer.conf access.sample virtusertable.sample \
71 mailertable.sample aliases
73 # Special top level files for FreeBSD
76 # List of libraries in /usr/lib/compat that might have to be removed
78 COMPAT_LIBS
!= cd
${DESTDIR}/usr
/lib
/compat
&& find .
-name
'*.so.*'
80 # Use this directory as the source for new configuration files when upgrading
81 UPGRADE_SRCDIR?
=${.CURDIR
}
84 cd
${.CURDIR
} ; ${MAKE} distribution DESTDIR
=${DISTDIR}/${DISTRIBUTION}
86 # Include file which contains obsolete files
87 .if exists
(${DESTDIR}/etc
/upgrade
/Makefile_upgrade.inc
)
88 .
include "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
90 @echo
"Please do a make installworld first. See build(7) for further"
94 remove-obsolete-files
:
95 @echo
"===> Remove now obsolete files"
96 @for item in
${TO_REMOVE
:M
*.
info.gz
}; do \
97 if
[ -e
${DESTDIR}$${item} ]; then \
98 install-info
--delete
${DESTDIR}$${item} \
99 /usr
/share
/info/dir; \
102 @for item in
${TO_REMOVE}; do \
103 if
[ -e
${DESTDIR}$${item} ]; then \
104 echo
"${DESTDIR}$${item}"; \
105 rm -rf
"${DESTDIR}$${item}"; \
108 @
rm -f
"${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
111 .if
!defined
(NO_SENDMAIL
)
112 (pw
-V
${DESTDIR}/etc groupshow smmsp
-q
> /dev
/null
) || \
113 pw
-V
${DESTDIR}/etc groupadd smmsp
-g
25
114 (pw
-V
${DESTDIR}/etc usershow smmsp
-q
> /dev
/null
) || \
115 pw
-V
${DESTDIR}/etc useradd smmsp
-u
25 \
116 -c
"Sendmail Submission User" \
117 -d
/var
/spool
/clientmqueue
-s
/sbin
/nologin
119 (pw
-V
${DESTDIR}/etc usershow _pflogd
-q
> /dev
/null
) || \
120 pw
-V
${DESTDIR}/etc useradd _pflogd
-u
64 \
121 -c
"pflogd privsep user" \
122 -d
/var
/empty
-s
/sbin
/nologin
123 (pw
-V
${DESTDIR}/etc usershow _sdpd
-q
> /dev
/null
) || \
124 pw
-V
${DESTDIR}/etc useradd _sdpd
-u
70 \
125 -c
"sdpd privsep user" \
126 -d
/var
/empty
-s
/sbin
/nologin
127 (pw
-V
${DESTDIR}/etc usershow _dhcp
-q
> /dev
/null
) || \
128 pw
-V
${DESTDIR}/etc useradd _dhcp
-u
77 \
130 -d
/var
/empty
-s
/sbin
/nologin
131 (pw
-V
${DESTDIR}/etc groupshow authpf
-q
> /dev
/null
) || \
132 pw
-V
${DESTDIR}/etc groupadd authpf
-g
63
133 (pw
-V
${DESTDIR}/etc groupshow _pflogd
-q
> /dev
/null
) || \
134 pw
-V
${DESTDIR}/etc groupadd _pflogd
-g
64
135 (pw
-V
${DESTDIR}/etc groupshow _sdpd
-q
> /dev
/null
) || \
136 pw
-V
${DESTDIR}/etc groupadd _sdpd
-g
70
137 (pw
-V
${DESTDIR}/etc groupshow _dhcp
-q
> /dev
/null
) || \
138 pw
-V
${DESTDIR}/etc groupadd _dhcp
-g
77
140 upgrade_etc
: preupgrade remove-obsolete-files
141 .if
!defined
(BINARY_UPGRADE
) # binary upgrade just copies these files
142 cd
${UPGRADE_SRCDIR}/..
/share
/mk
; ${MAKE} install
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
; \
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
170 cd
${UPGRADE_SRCDIR}/isdn
; ${MAKE} install
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}/dma
; ${MAKE} install
176 cd
${UPGRADE_SRCDIR}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 Makefile.usr
${DESTDIR}/usr
/Makefile
177 .if
!exists
(${DESTDIR}/etc
/pam.d
)
178 mkdir
-p
${DESTDIR}/etc
/pam.d
179 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 ${UPGRADE_SRCDIR}/pam.d
/README
${DESTDIR}/etc
/pam.d
180 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 ${UPGRADE_SRCDIR}/pam.d
/convert.sh
${DESTDIR}/etc
/pam.d
181 sh
${DESTDIR}/etc
/pam.d
/convert.sh
${DESTDIR}/etc
/pam.d
${DESTDIR}/etc
/pam.conf
183 .for pamconf in README convert.sh
184 .if
!exists
(${DESTDIR}/etc
/pam.d
/${pamconf})
185 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 ${UPGRADE_SRCDIR}/pam.d
/${pamconf} ${DESTDIR}/etc
/pam.d
189 # these removals must occur AFTER any pam conversion
190 csh
-c
"rm -f /usr/lib/pam_{cleartext_pass_ok,deny,opie,opieaccess,permit,radius,skey,ssh,tacplus,unix}.so"
192 .if
!defined
(BINARY_UPGRADE
) # binary upgrade just copies these files
193 cd
${UPGRADE_SRCDIR}/..
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
194 ${FREEBSD} ${DESTDIR}/
196 rm -f
${DESTDIR}/usr
/include/machine
/ioctl_meteor.h
197 rm -f
${DESTDIR}/usr
/include/machine
/ioctl_bt848.h
198 ${LN} -s
"../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr
/include/machine
/ioctl_bt848.h
199 ${LN} -s
"../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr
/include/machine
/ioctl_meteor.h
200 .if exists
(${DESTDIR}/usr
/lib
/gcc2
)
201 ldconfig
-m
${DESTDIR}/usr
/lib
/gcc2
203 .for lib in
${COMPAT_LIBS
:M
*.so.
*}
204 .if exists
(${DESTDIR}/usr
/lib
/${lib})
205 chflags noschg
${DESTDIR}/usr
/lib
/${lib}
206 rm -f
${DESTDIR}/usr
/lib
/${lib}
209 .if
!defined
(NO_OPENSSH
)
210 cd
${.CURDIR
}/..
/secure
/lib
/libssh
; ${MAKE} -f Makefile.etc obj
211 cd
${.CURDIR
}/..
/secure
/lib
/libssh
; ${MAKE} -f Makefile.etc
install
213 .if exists
(${DESTDIR}/boot
)
214 .if exists
(${DESTDIR}/kernel
)
215 chflags noschg
${DESTDIR}/kernel
216 mv
${DESTDIR}/kernel
${DESTDIR}/boot
/kernel
217 chflags schg
${DESTDIR}/boot
/kernel
219 .if exists
(${DESTDIR}/modules
)
220 mv
${DESTDIR}/modules
${DESTDIR}/boot
/modules
221 rm -rf
${DESTDIR}/boot
/modules
/modules
223 .if exists
(${DESTDIR}/kernel.old
)
224 mv
${DESTDIR}/kernel.old
${DESTDIR}/boot
/kernel.old
226 .if exists
(${DESTDIR}/modules.old
)
227 mv
${DESTDIR}/modules.old
${DESTDIR}/boot
/modules.old
228 rm -rf
${DESTDIR}/boot
/modules.old
/modules.old
232 .if
!defined
(BINARY_UPGRADE
) # binary upgrade just copies these nodes
233 .if
!defined
(NO_MAKEDEV
)
234 cd
${UPGRADE_SRCDIR}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
235 MAKEDEV.local MAKEDEV
${DESTDIR}/dev
236 .if
!defined
(NO_MAKEDEV_RUN
)
237 cd
${DESTDIR}/dev
; sh MAKEDEV upgrade
244 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
245 ${BINUPDATE} ${DESTDIR}/etc
; \
246 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
247 ${BIN1} ${DESTDIR}/etc
; \
248 cap_mkdb
${DESTDIR}/etc
/login.conf
; \
249 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
250 ${BIN2} ${DESTDIR}/etc
; \
251 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 \
252 master.passwd nsmb.conf opieaccess
${DESTDIR}/etc
; \
253 pwd_mkdb
-p
-d
${DESTDIR}/etc
${DESTDIR}/etc
/master.passwd
254 cd
${.CURDIR
}/defaults
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
255 ${DEFAULTS} ${DESTDIR}/etc
/defaults
256 cd
${.CURDIR
}/pam.d
; ${MAKE} install
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
264 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
265 Makefile.usr
${DESTDIR}/usr
/Makefile
267 cd
${.CURDIR
}/isdn
; ${MAKE} install
269 .if
!defined
(NO_SENDMAIL
)
270 cd
${.CURDIR
}/sendmail
; ${MAKE} obj
271 cd
${.CURDIR
}/sendmail
; ${MAKE} distribution
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
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
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 \
309 ${LN} -s mail
/aliases
${DESTDIR}/etc
/aliases
; \
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 \
339 cd
${.CURDIR
}/..
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
340 ${FREEBSD} ${DESTDIR}/
342 cd
${.CURDIR
}/..
/share
/man
; ${MAKE} makedb
346 -set
- `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
347 while
[ $$# -gt 0 ] ; \
349 for
dir in
/usr
/share
/locale \
351 /usr
/local
/share
/nls
; \
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"; \
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}/
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 ] ; \
375 ${LN} -s
"$$2" "$$1"; \
378 cd
${DESTDIR}/usr
/share
/locale
; \
379 set
- `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
380 while
[ $$# -gt 0 ] ; \
383 ${LN} -s
"$$2" "$$1"; \
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 ] ; \
392 ${LN} -s
"$$2" "$$1"; \
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
403 .
include <bsd.prog.mk
>