1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91 2# $FreeBSD$ 3 4.include <bsd.own.mk> 5 6.if ${MK_SENDMAIL} != "no" 7SUBDIR= sendmail 8.endif 9 10BIN1= crontab \ 11 devd.conf \ 12 devfs.conf \ 13 ddb.conf \ 14 dhclient.conf \ 15 disktab \ 16 fbtab \ 17 ftpusers \ 18 gettytab \ 19 group \ 20 hosts \ 21 hosts.allow \ 22 hosts.equiv \ 23 inetd.conf \ 24 libalias.conf \ 25 libmap.conf \ 26 login.access \ 27 login.conf \ 28 mac.conf \ 29 motd \ 30 netconfig \ 31 network.subr \ 32 networks \ 33 newsyslog.conf \ 34 nsswitch.conf \ 35 phones \ 36 profile \ 37 protocols \ 38 rc \ 39 rc.bsdextended \ 40 rc.firewall \ 41 rc.initdiskless \ 42 rc.sendmail \ 43 rc.shutdown \ 44 rc.subr \ 45 remote \ 46 rpc \ 47 services \ 48 shells \ 49 sysctl.conf \ 50 syslog.conf \ 51 termcap.small 52 53.if exists(${.CURDIR}/etc.${MACHINE}/ttys) 54BIN1+= etc.${MACHINE}/ttys 55.elif exists(${.CURDIR}/etc.${MACHINE_ARCH}/ttys) 56BIN1+= etc.${MACHINE_ARCH}/ttys 57.elif exists(${.CURDIR}/etc.${MACHINE_CPUARCH}/ttys) 58BIN1+= etc.${MACHINE_CPUARCH}/ttys 59.else 60.error etc.MACHINE/ttys missing 61.endif 62 63OPENBSMDIR= ${.CURDIR}/../contrib/openbsm 64BSM_ETC_OPEN_FILES= ${OPENBSMDIR}/etc/audit_class \ 65 ${OPENBSMDIR}/etc/audit_event 66BSM_ETC_RESTRICTED_FILES= ${OPENBSMDIR}/etc/audit_control \ 67 ${OPENBSMDIR}/etc/audit_user 68BSM_ETC_EXEC_FILES= ${OPENBSMDIR}/etc/audit_warn 69BSM_ETC_DIR= ${DESTDIR}/etc/security 70 71# NB: keep these sorted by MK_* knobs 72 73.if ${MK_AMD} != "no" 74BIN1+= amd.map 75.endif 76 77.if ${MK_APM} != "no" 78BIN1+= apmd.conf 79.endif 80 81.if ${MK_BSNMP} != "no" 82BIN1+= snmpd.config 83.endif 84 85.if ${MK_FREEBSD_UPDATE} != "no" 86BIN1+= freebsd-update.conf 87.endif 88 89.if ${MK_LOCATE} != "no" 90BIN1+= ${.CURDIR}/../usr.bin/locate/locate/locate.rc 91.endif 92 93.if ${MK_LPR} != "no" 94BIN1+= hosts.lpd printcap 95.endif 96 97.if ${MK_MAIL} != "no" 98BIN1+= ${.CURDIR}/../usr.bin/mail/misc/mail.rc 99.endif 100 101.if ${MK_NTP} != "no" 102BIN1+= ntp.conf 103.endif 104 105.if ${MK_OPENSSH} != "no" 106SSH= ${.CURDIR}/../crypto/openssh/ssh_config \ 107 ${.CURDIR}/../crypto/openssh/sshd_config \ 108 ${.CURDIR}/../crypto/openssh/moduli 109.endif 110.if ${MK_OPENSSL} != "no" 111SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf 112.endif 113 114.if ${MK_NS_CACHING} != "no" 115BIN1+= nscd.conf 116.endif 117 118.if ${MK_PORTSNAP} != "no" 119BIN1+= portsnap.conf 120.endif 121 122.if ${MK_PF} != "no" 123BIN1+= pf.os 124.endif 125 126.if ${MK_TCSH} != "no" 127BIN1+= csh.cshrc csh.login csh.logout 128.endif 129 130.if ${MK_WIRELESS} != "no" 131BIN1+= regdomain.xml 132.endif 133 134# -rwxr-xr-x root:wheel, for the new cron root:wheel 135BIN2= netstart pccard_ether rc.suspend rc.resume 136 137MTREE= BSD.include.dist BSD.root.dist BSD.usr.dist BSD.var.dist 138.if ${MK_SENDMAIL} != "no" 139MTREE+= BSD.sendmail.dist 140.endif 141.if ${MK_BIND} != "no" 142MTREE+= BIND.chroot.dist 143.if ${MK_BIND_LIBS} != "no" 144MTREE+= BIND.include.dist 145.endif 146.endif 147.if ${MK_DEBUG_FILES} != "no" 148MTREE+= BSD.debug.dist 149.endif 150 151PPPCNF= ppp.conf 152 153.if ${MK_SENDMAIL} == "no" 154ETCMAIL=mailer.conf aliases 155.else 156ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \ 157 mailertable.sample aliases 158.endif 159 160# Special top level files for FreeBSD 161FREEBSD=COPYRIGHT 162 163# Sanitize DESTDIR 164DESTDIR:= ${DESTDIR:C://*:/:g} 165 166afterinstall: 167.if ${MK_MAN} != "no" 168 ${_+_}cd ${.CURDIR}/../share/man; ${MAKE} makedb 169.endif 170 171distribute: 172 ${_+_}cd ${.CURDIR} ; ${MAKE} install DESTDIR=${DISTDIR}/${DISTRIBUTION} 173 ${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION} 174 175.include <bsd.endian.mk> 176.if ${TARGET_ENDIANNESS} == "1234" 177CAP_MKDB_ENDIAN?= -l 178PWD_MKDB_ENDIAN?= -L 179.elif ${TARGET_ENDIANNESS} == "4321" 180CAP_MKDB_ENDIAN?= -b 181PWD_MKDB_ENDIAN?= -B 182.else 183CAP_MKDB_ENDIAN?= 184PWD_MKDB_ENDIAN?= 185.endif 186 187.if defined(NO_ROOT) 188METALOG.add?= cat -l >> ${METALOG} 189.endif 190 191distribution: 192.if !defined(DESTDIR) 193 @echo "set DESTDIR before running \"make ${.TARGET}\"" 194 @false 195.endif 196 cd ${.CURDIR}; \ 197 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 198 ${BIN1} ${DESTDIR}/etc; \ 199 cap_mkdb ${CAP_MKDB_ENDIAN} ${DESTDIR}/etc/login.conf; \ 200 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 \ 201 ${BIN2} ${DESTDIR}/etc; \ 202 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \ 203 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; 204.if ${MK_AT} == "no" 205 sed -i "" -e 's;.*/usr/libexec/atrun;#&;' ${DESTDIR}/etc/crontab 206.endif 207.if ${MK_TCSH} == "no" 208 sed -i "" -e 's;/bin/csh;/bin/sh;' ${DESTDIR}/etc/master.passwd 209.endif 210 pwd_mkdb ${PWD_MKDB_ENDIAN} -i -p -d ${DESTDIR}/etc \ 211 ${DESTDIR}/etc/master.passwd 212.if defined(NO_ROOT) 213 ( \ 214 echo "./etc/login.conf.db type=file mode=0644 uname=root gname=wheel"; \ 215 echo "./etc/passwd type=file mode=0644 uname=root gname=wheel"; \ 216 echo "./etc/pwd.db type=file mode=0644 uname=root gname=wheel"; \ 217 echo "./etc/spwd.db type=file mode=0600 uname=root gname=wheel"; \ 218 ) | ${METALOG.add} 219.endif 220.if ${MK_ATF} != "no" 221 ${_+_}cd ${.CURDIR}/atf; ${MAKE} install 222.endif 223.if ${MK_BLUETOOTH} != "no" 224 ${_+_}cd ${.CURDIR}/bluetooth; ${MAKE} install 225.endif 226 ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install 227 ${_+_}cd ${.CURDIR}/devd; ${MAKE} install 228 ${_+_}cd ${.CURDIR}/gss; ${MAKE} install 229 ${_+_}cd ${.CURDIR}/periodic; ${MAKE} install 230 ${_+_}cd ${.CURDIR}/rc.d; ${MAKE} install 231 ${_+_}cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall 232 ${_+_}cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap 233 ${_+_}cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt 234 ${_+_}cd ${.CURDIR}/pam.d; ${MAKE} install 235 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0444 \ 236 ${BSM_ETC_OPEN_FILES} ${BSM_ETC_DIR} 237 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0600 \ 238 ${BSM_ETC_RESTRICTED_FILES} ${BSM_ETC_DIR} 239 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0500 \ 240 ${BSM_ETC_EXEC_FILES} ${BSM_ETC_DIR} 241.if ${MK_BIND_MTREE} != "no" 242 if [ ! -e ${DESTDIR}/etc/namedb ]; then \ 243 ln -s ../var/named/etc/namedb ${DESTDIR}/etc/namedb; \ 244 fi 245.endif 246.if ${MK_BIND_ETC} != "no" 247 ${_+_}cd ${.CURDIR}/namedb; ${MAKE} install 248.endif 249.if ${MK_SENDMAIL} != "no" 250 ${_+_}cd ${.CURDIR}/sendmail; ${MAKE} distribution 251.endif 252.if ${MK_OPENSSH} != "no" 253 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 254 ${SSH} ${DESTDIR}/etc/ssh 255.endif 256.if ${MK_OPENSSL} != "no" 257 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 258 ${SSL} ${DESTDIR}/etc/ssl 259.endif 260.if ${MK_KERBEROS} != "no" 261 cd ${.CURDIR}/root; \ 262 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 263 dot.k5login ${DESTDIR}/root/.k5login; 264.endif 265 cd ${.CURDIR}/root; \ 266 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 267 dot.profile ${DESTDIR}/root/.profile; \ 268 rm -f ${DESTDIR}/.profile; \ 269 ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile 270.if ${MK_TCSH} != "no" 271 cd ${.CURDIR}/root; \ 272 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 273 dot.cshrc ${DESTDIR}/root/.cshrc; \ 274 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 275 dot.login ${DESTDIR}/root/.login; \ 276 rm -f ${DESTDIR}/.cshrc; \ 277 ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc 278.endif 279 cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 280 ${MTREE} ${DESTDIR}/etc/mtree 281.if ${MK_PPP} != "no" 282 cd ${.CURDIR}/ppp; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \ 283 ${PPPCNF} ${DESTDIR}/etc/ppp 284.endif 285.if ${MK_MAIL} != "no" 286 cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 287 ${ETCMAIL} ${DESTDIR}/etc/mail 288 if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \ 289 ! -f ${DESTDIR}/etc/aliases ]; then \ 290 ln -s mail/aliases ${DESTDIR}/etc/aliases; \ 291 fi 292.endif 293 ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \ 294 ${DESTDIR}/etc/dumpdates 295 ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \ 296 ${DESTDIR}/var/db/locate.database 297 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \ 298 ${DESTDIR}/var/crash 299 cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 300 ${FREEBSD} ${DESTDIR}/ 301.if ${MK_BOOT} != "no" 302.if exists(${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints) 303 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 304 ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \ 305 ${DESTDIR}/boot/device.hints 306.endif 307.endif 308.if ${MK_NIS} == "no" 309 sed -i "" -e 's/.*_compat:/# &/' -e 's/compat$$/files/' \ 310 ${DESTDIR}/etc/nsswitch.conf 311.endif 312 313MTREE_CMD?= mtree 314 315MTREES= mtree/BSD.root.dist / \ 316 mtree/BSD.var.dist /var \ 317 mtree/BSD.usr.dist /usr \ 318 mtree/BSD.include.dist /usr/include 319.if ${MK_DEBUG_FILES} != "no" 320MTREES+= mtree/BSD.debug.dist /usr/lib 321.endif 322.if ${MK_BIND_LIBS} != "no" 323MTREES+= mtree/BIND.include.dist /usr/include 324.endif 325.if ${MK_BIND_MTREE} != "no" 326MTREES+= mtree/BIND.chroot.dist /var/named 327.endif 328.if ${MK_GROFF} != "no" 329MTREES+= mtree/BSD.groff.dist /usr 330.endif 331.if ${MK_SENDMAIL} != "no" 332MTREES+= mtree/BSD.sendmail.dist / 333.endif 334.for mtree in ${LOCAL_MTREE} 335MTREES+= ../${mtree} / 336.endfor 337 338distrib-dirs: ${MTREES:N/*} 339 @set ${MTREES}; \ 340 while test $$# -ge 2; do \ 341 m=${.CURDIR}/$$1; \ 342 shift; \ 343 d=${DESTDIR}$$1; \ 344 shift; \ 345 ${ECHO} ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} \ 346 -f $$m -p $$d; \ 347 ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -f $$m -p $$d; \ 348 done; true 349.if defined(NO_ROOT) 350 @set ${MTREES}; \ 351 while test $$# -ge 2; do \ 352 m=${.CURDIR}/$$1; \ 353 shift; \ 354 d=$$1; \ 355 test "$$d" == "/" && d=""; \ 356 d=${DISTBASE}$$d; \ 357 shift; \ 358 ${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K uname,gname | " \ 359 "sed s#^\.#.$$d# | ${METALOG.add}" ; \ 360 ${MTREE_CMD:N-W} -C -f $$m -K uname,gname | sed s#^\.#.$$d# | \ 361 ${METALOG.add} ; \ 362 done; true 363.endif 364 ${INSTALL_SYMLINK} usr/src/sys ${DESTDIR}/sys 365 cd ${DESTDIR}/usr/share/man; \ 366 for mandir in man*; do \ 367 ${INSTALL_SYMLINK} ../$$mandir \ 368 ${DESTDIR}/usr/share/man/en.ISO8859-1/; \ 369 ${INSTALL_SYMLINK} ../$$mandir \ 370 ${DESTDIR}/usr/share/man/en.UTF-8/; \ 371 done 372 cd ${DESTDIR}/usr/share/openssl/man; \ 373 for mandir in man*; do \ 374 ${INSTALL_SYMLINK} ../$$mandir \ 375 ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1/; \ 376 done 377 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \ 378 while [ $$# -gt 0 ] ; do \ 379 ${INSTALL_SYMLINK} "$$2" "${DESTDIR}/usr/share/man/$$1"; \ 380 ${INSTALL_SYMLINK} "$$2" \ 381 "${DESTDIR}/usr/share/openssl/man/$$1"; \ 382 shift; shift; \ 383 done 384 set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \ 385 while [ $$# -gt 0 ] ; do \ 386 ${INSTALL_SYMLINK} "$$2" "${DESTDIR}/usr/share/nls/$$1"; \ 387 shift; shift; \ 388 done 389 390etc-examples: 391 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 392 ${BIN1} ${BIN2} nsmb.conf opieaccess \ 393 ${DESTDIR}/usr/share/examples/etc 394 ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install \ 395 DESTDIR=${DESTDIR}/usr/share/examples 396 397.include <bsd.prog.mk> 398