1*148ee845SSimon J. Gerraty# $Id: meta.autodep.mk,v 1.58 2023/05/25 22:33:23 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) 2612904384SSimon J. Gerraty.if ${MAKE_VERSION:U0} >= 20211212 2712904384SSimon J. GerratyOBJ_EXTENSIONS += ${.SUFFIXES:M*o} 2812904384SSimon J. Gerraty.else 293cbdda60SSimon J. Gerraty# it would be nice to be able to query .SUFFIXES 302eae894cSSimon J. GerratyOBJ_EXTENSIONS += .o .po .lo ${PICO} 3112904384SSimon J. Gerraty.endif 323cbdda60SSimon J. Gerraty 333cbdda60SSimon J. Gerraty# explicit dependencies help short-circuit .SUFFIX searches 343cbdda60SSimon J. GerratySRCS_DEP_FILTER+= N*.[hly] 353cbdda60SSimon J. Gerraty.for s in ${SRCS:${SRCS_DEP_FILTER:O:u:ts:}} 363cbdda60SSimon J. Gerraty.for e in ${OBJ_EXTENSIONS:O:u} 373cbdda60SSimon J. Gerraty.if !target(${s:T:R}$e) 383cbdda60SSimon J. Gerraty${s:T:R}$e: $s 393cbdda60SSimon J. Gerraty.endif 403cbdda60SSimon J. Gerraty.endfor 413cbdda60SSimon J. Gerraty.endfor 423cbdda60SSimon J. Gerraty.endif 433cbdda60SSimon J. Gerraty 443cbdda60SSimon J. Gerraty.if make(gendirdeps) 453cbdda60SSimon J. Gerraty# you are supposed to know what you are doing! 463cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = yes 473cbdda60SSimon J. Gerraty.elif !empty(.TARGETS) && !make(all) 483cbdda60SSimon J. Gerraty# do not update the *depend* files 493cbdda60SSimon J. Gerraty# unless we are building the entire directory or the default target. 503cbdda60SSimon J. Gerraty# NO means don't update .depend - or Makefile.depend* 513cbdda60SSimon J. Gerraty# no means update .depend but not Makefile.depend* 523cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO 533cbdda60SSimon J. Gerraty.elif ${.MAKEFLAGS:M-k} != "" 543cbdda60SSimon J. Gerraty# it is a bad idea to update anything 553cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO 563cbdda60SSimon J. Gerraty.endif 573cbdda60SSimon J. Gerraty 583cbdda60SSimon J. Gerraty_CURDIR ?= ${.CURDIR} 59ac3446e9SSimon J. Gerraty_OBJDIR ?= ${.OBJDIR} 60ac3446e9SSimon J. Gerraty_OBJTOP ?= ${OBJTOP} 61ac3446e9SSimon J. Gerraty_OBJROOT ?= ${OBJROOT:U${_OBJTOP}} 623cbdda60SSimon J. Gerraty_DEPENDFILE := ${_CURDIR}/${.MAKE.DEPENDFILE:T} 633cbdda60SSimon J. Gerraty 642c3632d1SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0 65e48f47ddSSimon J. Gerraty# do not allow auto update if we ever built this dir without filemon 66e48f47ddSSimon J. GerratyNO_FILEMON_COOKIE = .nofilemon 67e48f47ddSSimon J. GerratyCLEANFILES += ${NO_FILEMON_COOKIE} 68e48f47ddSSimon J. Gerraty.if ${.MAKE.MODE:Uno:Mnofilemon} != "" 69e48f47ddSSimon J. GerratyUPDATE_DEPENDFILE = NO 70e48f47ddSSimon J. Gerratyall: ${NO_FILEMON_COOKIE} 71e48f47ddSSimon J. Gerraty${NO_FILEMON_COOKIE}: .NOMETA 72e48f47ddSSimon J. Gerraty @echo UPDATE_DEPENDFILE=NO > ${.TARGET} 73e48f47ddSSimon J. Gerraty.elif exists(${NO_FILEMON_COOKIE}) 74e48f47ddSSimon J. GerratyUPDATE_DEPENDFILE = NO 75e48f47ddSSimon J. Gerraty.warning ${RELDIR} built with nofilemon; UPDATE_DEPENDFILE=NO 76e48f47ddSSimon J. Gerraty.endif 77e48f47ddSSimon J. Gerraty.endif 78e48f47ddSSimon J. Gerraty 793cbdda60SSimon J. Gerraty.if ${.MAKE.LEVEL} == 0 803cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO 813cbdda60SSimon J. Gerraty.endif 823cbdda60SSimon J. Gerraty.if !exists(${_DEPENDFILE}) 833cbdda60SSimon J. Gerraty_bootstrap_dirdeps = yes 843cbdda60SSimon J. Gerraty.endif 853cbdda60SSimon J. Gerraty_bootstrap_dirdeps ?= no 863cbdda60SSimon J. GerratyUPDATE_DEPENDFILE ?= yes 873cbdda60SSimon J. Gerraty 883cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" 893cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE} 903cbdda60SSimon J. Gerraty.endif 913cbdda60SSimon J. Gerraty 923cbdda60SSimon J. Gerraty.if !empty(XMAKE_META_FILE) 933cbdda60SSimon J. Gerraty.if exists(${.OBJDIR}/${XMAKE_META_FILE}) 943cbdda60SSimon J. Gerraty# we cannot get accurate dependencies from an update build 953cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = NO 963cbdda60SSimon J. Gerraty.else 973cbdda60SSimon J. GerratyMETA_XTRAS += ${XMAKE_META_FILE} 983cbdda60SSimon J. Gerraty.endif 993cbdda60SSimon J. Gerraty.endif 1003cbdda60SSimon J. Gerraty 1013cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes" || exists(${_DEPENDFILE}) 1023cbdda60SSimon J. Gerraty# if it isn't supposed to be touched by us the Makefile should have 1033cbdda60SSimon J. Gerraty# UPDATE_DEPENDFILE = no 1043cbdda60SSimon J. GerratyWANT_UPDATE_DEPENDFILE ?= yes 1053cbdda60SSimon J. Gerraty.endif 1063cbdda60SSimon J. Gerraty 1073cbdda60SSimon J. Gerraty.if ${WANT_UPDATE_DEPENDFILE:Uno:tl} != "no" 108be19d90bSSimon J. Gerraty.if ${.MAKE.MODE:Uno:Mmeta*} == "" || ${.MAKE.MODE:Uno:M*read*} != "" 1093cbdda60SSimon J. GerratyUPDATE_DEPENDFILE = no 1103cbdda60SSimon J. Gerraty.endif 1113cbdda60SSimon J. Gerraty 1123cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" 1133cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE} 1143cbdda60SSimon J. Gerraty.endif 1153cbdda60SSimon J. Gerraty 1163cbdda60SSimon J. Gerraty.if ${UPDATE_DEPENDFILE:tl} == "yes" 1173cbdda60SSimon J. Gerraty# sometimes we want .meta files generated to aid debugging/error detection 1183cbdda60SSimon J. Gerraty# but do not want to consider them for dependencies 1193cbdda60SSimon J. Gerraty# for example the result of running configure 1203cbdda60SSimon J. Gerraty# just make sure this is not empty 1213cbdda60SSimon J. GerratyMETA_FILE_FILTER ?= N.meta 1224c620fe5SSimon J. Gerraty# never consider these 1234c620fe5SSimon J. GerratyMETA_FILE_FILTER += Ndirdeps.cache* 1243cbdda60SSimon J. Gerraty 1253cbdda60SSimon J. Gerraty.if !empty(DPADD) 1263cbdda60SSimon J. Gerraty# if we have any non-libs in DPADD, 1273cbdda60SSimon J. Gerraty# they probably need to be paid attention to 1283cbdda60SSimon J. Gerraty.if !empty(DPLIBS) 1293cbdda60SSimon J. GerratyFORCE_DPADD = ${DPADD:${DPLIBS:${M_ListToSkip}}:${DPADD_LAST:${M_ListToSkip}}} 1303cbdda60SSimon J. Gerraty.else 1313cbdda60SSimon J. Gerraty_nonlibs := ${DPADD:T:Nlib*:N*include} 1323cbdda60SSimon J. Gerraty.if !empty(_nonlibs) 1333cbdda60SSimon J. GerratyFORCE_DPADD += ${_nonlibs:@x@${DPADD:M*/$x}@} 1343cbdda60SSimon J. Gerraty.endif 1353cbdda60SSimon J. Gerraty.endif 1363cbdda60SSimon J. Gerraty.endif 1373cbdda60SSimon J. Gerraty 1383cbdda60SSimon J. Gerraty.if !make(gendirdeps) 1393cbdda60SSimon J. Gerraty.END: gendirdeps 1403cbdda60SSimon J. Gerraty.endif 1413cbdda60SSimon J. Gerraty 142c1d01b5fSSimon J. Gerraty.if ${LOCAL_DEPENDS_GUARD:U} == "no" 143c1d01b5fSSimon J. Gerraty.depend: 144c1d01b5fSSimon J. Gerraty.endif 145c1d01b5fSSimon J. Gerraty 1463cbdda60SSimon J. Gerraty# if we don't have OBJS, then .depend isn't useful 1473cbdda60SSimon J. Gerraty.if !target(.depend) && (!empty(OBJS) || ${.ALLTARGETS:M*.o} != "") 1483cbdda60SSimon J. Gerraty# some makefiles and/or targets contain 1493cbdda60SSimon J. Gerraty# circular dependencies if you dig too deep 1503cbdda60SSimon J. Gerraty# (as meta mode is apt to do) 1515bcb7424SSimon J. Gerraty# so we provide a means of suppressing them. 1523cbdda60SSimon J. Gerraty# the input to the loop below is target: dependency 1533cbdda60SSimon J. Gerraty# with just one dependency per line. 1543cbdda60SSimon J. Gerraty# Also some targets are not really local, or use random names. 1553cbdda60SSimon J. Gerraty# Use local.autodep.mk to provide local additions! 1563cbdda60SSimon J. GerratySUPPRESS_DEPEND += \ 1573cbdda60SSimon J. Gerraty ${SB:S,/,_,g}* \ 1583cbdda60SSimon J. Gerraty *:y.tab.c \ 1593cbdda60SSimon J. Gerraty *.c:*.c \ 1603cbdda60SSimon J. Gerraty *.h:*.h 1613cbdda60SSimon J. Gerraty 1623cbdda60SSimon J. Gerraty.NOPATH: .depend 1633cbdda60SSimon J. Gerraty# we use ${.MAKE.META.CREATED} to trigger an update but 1643cbdda60SSimon J. Gerraty# we process using ${.MAKE.META.FILES} 1653cbdda60SSimon J. Gerraty# the double $$ defers initial evaluation 1663cbdda60SSimon J. Gerraty# if necessary, we fake .po dependencies, just so the result 1673cbdda60SSimon J. Gerraty# in Makefile.depend* is stable 1685bcb7424SSimon J. Gerraty# The current objdir may be referred to in various ways 1693cbdda60SSimon J. GerratyOBJDIR_REFS += ${.OBJDIR} ${.OBJDIR:tA} ${_OBJDIR} ${RELOBJTOP}/${RELDIR} 1703cbdda60SSimon J. Gerraty_depend = .depend 1713cbdda60SSimon J. Gerraty# it would be nice to be able to get .SUFFIXES as ${.SUFFIXES} 1723cbdda60SSimon J. Gerraty# we actually only care about the .SUFFIXES of files that might be 1733cbdda60SSimon J. Gerraty# generated by tools like yacc. 17412904384SSimon J. Gerraty.if ${MAKE_VERSION:U0} >= 20211212 17512904384SSimon J. GerratyDEPEND_SUFFIXES += ${.SUFFIXES:N.sh:N*[0-9aFfglopmnrSsty]} 17612904384SSimon J. Gerraty.else 1773cbdda60SSimon J. GerratyDEPEND_SUFFIXES += .c .h .cpp .hpp .cxx .hxx .cc .hh 17812904384SSimon J. Gerraty.endif 1793cbdda60SSimon J. Gerraty.depend: .NOMETA $${.MAKE.META.CREATED} ${_this} 1803cbdda60SSimon J. Gerraty @echo "Updating $@: ${.OODATE:T:[1..8]}" 1814fde40d9SSimon J. Gerraty @${EGREP:Uegrep} -i '^R .*\.(${DEPEND_SUFFIXES:tl:O:u:S,^.,,:ts|})$$' /dev/null ${.MAKE.META.FILES:T:O:u:${META_FILE_FILTER:ts:}:M*o.meta} | \ 1823cbdda60SSimon J. Gerraty sed -e 's, \./, ,${OBJDIR_REFS:O:u:@d@;s, $d/, ,@};/\//d' \ 1833cbdda60SSimon J. Gerraty -e 's,^\([^/][^/]*\).meta...[0-9]* ,\1: ,' | \ 1843cbdda60SSimon J. Gerraty sort -u | \ 1853cbdda60SSimon J. Gerraty while read t d; do \ 1863cbdda60SSimon J. Gerraty case "$$d:" in $$t) continue;; esac; \ 1873cbdda60SSimon J. Gerraty case "$$t$$d" in ${SUPPRESS_DEPEND:U.:O:u:ts|}) continue;; esac; \ 1883cbdda60SSimon J. Gerraty echo $$t $$d; \ 1893cbdda60SSimon J. Gerraty done > $@.${.MAKE.PID} 1903cbdda60SSimon J. Gerraty @case "${.MAKE.META.FILES:T:M*.po.*}" in \ 1913cbdda60SSimon J. Gerraty *.po.*) mv $@.${.MAKE.PID} $@;; \ 1923cbdda60SSimon J. Gerraty *) { cat $@.${.MAKE.PID}; \ 193e2eeea75SSimon J. Gerraty sed ${OBJ_EXTENSIONS:N.o:N.po:@o@-e 's,\$o:,.o:,'@} \ 194e2eeea75SSimon J. Gerraty -e 's,\.o:,.po:,' $@.${.MAKE.PID}; } | sort -u > $@; \ 1953cbdda60SSimon J. Gerraty rm -f $@.${.MAKE.PID};; \ 1963cbdda60SSimon J. Gerraty esac 1973cbdda60SSimon J. Gerraty.else 1983cbdda60SSimon J. Gerraty# make sure this exists 1993cbdda60SSimon J. Gerraty.depend: 2003cbdda60SSimon J. Gerraty# do _not_ assume that .depend is in any fit state for us to use 2013cbdda60SSimon J. GerratyCAT_DEPEND = /dev/null 2023cbdda60SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0 2033cbdda60SSimon J. Gerraty.export CAT_DEPEND 2043cbdda60SSimon J. Gerraty.endif 2053cbdda60SSimon J. Gerraty_depend = 2063cbdda60SSimon J. Gerraty.endif 2073cbdda60SSimon J. Gerraty 2083cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" 2093cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,} _depend=${_depend} 2103cbdda60SSimon J. Gerraty.endif 2113cbdda60SSimon J. Gerraty 2125bcb7424SSimon J. Gerraty.if ${UPDATE_DEPENDFILE} == "yes" 213*148ee845SSimon J. Gerratygendirdeps: beforegendirdeps .WAIT ${_DEPENDFILE} 214*148ee845SSimon J. Gerratybeforegendirdeps: 2155bcb7424SSimon J. Gerraty.endif 2163cbdda60SSimon J. Gerraty 2173cbdda60SSimon J. Gerraty.if !target(${_DEPENDFILE}) 2183cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes" 2193cbdda60SSimon J. Gerraty# We are boot-strapping a new directory 2203cbdda60SSimon J. Gerraty# Use DPADD to seed DIRDEPS 2213cbdda60SSimon J. Gerraty.if !empty(DPADD) 2223cbdda60SSimon J. Gerraty# anything which matches ${_OBJROOT}* but not ${_OBJTOP}* 2233cbdda60SSimon J. Gerraty# needs to be qualified in DIRDEPS 2243cbdda60SSimon J. Gerraty# The pseudo machine "host" is used for HOST_TARGET 225ac3446e9SSimon J. GerratyDIRDEPS += \ 2263cbdda60SSimon J. Gerraty ${DPADD:M${_OBJTOP}*:H:C,${_OBJTOP}[^/]*/,,:N.:O:u} \ 2273bebe729SSimon 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} 2283cbdda60SSimon J. Gerraty 2293cbdda60SSimon J. Gerraty.endif 2303cbdda60SSimon J. Gerraty.endif 2313cbdda60SSimon J. Gerraty 2323cbdda60SSimon J. Gerraty_gendirdeps_mutex = 2333cbdda60SSimon J. Gerraty.if defined(NEED_GENDIRDEPS_MUTEX) 2343cbdda60SSimon J. Gerraty# If a src dir gets built with multiple object dirs, 2353cbdda60SSimon J. Gerraty# we need a mutex. Obviously, this is best avoided. 2363cbdda60SSimon J. Gerraty# Note if .MAKE.DEPENDFILE is common for all ${MACHINE} 2373cbdda60SSimon J. Gerraty# you either need to mutex, or ensure only one machine builds at a time! 2383cbdda60SSimon J. Gerraty# lockf is an example of a suitable tool 2393cbdda60SSimon J. GerratyLOCKF ?= /usr/bin/lockf 2403cbdda60SSimon J. Gerraty.if exists(${LOCKF}) 2413cbdda60SSimon J. GerratyGENDIRDEPS_MUTEXER ?= ${LOCKF} -k 2423cbdda60SSimon J. Gerraty.endif 2433cbdda60SSimon J. Gerraty.if empty(GENDIRDEPS_MUTEXER) 2443cbdda60SSimon J. Gerraty.error NEED_GENDIRDEPS_MUTEX defined, but GENDIRDEPS_MUTEXER not set 2453cbdda60SSimon J. Gerraty.else 2463cbdda60SSimon J. Gerraty_gendirdeps_mutex = ${GENDIRDEPS_MUTEXER} ${GENDIRDEPS_MUTEX:U${_CURDIR}/Makefile} 2473cbdda60SSimon J. Gerraty.endif 2483cbdda60SSimon J. Gerraty.endif 2493cbdda60SSimon J. Gerraty 2503cbdda60SSimon J. Gerraty# If we have META_XTRAS we most likely did not create them 2513cbdda60SSimon J. Gerraty# but we need to behave as if we did. 2523cbdda60SSimon J. Gerraty# Avoid adding glob patterns to .MAKE.META.CREATED though. 2533cbdda60SSimon J. Gerraty.MAKE.META.CREATED += ${META_XTRAS:N*\**:O:u} 2543cbdda60SSimon J. Gerraty 2553cbdda60SSimon J. Gerraty.if make(gendirdeps) 2563cbdda60SSimon J. GerratyMETA_FILES = *.meta 2573cbdda60SSimon J. Gerraty.elif ${OPTIMIZE_OBJECT_META_FILES:Uno:tl} == "no" 2583cbdda60SSimon J. GerratyMETA_FILES = ${.MAKE.META.FILES:T:N.depend*:O:u} 2593cbdda60SSimon J. Gerraty.else 2602eae894cSSimon J. Gerraty# if we have 1000's of .o.meta, ${PICO}.meta etc we need only look at one set 2613cbdda60SSimon J. Gerraty# it is left as an exercise for the reader to work out what this does 2623cbdda60SSimon J. GerratyMETA_FILES = ${.MAKE.META.FILES:T:N.depend*:N*o.meta:O:u} \ 2633cbdda60SSimon J. Gerraty ${.MAKE.META.FILES:T:M*.${.MAKE.META.FILES:M*o.meta:R:E:O:u:[1]}.meta:O:u} 2643cbdda60SSimon J. Gerraty.endif 2653cbdda60SSimon J. Gerraty 2663cbdda60SSimon J. Gerraty.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" 2673cbdda60SSimon J. Gerraty.info ${_DEPENDFILE:S,${SRCTOP}/,,}: ${_depend} ${.PARSEDIR}/gendirdeps.mk ${META2DEPS} xtras=${META_XTRAS} 2683cbdda60SSimon J. Gerraty.endif 2693cbdda60SSimon J. Gerraty 270494f7191SSimon J. Gerraty.if ${.MAKE.LEVEL} > 0 271494f7191SSimon J. Gerraty.if ${UPDATE_DEPENDFILE} == "yes" 272494f7191SSimon J. Gerraty.-include <${.CURDIR}/${.MAKE.DEPENDFILE_PREFIX}.options> 273494f7191SSimon J. Gerraty.endif 274494f7191SSimon J. Gerraty.if !empty(GENDIRDEPS_FILTER) 2753cbdda60SSimon J. Gerraty.export GENDIRDEPS_FILTER 2763cbdda60SSimon J. Gerraty.endif 2772eae894cSSimon J. Gerraty# export to avoid blowing command line limit 2782eae894cSSimon J. GerratyMETA_FILES := ${META_XTRAS:U:O:u} ${META_FILES:U:T:O:u:${META_FILE_FILTER:ts:}} 2792eae894cSSimon J. Gerraty.export META_FILES 280494f7191SSimon J. Gerraty.endif 2813cbdda60SSimon J. Gerraty 2823cbdda60SSimon J. Gerraty# we might have .../ in MAKESYSPATH 2833cbdda60SSimon J. Gerraty_makesyspath:= ${_PARSEDIR} 2843cbdda60SSimon J. Gerraty${_DEPENDFILE}: ${_depend} ${.PARSEDIR}/gendirdeps.mk ${META2DEPS} $${.MAKE.META.CREATED} 2853cbdda60SSimon J. Gerraty @echo Checking $@: ${.OODATE:T:[1..8]} 286e22fef7dSSimon J. Gerraty @(cd . && ${GENDIRDEPS_ENV} \ 2873cbdda60SSimon J. Gerraty SKIP_GENDIRDEPS='${SKIP_GENDIRDEPS:O:u}' \ 2883cbdda60SSimon J. Gerraty DPADD='${FORCE_DPADD:O:u}' ${_gendirdeps_mutex} \ 2893cbdda60SSimon J. Gerraty MAKESYSPATH=${_makesyspath} \ 2902eae894cSSimon J. Gerraty ${.MAKE} -f gendirdeps.mk RELDIR=${RELDIR} _DEPENDFILE=${_DEPENDFILE}) 2913cbdda60SSimon J. Gerraty @test -s $@ && touch $@; : 2923cbdda60SSimon J. Gerraty.endif 2933cbdda60SSimon J. Gerraty 2943cbdda60SSimon J. Gerraty.endif 2953cbdda60SSimon J. Gerraty.endif 2963cbdda60SSimon J. Gerraty 2973cbdda60SSimon J. Gerraty.if ${_bootstrap_dirdeps} == "yes" 298db29cad8SSimon J. GerratyDIRDEPS+= ${RELDIR}.${TARGET_SPEC:U${MACHINE}} 2993cbdda60SSimon J. Gerraty# make sure this is included at least once 3003cbdda60SSimon J. Gerraty.include <dirdeps.mk> 3013cbdda60SSimon J. Gerraty.else 3023cbdda60SSimon J. Gerraty${_DEPENDFILE}: .PRECIOUS 3033cbdda60SSimon J. Gerraty.endif 3043cbdda60SSimon J. Gerraty 3053cbdda60SSimon J. GerratyCLEANFILES += *.meta filemon.* *.db 3065bcb7424SSimon J. Gerraty 3075bcb7424SSimon J. Gerraty# these make it easy to gather some stats 3085bcb7424SSimon J. Gerratynow_utc = ${%s:L:gmtime} 3095bcb7424SSimon J. Gerratystart_utc := ${now_utc} 3105bcb7424SSimon J. Gerraty 3115bcb7424SSimon J. Gerratymeta_stats= meta=${empty(.MAKE.META.FILES):?0:${.MAKE.META.FILES:[#]}} \ 3125bcb7424SSimon J. Gerraty created=${empty(.MAKE.META.CREATED):?0:${.MAKE.META.CREATED:[#]}} 3135bcb7424SSimon J. Gerraty 314b0c40a00SSimon J. Gerraty.if !target(_reldir_finish) 3155bcb7424SSimon J. Gerraty#.END: _reldir_finish 3165bcb7424SSimon J. Gerraty.if target(gendirdeps) 3175bcb7424SSimon J. Gerraty_reldir_finish: gendirdeps 3185bcb7424SSimon J. Gerraty.endif 3195bcb7424SSimon J. Gerraty_reldir_finish: .NOMETA 3205bcb7424SSimon J. Gerraty @echo "${TIME_STAMP} Finished ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}" 321b0c40a00SSimon J. Gerraty.endif 3225bcb7424SSimon J. Gerraty 323b0c40a00SSimon J. Gerraty.if !target(_reldir_failed) 3245bcb7424SSimon J. Gerraty#.ERROR: _reldir_failed 3255bcb7424SSimon J. Gerraty_reldir_failed: .NOMETA 3265bcb7424SSimon J. Gerraty @echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}" 327b0c40a00SSimon J. Gerraty.endif 3285bcb7424SSimon J. Gerraty 3292c3632d1SSimon J. Gerraty.if !defined(WITHOUT_META_STATS) && ${.MAKE.LEVEL} > 0 3305bcb7424SSimon J. Gerraty.END: _reldir_finish 3315bcb7424SSimon J. Gerraty.ERROR: _reldir_failed 3325bcb7424SSimon J. Gerraty.endif 3335bcb7424SSimon J. Gerraty 3343cbdda60SSimon J. Gerraty.endif 335