1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6SUBDIR= \ 7 newsyslog.conf.d 8 9.if ${MK_SENDMAIL} != "no" 10SUBDIR+=sendmail 11.endif 12 13BIN1= crontab \ 14 devd.conf \ 15 devfs.conf \ 16 ddb.conf \ 17 dhclient.conf \ 18 disktab \ 19 fbtab \ 20 gettytab \ 21 group \ 22 hosts \ 23 hosts.allow \ 24 hosts.equiv \ 25 libalias.conf \ 26 libmap.conf \ 27 login.access \ 28 login.conf \ 29 mac.conf \ 30 motd \ 31 netconfig \ 32 network.subr \ 33 networks \ 34 newsyslog.conf \ 35 nsswitch.conf \ 36 phones \ 37 profile \ 38 protocols \ 39 rc \ 40 rc.bsdextended \ 41 rc.firewall \ 42 rc.initdiskless \ 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_AUTOFS} != "no" 82BIN1+= auto_master 83.endif 84 85.if ${MK_BSNMP} != "no" 86BIN1+= snmpd.config 87.endif 88 89.if ${MK_FREEBSD_UPDATE} != "no" 90BIN1+= freebsd-update.conf 91.endif 92 93.if ${MK_FTP} != "no" 94BIN1+= ftpusers 95.endif 96 97.if ${MK_INETD} != "no" 98BIN1+= inetd.conf 99.endif 100 101.if ${MK_LOCATE} != "no" 102BIN1+= ${.CURDIR}/../usr.bin/locate/locate/locate.rc 103.endif 104 105.if ${MK_LPR} != "no" 106BIN1+= hosts.lpd printcap 107.endif 108 109.if ${MK_MAIL} != "no" 110BIN1+= ${.CURDIR}/../usr.bin/mail/misc/mail.rc 111.endif 112 113.if ${MK_NTP} != "no" 114BIN1+= ntp.conf 115.endif 116 117.if ${MK_OPENSSH} != "no" 118SSH= ${.CURDIR}/../crypto/openssh/ssh_config \ 119 ${.CURDIR}/../crypto/openssh/sshd_config \ 120 ${.CURDIR}/../crypto/openssh/moduli 121.endif 122.if ${MK_OPENSSL} != "no" 123SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf 124.endif 125 126.if ${MK_NS_CACHING} != "no" 127BIN1+= nscd.conf 128.endif 129 130.if ${MK_PORTSNAP} != "no" 131BIN1+= portsnap.conf 132.endif 133 134.if ${MK_PF} != "no" 135BIN1+= pf.os 136.endif 137 138.if ${MK_SENDMAIL} != "no" 139BIN1+= rc.sendmail 140.endif 141 142.if ${MK_TCSH} != "no" 143BIN1+= csh.cshrc csh.login csh.logout 144.endif 145 146.if ${MK_WIRELESS} != "no" 147BIN1+= regdomain.xml 148.endif 149 150# -rwxr-xr-x root:wheel, for the new cron root:wheel 151BIN2= netstart pccard_ether rc.suspend rc.resume 152 153MTREE= BSD.debug.dist BSD.include.dist BSD.root.dist BSD.usr.dist BSD.var.dist 154.if ${MK_LIB32} != "no" 155MTREE+= BSD.lib32.dist 156.endif 157.if ${MK_LIBSOFT} != "no" 158MTREE+= BSD.libsoft.dist 159.endif 160.if ${MK_TESTS} != "no" 161MTREE+= BSD.tests.dist 162.endif 163.if ${MK_SENDMAIL} != "no" 164MTREE+= BSD.sendmail.dist 165.endif 166 167PPPCNF= ppp.conf 168 169.if ${MK_SENDMAIL} == "no" 170ETCMAIL=mailer.conf aliases 171.else 172ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \ 173 mailertable.sample aliases 174.endif 175 176# Special top level files for FreeBSD 177FREEBSD=COPYRIGHT 178 179# Sanitize DESTDIR 180DESTDIR:= ${DESTDIR:C://*:/:g} 181 182afterinstall: 183.if ${MK_MAN} != "no" 184 ${_+_}cd ${.CURDIR}/../share/man; ${MAKE} makedb 185.endif 186 187distribute: 188 # Avoid installing tests here; "make distribution" will do this and 189 # correctly place them in the right location. 190 ${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \ 191 DESTDIR=${DISTDIR}/${DISTRIBUTION} 192 ${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION} 193 194.include <bsd.endian.mk> 195.if ${TARGET_ENDIANNESS} == "1234" 196CAP_MKDB_ENDIAN?= -l 197.elif ${TARGET_ENDIANNESS} == "4321" 198CAP_MKDB_ENDIAN?= -b 199.else 200CAP_MKDB_ENDIAN?= 201.endif 202 203.if defined(NO_ROOT) 204METALOG.add?= cat -l >> ${METALOG} 205.endif 206 207distribution: 208.if !defined(DESTDIR) 209 @echo "set DESTDIR before running \"make ${.TARGET}\"" 210 @false 211.endif 212 cd ${.CURDIR}; \ 213 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 214 ${BIN1} ${DESTDIR}/etc; \ 215 cap_mkdb ${CAP_MKDB_ENDIAN} ${DESTDIR}/etc/login.conf; \ 216 services_mkdb ${CAP_MKDB_ENDIAN} -q -o ${DESTDIR}/var/db/services.db \ 217 ${DESTDIR}/etc/services; \ 218 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 \ 219 ${BIN2} ${DESTDIR}/etc; \ 220 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \ 221 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; 222.if ${MK_AT} == "no" 223 sed -i "" -e 's;.*/usr/libexec/atrun;#&;' ${DESTDIR}/etc/crontab 224.endif 225.if ${MK_TCSH} == "no" 226 sed -i "" -e 's;/bin/csh;/bin/sh;' ${DESTDIR}/etc/master.passwd 227.endif 228 pwd_mkdb -i -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd 229.if defined(NO_ROOT) 230 ( \ 231 echo "./etc/login.conf.db type=file mode=0644 uname=root gname=wheel"; \ 232 echo "./etc/passwd type=file mode=0644 uname=root gname=wheel"; \ 233 echo "./etc/pwd.db type=file mode=0644 uname=root gname=wheel"; \ 234 echo "./etc/spwd.db type=file mode=0600 uname=root gname=wheel"; \ 235 ) | ${METALOG.add} 236.endif 237.if ${MK_AUTOFS} != "no" 238 ${_+_}cd ${.CURDIR}/autofs; ${MAKE} install 239.endif 240.if ${MK_BLUETOOTH} != "no" 241 ${_+_}cd ${.CURDIR}/bluetooth; ${MAKE} install 242.endif 243.if ${MK_CASPER} != "no" 244 ${_+_}cd ${.CURDIR}/casper; ${MAKE} install 245.endif 246 ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install 247 ${_+_}cd ${.CURDIR}/devd; ${MAKE} install 248 ${_+_}cd ${.CURDIR}/gss; ${MAKE} install 249.if ${MK_NTP} != "no" 250 ${_+_}cd ${.CURDIR}/ntp; ${MAKE} install 251.endif 252 ${_+_}cd ${.CURDIR}/periodic; ${MAKE} install 253.if ${MK_PKGBOOTSTRAP} != "no" 254 ${_+_}cd ${.CURDIR}/pkg; ${MAKE} install 255.endif 256 ${_+_}cd ${.CURDIR}/rc.d; ${MAKE} install 257 ${_+_}cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap 258 ${_+_}cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt 259 ${_+_}cd ${.CURDIR}/pam.d; ${MAKE} install 260 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0444 \ 261 ${BSM_ETC_OPEN_FILES} ${BSM_ETC_DIR} 262 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0600 \ 263 ${BSM_ETC_RESTRICTED_FILES} ${BSM_ETC_DIR} 264 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0500 \ 265 ${BSM_ETC_EXEC_FILES} ${BSM_ETC_DIR} 266.if ${MK_UNBOUND} != "no" 267 if [ ! -e ${DESTDIR}/etc/unbound ]; then \ 268 ${INSTALL_SYMLINK} ../var/unbound ${DESTDIR}/etc/unbound; \ 269 fi 270.endif 271.if ${MK_SENDMAIL} != "no" 272 ${_+_}cd ${.CURDIR}/sendmail; ${MAKE} distribution 273.endif 274.if ${MK_OPENSSH} != "no" 275 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 276 ${SSH} ${DESTDIR}/etc/ssh 277.endif 278.if ${MK_OPENSSL} != "no" 279 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 280 ${SSL} ${DESTDIR}/etc/ssl 281.endif 282.if ${MK_KERBEROS} != "no" 283 cd ${.CURDIR}/root; \ 284 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 285 dot.k5login ${DESTDIR}/root/.k5login; 286.endif 287 cd ${.CURDIR}/root; \ 288 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 289 dot.profile ${DESTDIR}/root/.profile; \ 290 rm -f ${DESTDIR}/.profile; \ 291 ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile 292.if ${MK_TCSH} != "no" 293 cd ${.CURDIR}/root; \ 294 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 295 dot.cshrc ${DESTDIR}/root/.cshrc; \ 296 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \ 297 dot.login ${DESTDIR}/root/.login; \ 298 rm -f ${DESTDIR}/.cshrc; \ 299 ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc 300.endif 301 cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 302 ${MTREE} ${DESTDIR}/etc/mtree 303.if ${MK_MAIL} != "no" 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 \ 308 ln -s mail/aliases ${DESTDIR}/etc/aliases; \ 309 fi 310.endif 311 ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \ 312 ${DESTDIR}/etc/dumpdates 313.if ${MK_LOCATE} != "no" 314 ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \ 315 ${DESTDIR}/var/db/locate.database 316.endif 317 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \ 318 ${DESTDIR}/var/crash 319 cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 320 ${FREEBSD} ${DESTDIR}/ 321.if ${MK_BOOT} != "no" 322.if exists(${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints) 323 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 324 ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \ 325 ${DESTDIR}/boot/device.hints 326.endif 327.endif 328.if ${MK_NIS} == "no" 329 sed -i "" -e 's/.*_compat:/# &/' -e 's/compat$$/files/' \ 330 ${DESTDIR}/etc/nsswitch.conf 331.endif 332 333MTREE_CMD?= mtree 334 335.if ${MK_INSTALL_AS_USER} == "yes" && ${_uid} != 0 336MTREE_FILTER= sed -e 's,\([gu]\)name=,\1id=,g' \ 337 -e 's,\(uid=\)[^ ]* ,\1${_uid} ,' \ 338 -e 's,\(gid=\)[^ ]* ,\1${_gid} ,' \ 339 -e 's,\(uid=\)[^ ]*$$,\1${_uid},' \ 340 -e 's,\(gid=\)[^ ]*$$,\1${_gid},' 341.else 342MTREE_FILTER= cat 343.if !defined(NO_FSCHG) 344MTREE_FSCHG= -i 345.endif 346.endif 347 348MTREES= mtree/BSD.root.dist / \ 349 mtree/BSD.var.dist /var \ 350 mtree/BSD.usr.dist /usr \ 351 mtree/BSD.include.dist /usr/include \ 352 mtree/BSD.debug.dist /usr/lib 353.if ${MK_GROFF} != "no" 354MTREES+= mtree/BSD.groff.dist /usr 355.endif 356.if ${MK_LIB32} != "no" 357MTREES+= mtree/BSD.lib32.dist /usr 358MTREES+= mtree/BSD.lib32.dist /usr/lib/debug/usr 359.endif 360.if ${MK_LIBSOFT} != "no" 361MTREES+= mtree/BSD.libsoft.dist /usr 362MTREES+= mtree/BSD.libsoft.dist /usr/lib/debug/usr 363.endif 364.if ${MK_TESTS} != "no" 365MTREES+= mtree/BSD.tests.dist ${TESTSBASE} 366MTREES+= mtree/BSD.tests.dist /usr/lib/debug/${TESTSBASE} 367.endif 368.if ${MK_SENDMAIL} != "no" 369MTREES+= mtree/BSD.sendmail.dist / 370.endif 371.for mtree in ${LOCAL_MTREE} 372MTREES+= ../${mtree} / 373.endfor 374 375# Clean up some directories that where mistakenly created as files that 376# should not have been as part of the nvi update in r281994. 377# This should be removed after 11.0-RELEASE. 378DISTRIB_CLEANUP_SHARE_FILES= ${SHAREDIR}/doc/usd/10.exref ${SHAREDIR}/doc/usd/11.edit 379DISTRIB_CLEANUP_SHARE_FILES+= ${SHAREDIR}/doc/usd/12.vi ${SHAREDIR}/doc/usd/13.viref 380distrib-cleanup: .PHONY 381 for file in ${DISTRIB_CLEANUP_SHARE_FILES}; do \ 382 if [ -f ${DESTDIR}/$${file} ]; then \ 383 rm -f ${DESTDIR}/$${file}; \ 384 fi; \ 385 done 386 387distrib-dirs: ${MTREES:N/*} distrib-cleanup .PHONY 388 @set ${MTREES}; \ 389 while test $$# -ge 2; do \ 390 m=${.CURDIR}/$$1; \ 391 shift; \ 392 d=${DESTDIR}$$1; \ 393 shift; \ 394 test -d $$d || mkdir -p $$d; \ 395 ${ECHO} ${MTREE_CMD} -deU ${MTREE_FSCHG} \ 396 ${MTREE_FOLLOWS_SYMLINKS} -f $$m -p $$d; \ 397 ${MTREE_FILTER} $$m | \ 398 ${MTREE_CMD} -deU ${MTREE_FSCHG} ${MTREE_FOLLOWS_SYMLINKS} \ 399 -p $$d; \ 400 done; true 401.if defined(NO_ROOT) 402 @set ${MTREES}; \ 403 while test $$# -ge 2; do \ 404 m=${.CURDIR}/$$1; \ 405 shift; \ 406 d=$$1; \ 407 test "$$d" == "/" && d=""; \ 408 d=${DISTBASE}$$d; \ 409 shift; \ 410 test -d ${DESTDIR}/$$d || mkdir -p ${DESTDIR}/$$d; \ 411 ${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K uname,gname | " \ 412 "sed s#^\.#.$$d# | ${METALOG.add}" ; \ 413 ${MTREE_FILTER} $$m | \ 414 ${MTREE_CMD:N-W} -C -K uname,gname | sed s#^\.#.$$d# | \ 415 ${METALOG.add} ; \ 416 done; true 417.endif 418 ${INSTALL_SYMLINK} usr/src/sys ${DESTDIR}/sys 419.if ${MK_MAN} != "no" 420 cd ${DESTDIR}${SHAREDIR}/man; \ 421 for mandir in man*; do \ 422 ${INSTALL_SYMLINK} ../$$mandir \ 423 ${DESTDIR}${SHAREDIR}/man/en.ISO8859-1/; \ 424 ${INSTALL_SYMLINK} ../$$mandir \ 425 ${DESTDIR}${SHAREDIR}/man/en.UTF-8/; \ 426 done 427.if ${MK_OPENSSL} != "no" 428 cd ${DESTDIR}${SHAREDIR}/openssl/man; \ 429 for mandir in man*; do \ 430 ${INSTALL_SYMLINK} ../$$mandir \ 431 ${DESTDIR}${SHAREDIR}/openssl/man/en.ISO8859-1/; \ 432 done 433.endif 434 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \ 435 while [ $$# -gt 0 ] ; do \ 436 ${INSTALL_SYMLINK} "$$2" "${DESTDIR}${SHAREDIR}/man/$$1"; \ 437 if [ "${MK_OPENSSL}" != "no" ]; then \ 438 ${INSTALL_SYMLINK} "$$2" \ 439 "${DESTDIR}${SHAREDIR}/openssl/man/$$1"; \ 440 fi; \ 441 shift; shift; \ 442 done 443.endif 444.if ${MK_NLS} != "no" 445 set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \ 446 while [ $$# -gt 0 ] ; do \ 447 ${INSTALL_SYMLINK} "$$2" "${DESTDIR}${SHAREDIR}/nls/$$1"; \ 448 shift; shift; \ 449 done 450.endif 451 452etc-examples: 453 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ 454 ${BIN1} ${BIN2} nsmb.conf opieaccess \ 455 ${DESTDIR}${SHAREDIR}/examples/etc 456 ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install \ 457 DESTDIR=${DESTDIR}${SHAREDIR}/examples 458 459.include <bsd.prog.mk> 460