Change /etc/mail/README to update with each make upgrade
[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
4 .if !defined(NO_SENDMAIL)
5 SUBDIR= sendmail
6 .endif
7
8 # Files that should be installed read-only (444)
9 #
10 BINUPDATE= apmd.conf devd.conf fbtab gettytab network.subr \
11         pf.os \
12         protocols \
13         rc rc.firewall6 \
14         rc.sendmail rc.shutdown \
15         rc.subr rpc \
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
23
24 # Initial distribution files are installed read-write (644)
25 #
26 BIN1=   amd.map auth.conf \
27         crontab csh.cshrc csh.login csh.logout \
28         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 services \
35         shells sysctl.conf syslog.conf \
36         hostapd.conf wpa_supplicant.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 devfs.conf make.conf mkinitrd.conf periodic.conf \
58           pfi.conf rc.conf uuids
59
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
65
66 PPPCNF= ppp.conf
67
68 ETCMAIL=Makefile mailer.conf access.sample virtusertable.sample \
69         mailertable.sample aliases
70
71 # List of libraries in /usr/lib/compat that might have to be removed
72 # from /usr/lib.
73 .if ${MACHINE_ARCH} == "i386"
74 COMPAT_LIBS != cd ${DESTDIR}/usr/lib/compat && find . -name '*.so.*'
75 .endif
76
77 # Use this directory as the source for new configuration files when upgrading
78 UPGRADE_SRCDIR?=${.CURDIR}
79
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
84
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                 /usr/bin/false; \
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
105
106 preupgrade:
107         (pw -V ${DESTDIR}/etc usershow mail -q > /dev/null) || \
108                 pw -V ${DESTDIR}/etc useradd mail -u 6 -g 6 \
109                    -c "Mail user" \
110                    -d /nonexistent -s /sbin/nologin
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
118 .endif
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 \
129                    -c "DHCP programs" \
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
139
140 upgrade_check:
141         @if [ -n "`grep '^sendmail.*/usr/libexec/sendmail/sendmail' ${DESTDIR}/etc/mail/mailer.conf`" ]; then \
142                 echo "==================================================================" ; \
143                 echo "=  sendmail is being removed from the base system." ; \
144                 echo "=  /etc/mail/mailer.conf is still configured to use sendmail." ; \
145                 echo "=  See http://www.dragonflybsd.com/docs/docs/newhandbook/mta/" ; \
146                 echo "=  Quick: echo > ${DESTDIR}/etc/mail/mailer.conf, then make upgrade " ; \
147                 echo "=  then cp ${DESTDIR}/etc/mail/mailer.conf.dma ${DESTDIR}/etc/mail/mailer.conf" ; \
148                 echo "==================================================================" ; \
149                 /usr/bin/false ; \
150         fi
151
152 upgrade_etc:    upgrade_check preupgrade remove-obsolete-files
153         # files that should be dirs (not possible with Makefile_upgrade.inc)
154 .for f in usr/include/dev/misc/ppi usr/share/initrd/sbin
155         [ -d ${DESTDIR}/${f} ] || rm -f ${DESTDIR}/${f}
156 .endfor
157 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
158         cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
159 .endif
160         cd ${UPGRADE_SRCDIR}; \
161             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
162                 ${BINUPDATE} ${DESTDIR}/etc; \
163             cap_mkdb ${DESTDIR}/etc/login.conf; \
164             for f in ${BIN1}; do \
165                 [ -e "${DESTDIR}/etc/$${f##*/}" ] || \
166                     ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
167                         $$f ${DESTDIR}/etc; \
168             done; \
169             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
170                 ${BIN2} ${DESTDIR}/etc;
171         cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
172             ${DEFAULTS} ${DESTDIR}/etc/defaults
173         cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
174         mkdir -p ${DESTDIR}/etc/rc.d
175         cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install 
176         cd ${UPGRADE_SRCDIR}/devd; ${MAKE} install
177         # "../share/termcap/make etc-termcap" expanded inline here:
178         ${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
179         # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
180         ${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
181 .if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
182 .if !defined(NO_SENDMAIL)
183         cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
184 .endif
185 .endif
186         cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
187             ${MTREE} ${DESTDIR}/etc/mtree
188         cd ${UPGRADE_SRCDIR}/bluetooth; ${MAKE} install
189         cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 Makefile.usr ${DESTDIR}/usr/Makefile
190 .if !exists(${DESTDIR}/etc/pam.d)
191         mkdir -p ${DESTDIR}/etc/pam.d
192         cd ${UPGRADE_SRCDIR}/pam.d; ${MAKE} install
193         sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
194 .else
195 .for pamconf in README convert.sh atrun cron passwd rsh su system
196 .if !exists(${DESTDIR}/etc/pam.d/${pamconf})
197         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
198 .endif
199 .endfor
200 .endif
201         # these removals must occur AFTER any pam conversion
202         csh -c "rm -f /usr/lib/pam_{cleartext_pass_ok,deny,opie,opieaccess,permit,radius,skey,ssh,tacplus,unix}.so"
203         rm -f /etc/pam.conf
204 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
205         cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
206             COPYRIGHT ${DESTDIR}/
207 .endif
208         rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
209         rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
210         rm -f ${DESTDIR}/usr/include/sys/ata.h
211         ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
212         ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
213         ${LN} -s nata.h ${DESTDIR}/usr/include/sys/ata.h
214 .if exists(${DESTDIR}/usr/lib/gcc2)
215         ldconfig -m ${DESTDIR}/usr/lib/gcc2
216 .endif
217 .for lib in ${COMPAT_LIBS:M*.so.*}
218 .if exists(${DESTDIR}/usr/lib/${lib})
219         chflags noschg ${DESTDIR}/usr/lib/${lib}
220         rm -f ${DESTDIR}/usr/lib/${lib}
221 .endif
222 .endfor
223 .if !defined(NO_OPENSSH)
224         cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc obj
225         cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc install
226 .endif
227 .if exists(${DESTDIR}/boot)
228 .if exists(${DESTDIR}/kernel)
229         chflags noschg ${DESTDIR}/kernel
230         mv ${DESTDIR}/kernel ${DESTDIR}/boot/kernel
231         chflags schg ${DESTDIR}/boot/kernel
232 .endif
233 .if exists(${DESTDIR}/modules)
234         mv ${DESTDIR}/modules ${DESTDIR}/boot/modules
235         rm -rf ${DESTDIR}/boot/modules/modules
236 .endif
237 .if exists(${DESTDIR}/kernel.old)
238         mv ${DESTDIR}/kernel.old ${DESTDIR}/boot/kernel.old
239 .endif
240 .if exists(${DESTDIR}/modules.old)
241         mv ${DESTDIR}/modules.old ${DESTDIR}/boot/modules.old
242         rm -rf ${DESTDIR}/boot/modules.old/modules.old
243 .endif
244 .endif
245 .if exists(${DESTDIR}/etc/settings.conf)
246         mv ${DESTDIR}/etc/settings.conf ${DESTDIR}/etc/pkg_radd.conf
247 .endif
248         for ext in a so.0; do \
249                 f=${DESTDIR}/usr/lib/libpthread.$$ext; \
250                 dest=$$(readlink "$$f"); \
251                 case "$$dest" in \
252                 libthread_xu.*|libc_r.*) \
253                         ln -fs thread/$$dest $$f ;; \
254                 esac; \
255         done
256         ldconfig -R
257         mkdir -p ${DESTDIR}/dev
258
259 # The existence of cleartext_pass_ok means pam config files are out of date.
260         @set - `fgrep cleartext_pass_ok ${DESTDIR}/etc/pam.d/*`; \
261         if [ $$# -gt 0 ] ; \
262         then \
263                 echo "It appears your PAM configuration files need to be updated"; \
264                 echo "This can be done by manually editing the files or:"; \
265                 echo "  cd ${UPGRADE_SRCDIR}/pam.d"; \
266                 echo "  make install"; \
267         fi
268
269 distribution:
270         cd ${.CURDIR}; \
271             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
272                 ${BINUPDATE} ${DESTDIR}/etc; \
273             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
274                 ${BIN1} ${DESTDIR}/etc; \
275             cap_mkdb ${DESTDIR}/etc/login.conf; \
276             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
277                 ${BIN2} ${DESTDIR}/etc; \
278             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
279                 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
280             pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
281         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
282             ${DEFAULTS} ${DESTDIR}/etc/defaults
283         cd ${.CURDIR}/pam.d; ${MAKE} install
284         cd ${.CURDIR}/bluetooth; ${MAKE} install
285         cd ${.CURDIR}/periodic; ${MAKE} install
286         cd ${.CURDIR}/rc.d; ${MAKE} install 
287         cd ${.CURDIR}/devd; ${MAKE} install
288         cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
289         cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
290         cd ${.CURDIR}; \
291             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
292                 Makefile.usr ${DESTDIR}/usr/Makefile
293 .if !defined(NO_SENDMAIL)
294         cd ${.CURDIR}/sendmail; ${MAKE} obj
295         cd ${.CURDIR}/sendmail; ${MAKE} distribution
296 .endif
297 .for dir in ${DIRS}
298 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
299         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
300         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
301 .endif
302 .endfor
303         mkdir -p ${DESTDIR}/dev
304         cd ${.CURDIR}/root; \
305             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
306                 dot.cshrc ${DESTDIR}/root/.cshrc; \
307             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
308                 dot.klogin ${DESTDIR}/root/.klogin; \
309             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
310                 dot.login ${DESTDIR}/root/.login; \
311             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
312                 dot.profile ${DESTDIR}/root/.profile; \
313             rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
314         cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
315             ${MTREE} ${DESTDIR}/etc/mtree
316         cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
317             ${PPPCNF} ${DESTDIR}/etc/ppp
318         cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
319             ${ETCMAIL} ${DESTDIR}/etc/mail
320         @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
321               ! -f ${DESTDIR}/etc/aliases ]; then \
322                 set -x; \
323                 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
324         fi
325         ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
326             ${DESTDIR}/etc/dumpdates
327         ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
328             ${DESTDIR}/var/db/locate.database
329         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
330             ${DESTDIR}/var/log/auth.log
331         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
332             ${DESTDIR}/var/log/cron
333         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
334             ${DESTDIR}/var/log/daemon
335         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
336             ${DESTDIR}/var/log/lpd-errs
337         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
338             ${DESTDIR}/var/log/maillog
339         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
340             ${DESTDIR}/var/log/lastlog
341         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
342             ${DESTDIR}/var/log/lastlogx
343         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
344             ${DESTDIR}/var/log/messages
345         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
346             ${DESTDIR}/var/log/security
347         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
348             ${DESTDIR}/var/log/slip.log
349         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
350             ${DESTDIR}/var/log/ppp.log
351         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
352             ${DESTDIR}/var/log/wtmp
353         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
354             ${DESTDIR}/var/log/wtmpx
355         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
356             ${DESTDIR}/var/run/utmp
357         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
358             ${DESTDIR}/var/run/utmpx
359         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
360             ${DESTDIR}/var/crash
361         cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
362             COPYRIGHT ${DESTDIR}/
363         rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
364         rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
365         rm -f ${DESTDIR}/usr/include/sys/ata.h
366         ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
367         ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
368         ${LN} -s nata.h ${DESTDIR}/usr/include/sys/ata.h
369 .if !defined(NOMAN)
370         cd ${.CURDIR}/../share/man; ${MAKE} makedb
371 .endif
372
373 distrib-dirs:
374         mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
375         mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
376         mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
377         mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
378                 -p ${DESTDIR}/usr/include
379 .if !defined(NO_SENDMAIL)
380         mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
381 .endif
382         cd ${DESTDIR}/; test -e sys || (rm -f sys;  ${LN} -s usr/src/sys sys)
383         cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
384         cd ${DESTDIR}/usr/share/man; \
385         set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
386         while [ $$# -gt 0 ] ; \
387         do \
388                 rm -rf "$$1"; \
389                 ${LN} -s "$$2" "$$1"; \
390                 shift; shift; \
391         done
392         cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
393         cd ${DESTDIR}/usr/share/nls; \
394         set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
395         while [ $$# -gt 0 ] ; \
396         do \
397                 rm -rf "$$1"; \
398                 ${LN} -s "$$2" "$$1"; \
399                 shift; shift; \
400         done
401
402 etc-examples:
403         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
404             ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
405             ${DESTDIR}/usr/share/examples/etc
406         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
407             ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
408
409 .include <bsd.prog.mk>