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