xref: /freebsd/contrib/bmake/mk/meta.autodep.mk (revision b0c40a00a67f611868fc0f10bde6b28eb75931be)
1*b0c40a00SSimon J. Gerraty# $Id: meta.autodep.mk,v 1.54 2021/03/06 17:03:18 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
232eae894cSSimon J. GerratyPICO?= .pico
242eae894cSSimon J. Gerraty
253cbdda60SSimon J. Gerraty.if defined(SRCS)
263cbdda60SSimon J. Gerraty# it would be nice to be able to query .SUFFIXES
272eae894cSSimon 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
602c3632d1SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0
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. GerratyUPDATE_DEPENDFILE = NO
773cbdda60SSimon J. Gerraty.endif
783cbdda60SSimon J. Gerraty.if !exists(${_DEPENDFILE})
793cbdda60SSimon J. Gerraty_bootstrap_dirdeps = yes
803cbdda60SSimon J. Gerraty.endif
813cbdda60SSimon J. Gerraty_bootstrap_dirdeps ?= no
823cbdda60SSimon J. GerratyUPDATE_DEPENDFILE ?= yes
833cbdda60SSimon J. Gerraty
843cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
853cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE}
863cbdda60SSimon J. Gerraty.endif
873cbdda60SSimon J. Gerraty
883cbdda60SSimon J. Gerraty.if !empty(XMAKE_META_FILE)
893cbdda60SSimon J. Gerraty.if exists(${.OBJDIR}/${XMAKE_META_FILE})
903cbdda60SSimon J. Gerraty# we cannot get accurate dependencies from an update build
913cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO
923cbdda60SSimon J. Gerraty.else
933cbdda60SSimon J. GerratyMETA_XTRAS += ${XMAKE_META_FILE}
943cbdda60SSimon J. Gerraty.endif
953cbdda60SSimon J. Gerraty.endif
963cbdda60SSimon J. Gerraty
973cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes" || exists(${_DEPENDFILE})
983cbdda60SSimon J. Gerraty# if it isn't supposed to be touched by us the Makefile should have
993cbdda60SSimon J. Gerraty# UPDATE_DEPENDFILE = no
1003cbdda60SSimon J. GerratyWANT_UPDATE_DEPENDFILE ?= yes
1013cbdda60SSimon J. Gerraty.endif
1023cbdda60SSimon J. Gerraty
1033cbdda60SSimon J. Gerraty.if ${WANT_UPDATE_DEPENDFILE:Uno:tl} != "no"
104be19d90bSSimon J. Gerraty.if ${.MAKE.MODE:Uno:Mmeta*} == "" || ${.MAKE.MODE:Uno:M*read*} != ""
1053cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = no
1063cbdda60SSimon J. Gerraty.endif
1073cbdda60SSimon J. Gerraty
1083cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
1093cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE}
1103cbdda60SSimon J. Gerraty.endif
1113cbdda60SSimon J. Gerraty
1123cbdda60SSimon J. Gerraty.if ${UPDATE_DEPENDFILE:tl} == "yes"
1133cbdda60SSimon J. Gerraty# sometimes we want .meta files generated to aid debugging/error detection
1143cbdda60SSimon J. Gerraty# but do not want to consider them for dependencies
1153cbdda60SSimon J. Gerraty# for example the result of running configure
1163cbdda60SSimon J. Gerraty# just make sure this is not empty
1173cbdda60SSimon J. GerratyMETA_FILE_FILTER ?= N.meta
1184c620fe5SSimon J. Gerraty# never consider these
1194c620fe5SSimon J. GerratyMETA_FILE_FILTER += Ndirdeps.cache*
1203cbdda60SSimon J. Gerraty
1213cbdda60SSimon J. Gerraty.if !empty(DPADD)
1223cbdda60SSimon J. Gerraty# if we have any non-libs in DPADD,
1233cbdda60SSimon J. Gerraty# they probably need to be paid attention to
1243cbdda60SSimon J. Gerraty.if !empty(DPLIBS)
1253cbdda60SSimon J. GerratyFORCE_DPADD = ${DPADD:${DPLIBS:${M_ListToSkip}}:${DPADD_LAST:${M_ListToSkip}}}
1263cbdda60SSimon J. Gerraty.else
1273cbdda60SSimon J. Gerraty_nonlibs := ${DPADD:T:Nlib*:N*include}
1283cbdda60SSimon J. Gerraty.if !empty(_nonlibs)
1293cbdda60SSimon J. GerratyFORCE_DPADD += ${_nonlibs:@x@${DPADD:M*/$x}@}
1303cbdda60SSimon J. Gerraty.endif
1313cbdda60SSimon J. Gerraty.endif
1323cbdda60SSimon J. Gerraty.endif
1333cbdda60SSimon J. Gerraty
1343cbdda60SSimon J. Gerraty.if !make(gendirdeps)
1353cbdda60SSimon J. Gerraty.END:	gendirdeps
1363cbdda60SSimon J. Gerraty.endif
1373cbdda60SSimon J. Gerraty
1383cbdda60SSimon J. Gerraty# if we don't have OBJS, then .depend isn't useful
1393cbdda60SSimon J. Gerraty.if !target(.depend) && (!empty(OBJS) || ${.ALLTARGETS:M*.o} != "")
1403cbdda60SSimon J. Gerraty# some makefiles and/or targets contain
1413cbdda60SSimon J. Gerraty# circular dependencies if you dig too deep
1423cbdda60SSimon J. Gerraty# (as meta mode is apt to do)
1435bcb7424SSimon J. Gerraty# so we provide a means of suppressing them.
1443cbdda60SSimon J. Gerraty# the input to the loop below is target: dependency
1453cbdda60SSimon J. Gerraty# with just one dependency per line.
1463cbdda60SSimon J. Gerraty# Also some targets are not really local, or use random names.
1473cbdda60SSimon J. Gerraty# Use local.autodep.mk to provide local additions!
1483cbdda60SSimon J. GerratySUPPRESS_DEPEND += \
1493cbdda60SSimon J. Gerraty	${SB:S,/,_,g}* \
1503cbdda60SSimon J. Gerraty	*:y.tab.c \
1513cbdda60SSimon J. Gerraty	*.c:*.c \
1523cbdda60SSimon J. Gerraty	*.h:*.h
1533cbdda60SSimon J. Gerraty
1543cbdda60SSimon J. Gerraty.NOPATH:	.depend
1553cbdda60SSimon J. Gerraty# we use ${.MAKE.META.CREATED} to trigger an update but
1563cbdda60SSimon J. Gerraty# we process using ${.MAKE.META.FILES}
1573cbdda60SSimon J. Gerraty# the double $$ defers initial evaluation
1583cbdda60SSimon J. Gerraty# if necessary, we fake .po dependencies, just so the result
1593cbdda60SSimon J. Gerraty# in Makefile.depend* is stable
1605bcb7424SSimon J. Gerraty# The current objdir may be referred to in various ways
1613cbdda60SSimon J. GerratyOBJDIR_REFS += ${.OBJDIR} ${.OBJDIR:tA} ${_OBJDIR} ${RELOBJTOP}/${RELDIR}
1623cbdda60SSimon J. Gerraty_depend = .depend
1633cbdda60SSimon J. Gerraty# it would be nice to be able to get .SUFFIXES as ${.SUFFIXES}
1643cbdda60SSimon J. Gerraty# we actually only care about the .SUFFIXES of files that might be
1653cbdda60SSimon J. Gerraty# generated by tools like yacc.
1663cbdda60SSimon J. GerratyDEPEND_SUFFIXES += .c .h .cpp .hpp .cxx .hxx .cc .hh
1673cbdda60SSimon J. Gerraty.depend: .NOMETA $${.MAKE.META.CREATED} ${_this}
1683cbdda60SSimon J. Gerraty	@echo "Updating $@: ${.OODATE:T:[1..8]}"
1693cbdda60SSimon 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} | \
1703cbdda60SSimon J. Gerraty	sed -e 's, \./, ,${OBJDIR_REFS:O:u:@d@;s, $d/, ,@};/\//d' \
1713cbdda60SSimon J. Gerraty		-e 's,^\([^/][^/]*\).meta...[0-9]* ,\1: ,' | \
1723cbdda60SSimon J. Gerraty	sort -u | \
1733cbdda60SSimon J. Gerraty	while read t d; do \
1743cbdda60SSimon J. Gerraty		case "$$d:" in $$t) continue;; esac; \
1753cbdda60SSimon J. Gerraty		case "$$t$$d" in ${SUPPRESS_DEPEND:U.:O:u:ts|}) continue;; esac; \
1763cbdda60SSimon J. Gerraty		echo $$t $$d; \
1773cbdda60SSimon J. Gerraty	done > $@.${.MAKE.PID}
1783cbdda60SSimon J. Gerraty	@case "${.MAKE.META.FILES:T:M*.po.*}" in \
1793cbdda60SSimon J. Gerraty	*.po.*) mv $@.${.MAKE.PID} $@;; \
1803cbdda60SSimon J. Gerraty	*) { cat $@.${.MAKE.PID}; \
181e2eeea75SSimon J. Gerraty	sed ${OBJ_EXTENSIONS:N.o:N.po:@o@-e 's,\$o:,.o:,'@} \
182e2eeea75SSimon J. Gerraty		-e 's,\.o:,.po:,' $@.${.MAKE.PID}; } | sort -u > $@; \
1833cbdda60SSimon J. Gerraty	rm -f $@.${.MAKE.PID};; \
1843cbdda60SSimon J. Gerraty	esac
1853cbdda60SSimon J. Gerraty.else
1863cbdda60SSimon J. Gerraty# make sure this exists
1873cbdda60SSimon J. Gerraty.depend:
1883cbdda60SSimon J. Gerraty# do _not_ assume that .depend is in any fit state for us to use
1893cbdda60SSimon J. GerratyCAT_DEPEND = /dev/null
1903cbdda60SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0
1913cbdda60SSimon J. Gerraty.export CAT_DEPEND
1923cbdda60SSimon J. Gerraty.endif
1933cbdda60SSimon J. Gerraty_depend =
1943cbdda60SSimon J. Gerraty.endif
1953cbdda60SSimon J. Gerraty
1963cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
1973cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} _depend=${_depend}
1983cbdda60SSimon J. Gerraty.endif
1993cbdda60SSimon J. Gerraty
2005bcb7424SSimon J. Gerraty.if ${UPDATE_DEPENDFILE} == "yes"
2013cbdda60SSimon J. Gerratygendirdeps:	${_DEPENDFILE}
2025bcb7424SSimon J. Gerraty.endif
2033cbdda60SSimon J. Gerraty
2043cbdda60SSimon J. Gerraty.if !target(${_DEPENDFILE})
2053cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes"
2063cbdda60SSimon J. Gerraty# We are boot-strapping a new directory
2073cbdda60SSimon J. Gerraty# Use DPADD to seed DIRDEPS
2083cbdda60SSimon J. Gerraty.if !empty(DPADD)
2093cbdda60SSimon J. Gerraty# anything which matches ${_OBJROOT}* but not ${_OBJTOP}*
2103cbdda60SSimon J. Gerraty# needs to be qualified in DIRDEPS
2113cbdda60SSimon J. Gerraty# The pseudo machine "host" is used for HOST_TARGET
212ac3446e9SSimon J. GerratyDIRDEPS += \
2133cbdda60SSimon J. Gerraty	${DPADD:M${_OBJTOP}*:H:C,${_OBJTOP}[^/]*/,,:N.:O:u} \
2143bebe729SSimon 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}
2153cbdda60SSimon J. Gerraty
2163cbdda60SSimon J. Gerraty.endif
2173cbdda60SSimon J. Gerraty.endif
2183cbdda60SSimon J. Gerraty
2193cbdda60SSimon J. Gerraty_gendirdeps_mutex =
2203cbdda60SSimon J. Gerraty.if defined(NEED_GENDIRDEPS_MUTEX)
2213cbdda60SSimon J. Gerraty# If a src dir gets built with multiple object dirs,
2223cbdda60SSimon J. Gerraty# we need a mutex.  Obviously, this is best avoided.
2233cbdda60SSimon J. Gerraty# Note if .MAKE.DEPENDFILE is common for all ${MACHINE}
2243cbdda60SSimon J. Gerraty# you either need to mutex, or ensure only one machine builds at a time!
2253cbdda60SSimon J. Gerraty# lockf is an example of a suitable tool
2263cbdda60SSimon J. GerratyLOCKF ?= /usr/bin/lockf
2273cbdda60SSimon J. Gerraty.if exists(${LOCKF})
2283cbdda60SSimon J. GerratyGENDIRDEPS_MUTEXER ?= ${LOCKF} -k
2293cbdda60SSimon J. Gerraty.endif
2303cbdda60SSimon J. Gerraty.if empty(GENDIRDEPS_MUTEXER)
2313cbdda60SSimon J. Gerraty.error NEED_GENDIRDEPS_MUTEX defined, but GENDIRDEPS_MUTEXER not set
2323cbdda60SSimon J. Gerraty.else
2333cbdda60SSimon J. Gerraty_gendirdeps_mutex = ${GENDIRDEPS_MUTEXER} ${GENDIRDEPS_MUTEX:U${_CURDIR}/Makefile}
2343cbdda60SSimon J. Gerraty.endif
2353cbdda60SSimon J. Gerraty.endif
2363cbdda60SSimon J. Gerraty
2373cbdda60SSimon J. Gerraty# If we have META_XTRAS we most likely did not create them
2383cbdda60SSimon J. Gerraty# but we need to behave as if we did.
2393cbdda60SSimon J. Gerraty# Avoid adding glob patterns to .MAKE.META.CREATED though.
2403cbdda60SSimon J. Gerraty.MAKE.META.CREATED += ${META_XTRAS:N*\**:O:u}
2413cbdda60SSimon J. Gerraty
2423cbdda60SSimon J. Gerraty.if make(gendirdeps)
2433cbdda60SSimon J. GerratyMETA_FILES = *.meta
2443cbdda60SSimon J. Gerraty.elif ${OPTIMIZE_OBJECT_META_FILES:Uno:tl} == "no"
2453cbdda60SSimon J. GerratyMETA_FILES = ${.MAKE.META.FILES:T:N.depend*:O:u}
2463cbdda60SSimon J. Gerraty.else
2472eae894cSSimon J. Gerraty# if we have 1000's of .o.meta, ${PICO}.meta etc we need only look at one set
2483cbdda60SSimon J. Gerraty# it is left as an exercise for the reader to work out what this does
2493cbdda60SSimon J. GerratyMETA_FILES = ${.MAKE.META.FILES:T:N.depend*:N*o.meta:O:u} \
2503cbdda60SSimon J. Gerraty	${.MAKE.META.FILES:T:M*.${.MAKE.META.FILES:M*o.meta:R:E:O:u:[1]}.meta:O:u}
2513cbdda60SSimon J. Gerraty.endif
2523cbdda60SSimon J. Gerraty
2533cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != ""
2543cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,}: ${_depend} ${.PARSEDIR}/gendirdeps.mk ${META2DEPS} xtras=${META_XTRAS}
2553cbdda60SSimon J. Gerraty.endif
2563cbdda60SSimon J. Gerraty
257494f7191SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0
258494f7191SSimon J. Gerraty.if ${UPDATE_DEPENDFILE} == "yes"
259494f7191SSimon J. Gerraty.-include <${.CURDIR}/${.MAKE.DEPENDFILE_PREFIX}.options>
260494f7191SSimon J. Gerraty.endif
261494f7191SSimon J. Gerraty.if !empty(GENDIRDEPS_FILTER)
2623cbdda60SSimon J. Gerraty.export GENDIRDEPS_FILTER
2633cbdda60SSimon J. Gerraty.endif
2642eae894cSSimon J. Gerraty# export to avoid blowing command line limit
2652eae894cSSimon J. GerratyMETA_FILES := ${META_XTRAS:U:O:u} ${META_FILES:U:T:O:u:${META_FILE_FILTER:ts:}}
2662eae894cSSimon J. Gerraty.export META_FILES
267494f7191SSimon J. Gerraty.endif
2683cbdda60SSimon J. Gerraty
2693cbdda60SSimon J. Gerraty# we might have .../ in MAKESYSPATH
2703cbdda60SSimon J. Gerraty_makesyspath:= ${_PARSEDIR}
2713cbdda60SSimon J. Gerraty${_DEPENDFILE}: ${_depend} ${.PARSEDIR}/gendirdeps.mk  ${META2DEPS} $${.MAKE.META.CREATED}
2723cbdda60SSimon J. Gerraty	@echo Checking $@: ${.OODATE:T:[1..8]}
273e22fef7dSSimon J. Gerraty	@(cd . && ${GENDIRDEPS_ENV} \
2743cbdda60SSimon J. Gerraty	SKIP_GENDIRDEPS='${SKIP_GENDIRDEPS:O:u}' \
2753cbdda60SSimon J. Gerraty	DPADD='${FORCE_DPADD:O:u}' ${_gendirdeps_mutex} \
2763cbdda60SSimon J. Gerraty	MAKESYSPATH=${_makesyspath} \
2772eae894cSSimon J. Gerraty	${.MAKE} -f gendirdeps.mk RELDIR=${RELDIR} _DEPENDFILE=${_DEPENDFILE})
2783cbdda60SSimon J. Gerraty	@test -s $@ && touch $@; :
2793cbdda60SSimon J. Gerraty.endif
2803cbdda60SSimon J. Gerraty
2813cbdda60SSimon J. Gerraty.endif
2823cbdda60SSimon J. Gerraty.endif
2833cbdda60SSimon J. Gerraty
2843cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes"
285db29cad8SSimon J. GerratyDIRDEPS+= ${RELDIR}.${TARGET_SPEC:U${MACHINE}}
2863cbdda60SSimon J. Gerraty# make sure this is included at least once
2873cbdda60SSimon J. Gerraty.include <dirdeps.mk>
2883cbdda60SSimon J. Gerraty.else
2893cbdda60SSimon J. Gerraty${_DEPENDFILE}: .PRECIOUS
2903cbdda60SSimon J. Gerraty.endif
2913cbdda60SSimon J. Gerraty
2923cbdda60SSimon J. GerratyCLEANFILES += *.meta filemon.* *.db
2935bcb7424SSimon J. Gerraty
2945bcb7424SSimon J. Gerraty# these make it easy to gather some stats
2955bcb7424SSimon J. Gerratynow_utc = ${%s:L:gmtime}
2965bcb7424SSimon J. Gerratystart_utc := ${now_utc}
2975bcb7424SSimon J. Gerraty
2985bcb7424SSimon J. Gerratymeta_stats= meta=${empty(.MAKE.META.FILES):?0:${.MAKE.META.FILES:[#]}} \
2995bcb7424SSimon J. Gerraty	created=${empty(.MAKE.META.CREATED):?0:${.MAKE.META.CREATED:[#]}}
3005bcb7424SSimon J. Gerraty
301*b0c40a00SSimon J. Gerraty.if !target(_reldir_finish)
3025bcb7424SSimon J. Gerraty#.END: _reldir_finish
3035bcb7424SSimon J. Gerraty.if target(gendirdeps)
3045bcb7424SSimon J. Gerraty_reldir_finish: gendirdeps
3055bcb7424SSimon J. Gerraty.endif
3065bcb7424SSimon J. Gerraty_reldir_finish: .NOMETA
3075bcb7424SSimon J. Gerraty	@echo "${TIME_STAMP} Finished ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
308*b0c40a00SSimon J. Gerraty.endif
3095bcb7424SSimon J. Gerraty
310*b0c40a00SSimon J. Gerraty.if !target(_reldir_failed)
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}"
314*b0c40a00SSimon J. Gerraty.endif
3155bcb7424SSimon J. Gerraty
3162c3632d1SSimon J. Gerraty.if !defined(WITHOUT_META_STATS) && ${.MAKE.LEVEL} > 0
3175bcb7424SSimon J. Gerraty.END: _reldir_finish
3185bcb7424SSimon J. Gerraty.ERROR: _reldir_failed
3195bcb7424SSimon J. Gerraty.endif
3205bcb7424SSimon J. Gerraty
3213cbdda60SSimon J. Gerraty.endif
322