mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-31 16:57:10 +00:00
3b26e5a453
dirdeps.mk: simplify computation of qualified vs unqualified dirdeps. Note the importance of avoiding unresolved variables in DIRDEPS Fix DIRDEP_LOADAVG_REPORT - expr(1) fails if expression evaluates to 0 Trim ${SRCTOP}/ from debug etc messages to make comparison easier. Include number of DIRDEPS in debug output. Trim ${SRCTOP}/ when exporting to env while building DIRDEPS_CACHE to help avoid env exhaustion. Use DIRDEPS_ALL_MACHINES_FILTER to better handle ALL_MACHINES in complex build environments. dirdeps-options.mk: use separate .undef for each variable dirdeps-targets.mk: allow for '.' in DIRDEPS_TARGETS_DIRS meta.autodep.mk: leverage ${.SUFFIXES} if we can. meta.sys.mk: allow use in META_MODE vs DIRDEPS_BUILD meta2deps.py: compute a list of dirdep extensions that map to current TARGET_SPEC to avoid confusion. Reviewed by: stevek
181 lines
4.4 KiB
Makefile
181 lines
4.4 KiB
Makefile
# $FreeBSD$
|
|
# $Id: meta.sys.mk,v 1.42 2021/12/13 05:50:55 sjg Exp $
|
|
|
|
#
|
|
# @(#) Copyright (c) 2010-2021, Simon J. Gerraty
|
|
#
|
|
# This file is provided in the hope that it will
|
|
# be of use. There is absolutely NO WARRANTY.
|
|
# Permission to copy, redistribute or otherwise
|
|
# use this file is hereby granted provided that
|
|
# the above copyright notice and this notice are
|
|
# left intact.
|
|
#
|
|
# Please send copies of changes and bug-fixes to:
|
|
# sjg@crufty.net
|
|
#
|
|
|
|
# include this if you want to enable meta mode
|
|
# for maximum benefit, requires filemon(4) driver.
|
|
|
|
.if ${MAKE_VERSION:U0} > 20100901
|
|
.if !target(.ERROR)
|
|
|
|
.-include <local.meta.sys.mk>
|
|
|
|
# absolute path to what we are reading.
|
|
_PARSEDIR = ${.PARSEDIR:tA}
|
|
|
|
.if !defined(SYS_MK_DIR)
|
|
SYS_MK_DIR := ${_PARSEDIR}
|
|
.endif
|
|
|
|
META_MODE += meta verbose
|
|
.if ${MAKE_VERSION:U0} > 20130323 && empty(.MAKE.PATH_FILEMON)
|
|
# we do not support filemon
|
|
META_MODE += nofilemon
|
|
MKDEP_MK ?= auto.dep.mk
|
|
.endif
|
|
|
|
.MAKE.MODE ?= ${META_MODE}
|
|
|
|
_filemon := ${.MAKE.PATH_FILEMON:U/dev/filemon}
|
|
|
|
.if empty(UPDATE_DEPENDFILE)
|
|
_make_mode := ${.MAKE.MODE} ${META_MODE}
|
|
.if ${_make_mode:M*read*} != "" || ${_make_mode:M*nofilemon*} != ""
|
|
# tell everyone we are not updating Makefile.depend*
|
|
UPDATE_DEPENDFILE = NO
|
|
.export UPDATE_DEPENDFILE
|
|
.endif
|
|
.if ${_filemon:T:Mfilemon} == "filemon"
|
|
.if ${UPDATE_DEPENDFILE:Uyes:tl} == "no" && !exists(${_filemon})
|
|
# we should not get upset
|
|
META_MODE += nofilemon
|
|
.export META_MODE
|
|
.endif
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(NO_SILENT)
|
|
.if ${MAKE_VERSION} > 20110818
|
|
# only be silent when we have a .meta file
|
|
META_MODE += silent=yes
|
|
.else
|
|
.SILENT:
|
|
.endif
|
|
.endif
|
|
|
|
# we use the pseudo machine "host" for the build host.
|
|
# this should be taken care of before we get here
|
|
.if ${OBJTOP:Ua} == ${HOST_OBJTOP:Ub}
|
|
MACHINE = host
|
|
.endif
|
|
|
|
.if !defined(MACHINE0)
|
|
# it can be handy to know which MACHINE kicked off the build
|
|
# for example, if using Makefild.depend for multiple machines,
|
|
# allowing only MACHINE0 to update can keep things simple.
|
|
MACHINE0 := ${MACHINE}
|
|
.export MACHINE0
|
|
.endif
|
|
|
|
.if !defined(META2DEPS)
|
|
.if defined(PYTHON) && exists(${PYTHON})
|
|
# we prefer the python version of this - it is much faster
|
|
META2DEPS ?= ${.PARSEDIR}/meta2deps.py
|
|
.else
|
|
META2DEPS ?= ${.PARSEDIR}/meta2deps.sh
|
|
.endif
|
|
META2DEPS := ${META2DEPS}
|
|
.export META2DEPS
|
|
.endif
|
|
|
|
MAKE_PRINT_VAR_ON_ERROR += \
|
|
.ERROR_TARGET \
|
|
.ERROR_META_FILE \
|
|
.MAKE.LEVEL \
|
|
MAKEFILE \
|
|
.MAKE.MODE
|
|
|
|
.if !defined(SB) && defined(SRCTOP)
|
|
SB = ${SRCTOP:H}
|
|
.endif
|
|
ERROR_LOGDIR ?= ${SB}/error
|
|
meta_error_log = ${ERROR_LOGDIR}/meta-${.MAKE.PID}.log
|
|
|
|
# we are not interested in make telling us a failure happened elsewhere
|
|
.ERROR: _metaError
|
|
_metaError: .NOMETA .NOTMAIN
|
|
-@[ "${.ERROR_META_FILE}" ] && { \
|
|
grep -q 'failure has been detected in another branch' ${.ERROR_META_FILE} && exit 0; \
|
|
mkdir -p ${meta_error_log:H}; \
|
|
cp ${.ERROR_META_FILE} ${meta_error_log}; \
|
|
echo "ERROR: log ${meta_error_log}" >&2; }; :
|
|
|
|
.endif
|
|
|
|
# Are we, after all, in meta mode?
|
|
.if ${.MAKE.MODE:Uno:Mmeta*} != ""
|
|
MKDEP_MK ?= meta.autodep.mk
|
|
|
|
.if ${.MAKE.MAKEFILES:M*sys.dependfile.mk} == ""
|
|
# this does all the smarts of setting .MAKE.DEPENDFILE
|
|
.-include <sys.dependfile.mk>
|
|
# check if we got anything sane
|
|
.if ${.MAKE.DEPENDFILE} == ".depend"
|
|
.undef .MAKE.DEPENDFILE
|
|
.endif
|
|
.MAKE.DEPENDFILE ?= Makefile.depend
|
|
.endif
|
|
|
|
# we can afford to use cookies to prevent some targets
|
|
# re-running needlessly
|
|
META_COOKIE_TOUCH?= touch ${COOKIE.${.TARGET}:U${.OBJDIR}/${.TARGET:T}}
|
|
META_NOPHONY=
|
|
META_NOECHO= :
|
|
|
|
# some targets involve old pre-built targets
|
|
# ignore mtime of shell
|
|
# and mtime of makefiles does not matter in meta mode
|
|
.MAKE.META.IGNORE_PATHS += \
|
|
${MAKEFILE} \
|
|
${MAKE_SHELL} \
|
|
${SHELL} \
|
|
${SYS_MK_DIR} \
|
|
|
|
|
|
.if ${UPDATE_DEPENDFILE:Uyes:tl} != "no"
|
|
.if ${.MAKEFLAGS:Uno:M-k} != ""
|
|
# make this more obvious
|
|
.warning Setting UPDATE_DEPENDFILE=NO due to -k
|
|
UPDATE_DEPENDFILE= NO
|
|
.export UPDATE_DEPENDFILE
|
|
.elif ${_filemon:T} == "filemon" && !exists(${_filemon})
|
|
.error ${.newline}ERROR: The filemon module (${_filemon}) is not loaded.
|
|
.endif
|
|
.endif
|
|
|
|
.if ${.MAKE.LEVEL} == 0
|
|
.if ${MK_DIRDEPS_BUILD:Uyes} == "yes"
|
|
# make sure dirdeps target exists and do it first
|
|
all: dirdeps .WAIT
|
|
dirdeps:
|
|
.NOPATH: dirdeps
|
|
|
|
.if defined(ALL_MACHINES)
|
|
# the first .MAIN: is what counts
|
|
# by default dirdeps is all we want at level0
|
|
.MAIN: dirdeps
|
|
.endif
|
|
.endif
|
|
|
|
.endif
|
|
.else
|
|
META_COOKIE_TOUCH=
|
|
# some targets need to be .PHONY in non-meta mode
|
|
META_NOPHONY= .PHONY
|
|
META_NOECHO= echo
|
|
.endif
|
|
.endif
|