xref: /freebsd/contrib/bmake/mk/meta.autodep.mk (revision 2eae894ca7c7c12b6cad81fdbfa6b632e5742ca3)
1*2eae894cSSimon J. Gerraty# $Id: meta.autodep.mk,v 1.50 2018/06/08 01:25:31 sjg Exp $
23cbdda60SSimon J. Gerraty
33cbdda60SSimon J. Gerraty#
43cbdda60SSimon J. Gerraty#	@(#) Copyright (c) 2010, Simon J. Gerraty
53cbdda60SSimon J. Gerraty#
63cbdda60SSimon J. Gerraty#	This file is provided in the hope that it will
73cbdda60SSimon J. Gerraty#	be of use.  There is absolutely NO WARRANTY.
83cbdda60SSimon J. Gerraty#	Permission to copy, redistribute or otherwise
93cbdda60SSimon J. Gerraty#	use this file is hereby granted provided that
103cbdda60SSimon J. Gerraty#	the above copyright notice and this notice are
113cbdda60SSimon J. Gerraty#	left intact.
123cbdda60SSimon J. Gerraty#
133cbdda60SSimon J. Gerraty#	Please send copies of changes and bug-fixes to:
143cbdda60SSimon J. Gerraty#	sjg@crufty.net
153cbdda60SSimon J. Gerraty#
163cbdda60SSimon J. Gerraty
173cbdda60SSimon J. Gerraty_this ?= ${.PARSEFILE}
183cbdda60SSimon J. Gerraty.if !target(__${_this}__)
193cbdda60SSimon J. Gerraty__${_this}__: .NOTMAIN
203cbdda60SSimon J. Gerraty
21e48f47ddSSimon J. Gerraty.-include <local.autodep.mk>
223cbdda60SSimon J. Gerraty
23*2eae894cSSimon J. GerratyPICO?= .pico
24*2eae894cSSimon J. Gerraty
253cbdda60SSimon J. Gerraty.if defined(SRCS)
263cbdda60SSimon J. Gerraty# it would be nice to be able to query .SUFFIXES
27*2eae894cSSimon J. GerratyOBJ_EXTENSIONS+= .o .po .lo ${PICO}
283cbdda60SSimon J. Gerraty
293cbdda60SSimon J. Gerraty# explicit dependencies help short-circuit .SUFFIX searches
303cbdda60SSimon J. GerratySRCS_DEP_FILTER+= N*.[hly]
313cbdda60SSimon J. Gerraty.for s in ${SRCS:${SRCS_DEP_FILTER:O:u:ts:}}
323cbdda60SSimon J. Gerraty.for e in ${OBJ_EXTENSIONS:O:u}
333cbdda60SSimon J. Gerraty.if !target(${s:T:R}$e)
343cbdda60SSimon J. Gerraty${s:T:R}$e: $s
353cbdda60SSimon J. Gerraty.endif
363cbdda60SSimon J. Gerraty.endfor
373cbdda60SSimon J. Gerraty.endfor
383cbdda60SSimon J. Gerraty.endif
393cbdda60SSimon J. Gerraty
403cbdda60SSimon J. Gerraty.if make(gendirdeps)
413cbdda60SSimon J. Gerraty# you are supposed to know what you are doing!
423cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = yes
433cbdda60SSimon J. Gerraty.elif !empty(.TARGETS) && !make(all)
443cbdda60SSimon J. Gerraty# do not update the *depend* files
453cbdda60SSimon J. Gerraty# unless we are building the entire directory or the default target.
463cbdda60SSimon J. Gerraty# NO means don't update .depend - or Makefile.depend*
473cbdda60SSimon J. Gerraty# no means update .depend but not Makefile.depend*
483cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO
493cbdda60SSimon J. Gerraty.elif ${.MAKEFLAGS:M-k} != ""
503cbdda60SSimon J. Gerraty# it is a bad idea to update anything
513cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO
523cbdda60SSimon J. Gerraty.endif
533cbdda60SSimon J. Gerraty
543cbdda60SSimon J. Gerraty_CURDIR ?= ${.CURDIR}
55ac3446e9SSimon J. Gerraty_OBJDIR ?= ${.OBJDIR}
56ac3446e9SSimon J. Gerraty_OBJTOP ?= ${OBJTOP}
57ac3446e9SSimon J. Gerraty_OBJROOT ?= ${OBJROOT:U${_OBJTOP}}
583cbdda60SSimon J. Gerraty_DEPENDFILE := ${_CURDIR}/${.MAKE.DEPENDFILE:T}
593cbdda60SSimon J. Gerraty
60e48f47ddSSimon J. Gerraty.if ${.MAKE.LEVEL} > 0 || ${BUILD_AT_LEVEL0:Uyes:tl} == "yes"
61e48f47ddSSimon J. Gerraty# do not allow auto update if we ever built this dir without filemon
62e48f47ddSSimon J. GerratyNO_FILEMON_COOKIE = .nofilemon
63e48f47ddSSimon J. GerratyCLEANFILES += ${NO_FILEMON_COOKIE}
64e48f47ddSSimon J. Gerraty.if ${.MAKE.MODE:Uno:Mnofilemon} != ""
65e48f47ddSSimon J. GerratyUPDATE_DEPENDFILE = NO
66e48f47ddSSimon J. Gerratyall: ${NO_FILEMON_COOKIE}
67e48f47ddSSimon J. Gerraty${NO_FILEMON_COOKIE}: .NOMETA
68e48f47ddSSimon J. Gerraty	@echo UPDATE_DEPENDFILE=NO > ${.TARGET}
69e48f47ddSSimon J. Gerraty.elif exists(${NO_FILEMON_COOKIE})
70e48f47ddSSimon J. GerratyUPDATE_DEPENDFILE = NO
71e48f47ddSSimon J. Gerraty.warning ${RELDIR} built with nofilemon; UPDATE_DEPENDFILE=NO
72e48f47ddSSimon J. Gerraty.endif
73e48f47ddSSimon J. Gerraty.endif
74e48f47ddSSimon J. Gerraty
753cbdda60SSimon J. Gerraty.if ${.MAKE.LEVEL} == 0
763cbdda60SSimon J. Gerraty.if ${BUILD_AT_LEVEL0:Uyes:tl} == "no"
773cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO
783cbdda60SSimon J. Gerraty.endif
793cbdda60SSimon J. Gerraty.endif
803cbdda60SSimon J. Gerraty.if !exists(${_DEPENDFILE})
813cbdda60SSimon J. Gerraty_bootstrap_dirdeps = yes
823cbdda60SSimon J. Gerraty.endif
833cbdda60SSimon J. Gerraty_bootstrap_dirdeps ?= no
843cbdda60SSimon J. GerratyUPDATE_DEPENDFILE ?= yes
853cbdda60SSimon J. Gerraty
863cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
873cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE}
883cbdda60SSimon J. Gerraty.endif
893cbdda60SSimon J. Gerraty
903cbdda60SSimon J. Gerraty.if !empty(XMAKE_META_FILE)
913cbdda60SSimon J. Gerraty.if exists(${.OBJDIR}/${XMAKE_META_FILE})
923cbdda60SSimon J. Gerraty# we cannot get accurate dependencies from an update build
933cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO
943cbdda60SSimon J. Gerraty.else
953cbdda60SSimon J. GerratyMETA_XTRAS += ${XMAKE_META_FILE}
963cbdda60SSimon J. Gerraty.endif
973cbdda60SSimon J. Gerraty.endif
983cbdda60SSimon J. Gerraty
993cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes" || exists(${_DEPENDFILE})
1003cbdda60SSimon J. Gerraty# if it isn't supposed to be touched by us the Makefile should have
1013cbdda60SSimon J. Gerraty# UPDATE_DEPENDFILE = no
1023cbdda60SSimon J. GerratyWANT_UPDATE_DEPENDFILE ?= yes
1033cbdda60SSimon J. Gerraty.endif
1043cbdda60SSimon J. Gerraty
1053cbdda60SSimon J. Gerraty.if ${WANT_UPDATE_DEPENDFILE:Uno:tl} != "no"
106be19d90bSSimon J. Gerraty.if ${.MAKE.MODE:Uno:Mmeta*} == "" || ${.MAKE.MODE:Uno:M*read*} != ""
1073cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = no
1083cbdda60SSimon J. Gerraty.endif
1093cbdda60SSimon J. Gerraty
1103cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
1113cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE}
1123cbdda60SSimon J. Gerraty.endif
1133cbdda60SSimon J. Gerraty
1143cbdda60SSimon J. Gerraty.if ${UPDATE_DEPENDFILE:tl} == "yes"
1153cbdda60SSimon J. Gerraty# sometimes we want .meta files generated to aid debugging/error detection
1163cbdda60SSimon J. Gerraty# but do not want to consider them for dependencies
1173cbdda60SSimon J. Gerraty# for example the result of running configure
1183cbdda60SSimon J. Gerraty# just make sure this is not empty
1193cbdda60SSimon J. GerratyMETA_FILE_FILTER ?= N.meta
1204c620fe5SSimon J. Gerraty# never consider these
1214c620fe5SSimon J. GerratyMETA_FILE_FILTER += Ndirdeps.cache*
1223cbdda60SSimon J. Gerraty
1233cbdda60SSimon J. Gerraty.if !empty(DPADD)
1243cbdda60SSimon J. Gerraty# if we have any non-libs in DPADD,
1253cbdda60SSimon J. Gerraty# they probably need to be paid attention to
1263cbdda60SSimon J. Gerraty.if !empty(DPLIBS)
1273cbdda60SSimon J. GerratyFORCE_DPADD = ${DPADD:${DPLIBS:${M_ListToSkip}}:${DPADD_LAST:${M_ListToSkip}}}
1283cbdda60SSimon J. Gerraty.else
1293cbdda60SSimon J. Gerraty_nonlibs := ${DPADD:T:Nlib*:N*include}
1303cbdda60SSimon J. Gerraty.if !empty(_nonlibs)
1313cbdda60SSimon J. GerratyFORCE_DPADD += ${_nonlibs:@x@${DPADD:M*/$x}@}
1323cbdda60SSimon J. Gerraty.endif
1333cbdda60SSimon J. Gerraty.endif
1343cbdda60SSimon J. Gerraty.endif
1353cbdda60SSimon J. Gerraty
1363cbdda60SSimon J. Gerraty.if !make(gendirdeps)
1373cbdda60SSimon J. Gerraty.END:	gendirdeps
1383cbdda60SSimon J. Gerraty.endif
1393cbdda60SSimon J. Gerraty
1403cbdda60SSimon J. Gerraty# if we don't have OBJS, then .depend isn't useful
1413cbdda60SSimon J. Gerraty.if !target(.depend) && (!empty(OBJS) || ${.ALLTARGETS:M*.o} != "")
1423cbdda60SSimon J. Gerraty# some makefiles and/or targets contain
1433cbdda60SSimon J. Gerraty# circular dependencies if you dig too deep
1443cbdda60SSimon J. Gerraty# (as meta mode is apt to do)
1455bcb7424SSimon J. Gerraty# so we provide a means of suppressing them.
1463cbdda60SSimon J. Gerraty# the input to the loop below is target: dependency
1473cbdda60SSimon J. Gerraty# with just one dependency per line.
1483cbdda60SSimon J. Gerraty# Also some targets are not really local, or use random names.
1493cbdda60SSimon J. Gerraty# Use local.autodep.mk to provide local additions!
1503cbdda60SSimon J. GerratySUPPRESS_DEPEND += \
1513cbdda60SSimon J. Gerraty	${SB:S,/,_,g}* \
1523cbdda60SSimon J. Gerraty	*:y.tab.c \
1533cbdda60SSimon J. Gerraty	*.c:*.c \
1543cbdda60SSimon J. Gerraty	*.h:*.h
1553cbdda60SSimon J. Gerraty
1563cbdda60SSimon J. Gerraty.NOPATH:	.depend
1573cbdda60SSimon J. Gerraty# we use ${.MAKE.META.CREATED} to trigger an update but
1583cbdda60SSimon J. Gerraty# we process using ${.MAKE.META.FILES}
1593cbdda60SSimon J. Gerraty# the double $$ defers initial evaluation
1603cbdda60SSimon J. Gerraty# if necessary, we fake .po dependencies, just so the result
1613cbdda60SSimon J. Gerraty# in Makefile.depend* is stable
1625bcb7424SSimon J. Gerraty# The current objdir may be referred to in various ways
1633cbdda60SSimon J. GerratyOBJDIR_REFS += ${.OBJDIR} ${.OBJDIR:tA} ${_OBJDIR} ${RELOBJTOP}/${RELDIR}
1643cbdda60SSimon J. Gerraty_depend = .depend
1653cbdda60SSimon J. Gerraty# it would be nice to be able to get .SUFFIXES as ${.SUFFIXES}
1663cbdda60SSimon J. Gerraty# we actually only care about the .SUFFIXES of files that might be
1673cbdda60SSimon J. Gerraty# generated by tools like yacc.
1683cbdda60SSimon J. GerratyDEPEND_SUFFIXES += .c .h .cpp .hpp .cxx .hxx .cc .hh
1693cbdda60SSimon J. Gerraty.depend: .NOMETA $${.MAKE.META.CREATED} ${_this}
1703cbdda60SSimon J. Gerraty	@echo "Updating $@: ${.OODATE:T:[1..8]}"
1713cbdda60SSimon J. Gerraty	@egrep -i '^R .*\.(${DEPEND_SUFFIXES:tl:O:u:S,^.,,:ts|})$$' /dev/null ${.MAKE.META.FILES:T:O:u:${META_FILE_FILTER:ts:}:M*o.meta} | \
1723cbdda60SSimon J. Gerraty	sed -e 's, \./, ,${OBJDIR_REFS:O:u:@d@;s, $d/, ,@};/\//d' \
1733cbdda60SSimon J. Gerraty		-e 's,^\([^/][^/]*\).meta...[0-9]* ,\1: ,' | \
1743cbdda60SSimon J. Gerraty	sort -u | \
1753cbdda60SSimon J. Gerraty	while read t d; do \
1763cbdda60SSimon J. Gerraty		case "$$d:" in $$t) continue;; esac; \
1773cbdda60SSimon J. Gerraty		case "$$t$$d" in ${SUPPRESS_DEPEND:U.:O:u:ts|}) continue;; esac; \
1783cbdda60SSimon J. Gerraty		echo $$t $$d; \
1793cbdda60SSimon J. Gerraty	done > $@.${.MAKE.PID}
1803cbdda60SSimon J. Gerraty	@case "${.MAKE.META.FILES:T:M*.po.*}" in \
1813cbdda60SSimon J. Gerraty	*.po.*) mv $@.${.MAKE.PID} $@;; \
1823cbdda60SSimon J. Gerraty	*) { cat $@.${.MAKE.PID}; \
183*2eae894cSSimon J. Gerraty	sed 's,\${PICO}:,.o:,;s,\.o:,.po:,' $@.${.MAKE.PID}; } | sort -u > $@; \
1843cbdda60SSimon J. Gerraty	rm -f $@.${.MAKE.PID};; \
1853cbdda60SSimon J. Gerraty	esac
1863cbdda60SSimon J. Gerraty.else
1873cbdda60SSimon J. Gerraty# make sure this exists
1883cbdda60SSimon J. Gerraty.depend:
1893cbdda60SSimon J. Gerraty# do _not_ assume that .depend is in any fit state for us to use
1903cbdda60SSimon J. GerratyCAT_DEPEND = /dev/null
1913cbdda60SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0
1923cbdda60SSimon J. Gerraty.export CAT_DEPEND
1933cbdda60SSimon J. Gerraty.endif
1943cbdda60SSimon J. Gerraty_depend =
1953cbdda60SSimon J. Gerraty.endif
1963cbdda60SSimon J. Gerraty
1973cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
1983cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} _depend=${_depend}
1993cbdda60SSimon J. Gerraty.endif
2003cbdda60SSimon J. Gerraty
2015bcb7424SSimon J. Gerraty.if ${UPDATE_DEPENDFILE} == "yes"
2023cbdda60SSimon J. Gerratygendirdeps:	${_DEPENDFILE}
2035bcb7424SSimon J. Gerraty.endif
2043cbdda60SSimon J. Gerraty
2053cbdda60SSimon J. Gerraty.if !target(${_DEPENDFILE})
2063cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes"
2073cbdda60SSimon J. Gerraty# We are boot-strapping a new directory
2083cbdda60SSimon J. Gerraty# Use DPADD to seed DIRDEPS
2093cbdda60SSimon J. Gerraty.if !empty(DPADD)
2103cbdda60SSimon J. Gerraty# anything which matches ${_OBJROOT}* but not ${_OBJTOP}*
2113cbdda60SSimon J. Gerraty# needs to be qualified in DIRDEPS
2123cbdda60SSimon J. Gerraty# The pseudo machine "host" is used for HOST_TARGET
213ac3446e9SSimon J. GerratyDIRDEPS += \
2143cbdda60SSimon J. Gerraty	${DPADD:M${_OBJTOP}*:H:C,${_OBJTOP}[^/]*/,,:N.:O:u} \
2153bebe729SSimon J. Gerraty	${DPADD:M${_OBJROOT}*:N${_OBJTOP}*:N${STAGE_ROOT:U${_OBJTOP}}/*:H:S,${_OBJROOT},,:C,^([^/]+)/(.*),\2.\1,:S,${HOST_TARGET}$,host,:N.*:O:u}
2163cbdda60SSimon J. Gerraty
2173cbdda60SSimon J. Gerraty.endif
2183cbdda60SSimon J. Gerraty.endif
2193cbdda60SSimon J. Gerraty
2203cbdda60SSimon J. Gerraty_gendirdeps_mutex =
2213cbdda60SSimon J. Gerraty.if defined(NEED_GENDIRDEPS_MUTEX)
2223cbdda60SSimon J. Gerraty# If a src dir gets built with multiple object dirs,
2233cbdda60SSimon J. Gerraty# we need a mutex.  Obviously, this is best avoided.
2243cbdda60SSimon J. Gerraty# Note if .MAKE.DEPENDFILE is common for all ${MACHINE}
2253cbdda60SSimon J. Gerraty# you either need to mutex, or ensure only one machine builds at a time!
2263cbdda60SSimon J. Gerraty# lockf is an example of a suitable tool
2273cbdda60SSimon J. GerratyLOCKF ?= /usr/bin/lockf
2283cbdda60SSimon J. Gerraty.if exists(${LOCKF})
2293cbdda60SSimon J. GerratyGENDIRDEPS_MUTEXER ?= ${LOCKF} -k
2303cbdda60SSimon J. Gerraty.endif
2313cbdda60SSimon J. Gerraty.if empty(GENDIRDEPS_MUTEXER)
2323cbdda60SSimon J. Gerraty.error NEED_GENDIRDEPS_MUTEX defined, but GENDIRDEPS_MUTEXER not set
2333cbdda60SSimon J. Gerraty.else
2343cbdda60SSimon J. Gerraty_gendirdeps_mutex = ${GENDIRDEPS_MUTEXER} ${GENDIRDEPS_MUTEX:U${_CURDIR}/Makefile}
2353cbdda60SSimon J. Gerraty.endif
2363cbdda60SSimon J. Gerraty.endif
2373cbdda60SSimon J. Gerraty
2383cbdda60SSimon J. Gerraty# If we have META_XTRAS we most likely did not create them
2393cbdda60SSimon J. Gerraty# but we need to behave as if we did.
2403cbdda60SSimon J. Gerraty# Avoid adding glob patterns to .MAKE.META.CREATED though.
2413cbdda60SSimon J. Gerraty.MAKE.META.CREATED += ${META_XTRAS:N*\**:O:u}
2423cbdda60SSimon J. Gerraty
2433cbdda60SSimon J. Gerraty.if make(gendirdeps)
2443cbdda60SSimon J. GerratyMETA_FILES = *.meta
2453cbdda60SSimon J. Gerraty.elif ${OPTIMIZE_OBJECT_META_FILES:Uno:tl} == "no"
2463cbdda60SSimon J. GerratyMETA_FILES = ${.MAKE.META.FILES:T:N.depend*:O:u}
2473cbdda60SSimon J. Gerraty.else
248*2eae894cSSimon J. Gerraty# if we have 1000's of .o.meta, ${PICO}.meta etc we need only look at one set
2493cbdda60SSimon J. Gerraty# it is left as an exercise for the reader to work out what this does
2503cbdda60SSimon J. GerratyMETA_FILES = ${.MAKE.META.FILES:T:N.depend*:N*o.meta:O:u} \
2513cbdda60SSimon J. Gerraty	${.MAKE.META.FILES:T:M*.${.MAKE.META.FILES:M*o.meta:R:E:O:u:[1]}.meta:O:u}
2523cbdda60SSimon J. Gerraty.endif
2533cbdda60SSimon J. Gerraty
2543cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
2553cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,}: ${_depend} ${.PARSEDIR}/gendirdeps.mk ${META2DEPS} xtras=${META_XTRAS}
2563cbdda60SSimon J. Gerraty.endif
2573cbdda60SSimon J. Gerraty
258494f7191SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0
259494f7191SSimon J. Gerraty.if ${UPDATE_DEPENDFILE} == "yes"
260494f7191SSimon J. Gerraty.-include <${.CURDIR}/${.MAKE.DEPENDFILE_PREFIX}.options>
261494f7191SSimon J. Gerraty.endif
262494f7191SSimon J. Gerraty.if !empty(GENDIRDEPS_FILTER)
2633cbdda60SSimon J. Gerraty.export GENDIRDEPS_FILTER
2643cbdda60SSimon J. Gerraty.endif
265*2eae894cSSimon J. Gerraty# export to avoid blowing command line limit
266*2eae894cSSimon J. GerratyMETA_FILES := ${META_XTRAS:U:O:u} ${META_FILES:U:T:O:u:${META_FILE_FILTER:ts:}}
267*2eae894cSSimon J. Gerraty.export META_FILES
268494f7191SSimon J. Gerraty.endif
2693cbdda60SSimon J. Gerraty
2703cbdda60SSimon J. Gerraty# we might have .../ in MAKESYSPATH
2713cbdda60SSimon J. Gerraty_makesyspath:= ${_PARSEDIR}
2723cbdda60SSimon J. Gerraty${_DEPENDFILE}: ${_depend} ${.PARSEDIR}/gendirdeps.mk  ${META2DEPS} $${.MAKE.META.CREATED}
2733cbdda60SSimon J. Gerraty	@echo Checking $@: ${.OODATE:T:[1..8]}
274e22fef7dSSimon J. Gerraty	@(cd . && ${GENDIRDEPS_ENV} \
2753cbdda60SSimon J. Gerraty	SKIP_GENDIRDEPS='${SKIP_GENDIRDEPS:O:u}' \
2763cbdda60SSimon J. Gerraty	DPADD='${FORCE_DPADD:O:u}' ${_gendirdeps_mutex} \
2773cbdda60SSimon J. Gerraty	MAKESYSPATH=${_makesyspath} \
278*2eae894cSSimon J. Gerraty	${.MAKE} -f gendirdeps.mk RELDIR=${RELDIR} _DEPENDFILE=${_DEPENDFILE})
2793cbdda60SSimon J. Gerraty	@test -s $@ && touch $@; :
2803cbdda60SSimon J. Gerraty.endif
2813cbdda60SSimon J. Gerraty
2823cbdda60SSimon J. Gerraty.endif
2833cbdda60SSimon J. Gerraty.endif
2843cbdda60SSimon J. Gerraty
2853cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes"
286db29cad8SSimon J. Gerraty.if ${BUILD_AT_LEVEL0:Uno} == "no"
287db29cad8SSimon J. GerratyDIRDEPS+= ${RELDIR}.${TARGET_SPEC:U${MACHINE}}
288db29cad8SSimon J. Gerraty.endif
2893cbdda60SSimon J. Gerraty# make sure this is included at least once
2903cbdda60SSimon J. Gerraty.include <dirdeps.mk>
2913cbdda60SSimon J. Gerraty.else
2923cbdda60SSimon J. Gerraty${_DEPENDFILE}: .PRECIOUS
2933cbdda60SSimon J. Gerraty.endif
2943cbdda60SSimon J. Gerraty
2953cbdda60SSimon J. GerratyCLEANFILES += *.meta filemon.* *.db
2965bcb7424SSimon J. Gerraty
2975bcb7424SSimon J. Gerraty# these make it easy to gather some stats
2985bcb7424SSimon J. Gerratynow_utc = ${%s:L:gmtime}
2995bcb7424SSimon J. Gerratystart_utc := ${now_utc}
3005bcb7424SSimon J. Gerraty
3015bcb7424SSimon J. Gerratymeta_stats= meta=${empty(.MAKE.META.FILES):?0:${.MAKE.META.FILES:[#]}} \
3025bcb7424SSimon J. Gerraty	created=${empty(.MAKE.META.CREATED):?0:${.MAKE.META.CREATED:[#]}}
3035bcb7424SSimon J. Gerraty
3045bcb7424SSimon J. Gerraty#.END: _reldir_finish
3055bcb7424SSimon J. Gerraty.if target(gendirdeps)
3065bcb7424SSimon J. Gerraty_reldir_finish: gendirdeps
3075bcb7424SSimon J. Gerraty.endif
3085bcb7424SSimon J. Gerraty_reldir_finish: .NOMETA
3095bcb7424SSimon J. Gerraty	@echo "${TIME_STAMP} Finished ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
3105bcb7424SSimon J. Gerraty
3115bcb7424SSimon J. Gerraty#.ERROR: _reldir_failed
3125bcb7424SSimon J. Gerraty_reldir_failed: .NOMETA
3135bcb7424SSimon J. Gerraty	@echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
3145bcb7424SSimon J. Gerraty
3155bcb7424SSimon J. Gerraty.if defined(WITH_META_STATS) && ${.MAKE.LEVEL} > 0
3165bcb7424SSimon J. Gerraty.END: _reldir_finish
3175bcb7424SSimon J. Gerraty.ERROR: _reldir_failed
3185bcb7424SSimon J. Gerraty.endif
3195bcb7424SSimon J. Gerraty
3203cbdda60SSimon J. Gerraty.endif
321