1994-02-21 21:53:20 +00:00
|
|
|
# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1998-08-04 15:54:27 +00:00
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2006-03-17 18:54:44 +00:00
|
|
|
|
2016-02-02 17:33:37 +00:00
|
|
|
FILESGROUPS= FILES
|
2018-11-04 10:14:08 +00:00
|
|
|
NLS_ALIASES= POSIX C \
|
|
|
|
en_US.US_ASCII C
|
2019-06-02 23:38:19 +00:00
|
|
|
PWD_MKDB_CMD?= pwd_mkdb
|
2016-02-02 17:33:37 +00:00
|
|
|
|
2016-03-11 23:45:09 +00:00
|
|
|
# No need as it is empty and just causes rebuilds since this file does so much.
|
|
|
|
UPDATE_DEPENDFILE= no
|
2015-01-22 23:50:47 +00:00
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SENDMAIL} != "no"
|
2015-01-22 23:50:47 +00:00
|
|
|
SUBDIR+=sendmail
|
2001-03-01 03:51:18 +00:00
|
|
|
.endif
|
1993-06-20 13:41:45 +00:00
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SENDMAIL} == "no"
|
2003-07-06 19:23:31 +00:00
|
|
|
ETCMAIL=mailer.conf aliases
|
|
|
|
.else
|
2000-08-13 09:01:12 +00:00
|
|
|
ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
|
|
|
|
mailertable.sample aliases
|
2003-07-06 19:23:31 +00:00
|
|
|
.endif
|
1993-06-20 13:41:45 +00:00
|
|
|
|
1993-08-09 17:02:17 +00:00
|
|
|
# Special top level files for FreeBSD
|
2002-07-05 13:17:24 +00:00
|
|
|
FREEBSD=COPYRIGHT
|
1993-08-28 03:33:06 +00:00
|
|
|
|
2013-01-22 21:10:03 +00:00
|
|
|
# Sanitize DESTDIR
|
|
|
|
DESTDIR:= ${DESTDIR:C://*:/:g}
|
|
|
|
|
2004-01-22 08:18:37 +00:00
|
|
|
afterinstall:
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_MAN} != "no"
|
2017-03-12 18:58:55 +00:00
|
|
|
${_+_}cd ${SRCTOP}/share/man; ${MAKE} makedb
|
2004-01-22 08:18:37 +00:00
|
|
|
.endif
|
|
|
|
|
1994-11-14 20:56:17 +00:00
|
|
|
distribute:
|
2014-06-10 17:04:30 +00:00
|
|
|
# Avoid installing tests here; "make distribution" will do this and
|
|
|
|
# correctly place them in the right location.
|
|
|
|
${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \
|
|
|
|
DESTDIR=${DISTDIR}/${DISTRIBUTION}
|
2007-10-29 07:37:08 +00:00
|
|
|
${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
|
1995-01-27 02:20:42 +00:00
|
|
|
|
2005-02-28 14:16:53 +00:00
|
|
|
.include <bsd.endian.mk>
|
|
|
|
|
2013-01-29 22:17:58 +00:00
|
|
|
.if defined(NO_ROOT)
|
|
|
|
METALOG.add?= cat -l >> ${METALOG}
|
|
|
|
.endif
|
|
|
|
|
1994-11-14 20:56:17 +00:00
|
|
|
distribution:
|
2005-07-22 10:35:35 +00:00
|
|
|
.if !defined(DESTDIR)
|
|
|
|
@echo "set DESTDIR before running \"make ${.TARGET}\""
|
|
|
|
@false
|
2019-05-08 17:46:59 +00:00
|
|
|
.endif
|
2007-10-29 07:37:08 +00:00
|
|
|
${_+_}cd ${.CURDIR}/gss; ${MAKE} install
|
2017-07-24 23:57:43 +00:00
|
|
|
${_+_}cd ${.CURDIR}/mtree; ${MAKE} install
|
2017-03-12 18:58:55 +00:00
|
|
|
${_+_}cd ${SRCTOP}/share/termcap; ${MAKE} etc-termcap
|
|
|
|
${_+_}cd ${SRCTOP}/usr.sbin/rmt; ${MAKE} etc-rmt
|
2020-01-22 14:07:27 +00:00
|
|
|
${INSTALL_SYMLINK} -T "package=runtime" ../var/run/os-release \
|
2019-11-20 23:45:31 +00:00
|
|
|
${DESTDIR}/etc/os-release
|
2013-09-24 10:04:51 +00:00
|
|
|
.if ${MK_UNBOUND} != "no"
|
|
|
|
if [ ! -e ${DESTDIR}/etc/unbound ]; then \
|
2019-06-12 09:18:23 +00:00
|
|
|
${INSTALL_SYMLINK} -T "package=unbound" \
|
|
|
|
../var/unbound ${DESTDIR}/etc/unbound; \
|
2013-09-24 10:04:51 +00:00
|
|
|
fi
|
|
|
|
.endif
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SENDMAIL} != "no"
|
2007-10-29 07:37:08 +00:00
|
|
|
${_+_}cd ${.CURDIR}/sendmail; ${MAKE} distribution
|
2001-03-01 03:51:18 +00:00
|
|
|
.endif
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_KERBEROS} != "no"
|
2002-07-05 13:17:24 +00:00
|
|
|
cd ${.CURDIR}/root; \
|
2002-07-29 09:40:17 +00:00
|
|
|
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
|
2019-06-12 09:18:23 +00:00
|
|
|
-T "package=runtime" \
|
2003-10-03 19:38:21 +00:00
|
|
|
dot.k5login ${DESTDIR}/root/.k5login;
|
|
|
|
.endif
|
2018-08-15 14:41:24 +00:00
|
|
|
|
2014-11-29 22:31:19 +00:00
|
|
|
.if ${MK_MAIL} != "no"
|
2002-07-29 09:40:17 +00:00
|
|
|
cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
|
2019-06-12 09:18:23 +00:00
|
|
|
-T "package=runtime" ${ETCMAIL} ${DESTDIR}/etc/mail
|
2012-11-15 20:37:38 +00:00
|
|
|
if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
|
2000-08-14 02:49:39 +00:00
|
|
|
! -f ${DESTDIR}/etc/aliases ]; then \
|
2019-06-12 09:18:23 +00:00
|
|
|
${INSTALL_SYMLINK} -T "package=runtime" \
|
|
|
|
mail/aliases ${DESTDIR}/etc/aliases; \
|
2000-08-14 02:49:39 +00:00
|
|
|
fi
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
2015-02-05 11:42:59 +00:00
|
|
|
.if ${MK_LOCATE} != "no"
|
2019-06-12 09:18:23 +00:00
|
|
|
${INSTALL} -o nobody -g ${BINGRP} -m 644 -T "package=runtime"\
|
|
|
|
/dev/null ${DESTDIR}/var/db/locate.database
|
2015-02-05 11:42:59 +00:00
|
|
|
.endif
|
2002-07-29 09:40:17 +00:00
|
|
|
cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
|
2019-06-12 09:18:23 +00:00
|
|
|
-T "package=runtime" ${FREEBSD} ${DESTDIR}/
|
2010-06-16 07:52:44 +00:00
|
|
|
.if ${MK_BOOT} != "no"
|
2017-03-12 18:58:55 +00:00
|
|
|
.if exists(${SRCTOP}/sys/${MACHINE}/conf/GENERIC.hints)
|
2004-03-14 17:18:39 +00:00
|
|
|
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
|
2019-06-12 09:18:23 +00:00
|
|
|
-T "package=runtime" \
|
2017-03-12 18:58:55 +00:00
|
|
|
${SRCTOP}/sys/${MACHINE}/conf/GENERIC.hints \
|
2004-03-14 17:18:39 +00:00
|
|
|
${DESTDIR}/boot/device.hints
|
2007-07-13 14:28:10 +00:00
|
|
|
.endif
|
2010-06-16 07:52:44 +00:00
|
|
|
.endif
|
1993-06-20 13:41:45 +00:00
|
|
|
|
2019-06-03 21:40:42 +00:00
|
|
|
MTREE_CMD?= mtree
|
|
|
|
|
2013-01-17 18:32:30 +00:00
|
|
|
MTREES= mtree/BSD.root.dist / \
|
|
|
|
mtree/BSD.var.dist /var \
|
|
|
|
mtree/BSD.usr.dist /usr \
|
2015-02-24 19:27:51 +00:00
|
|
|
mtree/BSD.include.dist /usr/include \
|
|
|
|
mtree/BSD.debug.dist /usr/lib
|
2015-10-20 20:35:34 +00:00
|
|
|
.if ${MK_LIB32} != "no"
|
|
|
|
MTREES+= mtree/BSD.lib32.dist /usr
|
|
|
|
MTREES+= mtree/BSD.lib32.dist /usr/lib/debug/usr
|
|
|
|
.endif
|
2016-01-03 04:32:05 +00:00
|
|
|
.if ${MK_LIBSOFT} != "no"
|
|
|
|
MTREES+= mtree/BSD.libsoft.dist /usr
|
|
|
|
MTREES+= mtree/BSD.libsoft.dist /usr/lib/debug/usr
|
|
|
|
.endif
|
2013-10-25 05:25:19 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
2014-12-18 18:16:00 +00:00
|
|
|
MTREES+= mtree/BSD.tests.dist ${TESTSBASE}
|
2015-10-15 01:46:55 +00:00
|
|
|
MTREES+= mtree/BSD.tests.dist /usr/lib/debug/${TESTSBASE}
|
2013-10-25 05:25:19 +00:00
|
|
|
.endif
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SENDMAIL} != "no"
|
2013-01-17 18:32:30 +00:00
|
|
|
MTREES+= mtree/BSD.sendmail.dist /
|
2002-04-20 19:00:11 +00:00
|
|
|
.endif
|
2013-01-17 18:32:30 +00:00
|
|
|
.for mtree in ${LOCAL_MTREE}
|
|
|
|
MTREES+= ../${mtree} /
|
|
|
|
.endfor
|
|
|
|
|
2015-11-13 17:25:20 +00:00
|
|
|
# Clean up some directories that where mistakenly created as files that
|
|
|
|
# should not have been as part of the nvi update in r281994.
|
|
|
|
# This should be removed after 11.0-RELEASE.
|
|
|
|
DISTRIB_CLEANUP_SHARE_FILES= ${SHAREDIR}/doc/usd/10.exref ${SHAREDIR}/doc/usd/11.edit
|
|
|
|
DISTRIB_CLEANUP_SHARE_FILES+= ${SHAREDIR}/doc/usd/12.vi ${SHAREDIR}/doc/usd/13.viref
|
|
|
|
distrib-cleanup: .PHONY
|
|
|
|
for file in ${DISTRIB_CLEANUP_SHARE_FILES}; do \
|
|
|
|
if [ -f ${DESTDIR}/$${file} ]; then \
|
|
|
|
rm -f ${DESTDIR}/$${file}; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
|
|
|
|
distrib-dirs: ${MTREES:N/*} distrib-cleanup .PHONY
|
2018-11-04 06:47:21 +00:00
|
|
|
.for _m _d in ${MTREES}
|
|
|
|
@m=${.CURDIR}/${_m}; \
|
|
|
|
d=${DESTDIR}${_d}; \
|
|
|
|
test -d $$d || mkdir -p $$d; \
|
|
|
|
${ECHO} ${MTREE_CMD} -deU ${MTREE_FSCHG} \
|
|
|
|
${MTREE_FOLLOWS_SYMLINKS} -f $$m -p $$d; \
|
|
|
|
${MTREE_FILTER} $$m | \
|
|
|
|
${MTREE_CMD} -deU ${MTREE_FSCHG} ${MTREE_FOLLOWS_SYMLINKS} \
|
2018-11-04 06:59:13 +00:00
|
|
|
-p $$d
|
2018-11-04 06:47:21 +00:00
|
|
|
.endfor
|
2013-01-22 21:10:03 +00:00
|
|
|
.if defined(NO_ROOT)
|
2018-11-04 06:47:21 +00:00
|
|
|
.for _m _d in ${MTREES}
|
|
|
|
@m=${.CURDIR}/${_m}; \
|
|
|
|
d=${_d}; \
|
|
|
|
test "$$d" == "/" && d=""; \
|
|
|
|
d=${DISTBASE}$$d; \
|
|
|
|
test -d ${DESTDIR}/$$d || mkdir -p ${DESTDIR}/$$d; \
|
|
|
|
${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K all | " \
|
|
|
|
"sed s#^\.#.$$d# | ${METALOG.add}" ; \
|
|
|
|
${MTREE_FILTER} $$m | \
|
|
|
|
${MTREE_CMD:N-W} -C -K all | sed s#^\.#.$$d# | \
|
2018-11-04 06:59:13 +00:00
|
|
|
${METALOG.add}
|
2018-11-04 06:47:21 +00:00
|
|
|
.endfor
|
2013-01-22 21:10:03 +00:00
|
|
|
.endif
|
2015-02-05 11:42:59 +00:00
|
|
|
.if ${MK_NLS} != "no"
|
2018-11-04 10:14:08 +00:00
|
|
|
.for alias nls in ${NLS_ALIASES}
|
2020-01-24 14:41:51 +00:00
|
|
|
${INSTALL_SYMLINK} -T "package=utilities" \
|
|
|
|
"${nls}" "${DESTDIR}${SHAREDIR}/nls/${alias}"
|
2018-11-04 10:14:08 +00:00
|
|
|
.endfor
|
2015-02-05 11:42:59 +00:00
|
|
|
.endif
|
1993-07-19 18:54:09 +00:00
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
.include <bsd.prog.mk>
|
2017-07-10 23:52:07 +00:00
|
|
|
|
|
|
|
.if ${MK_INSTALL_AS_USER} == "yes" && ${_uid} != 0
|
|
|
|
MTREE_FILTER= sed -e 's,\([gu]\)name=,\1id=,g' \
|
|
|
|
-e 's,\(uid=\)[^ ]* ,\1${_uid} ,' \
|
|
|
|
-e 's,\(gid=\)[^ ]* ,\1${_gid} ,' \
|
|
|
|
-e 's,\(uid=\)[^ ]*$$,\1${_uid},' \
|
|
|
|
-e 's,\(gid=\)[^ ]*$$,\1${_gid},'
|
|
|
|
.else
|
|
|
|
MTREE_FILTER= cat
|
|
|
|
.if !defined(NO_FSCHG)
|
|
|
|
MTREE_FSCHG= -i
|
|
|
|
.endif
|
|
|
|
.endif
|