153996fadSWolfram Schneider# 253996fadSWolfram Schneider# The include file <bsd.dep.mk> handles Makefile dependencies. 353996fadSWolfram Schneider# 453996fadSWolfram Schneider# 553996fadSWolfram Schneider# +++ variables +++ 653996fadSWolfram Schneider# 7ae038fc3SBryan Drewery# CLEANDEPENDDIRS Additional directories to remove for the cleandepend 8ae038fc3SBryan Drewery# target. 9ae038fc3SBryan Drewery# 10ae038fc3SBryan Drewery# CLEANDEPENDFILES Additional files to remove for the cleandepend target. 11ae038fc3SBryan Drewery# 12ccc4bab1SRuslan Ermilov# CTAGS A tags file generation program [gtags] 13ccc4bab1SRuslan Ermilov# 14ccc4bab1SRuslan Ermilov# CTAGSFLAGS Options for ctags(1) [not set] 15ccc4bab1SRuslan Ermilov# 1653996fadSWolfram Schneider# DEPENDFILE dependencies file [.depend] 1753996fadSWolfram Schneider# 18ccc4bab1SRuslan Ermilov# GTAGSFLAGS Options for gtags(1) [-o] 19ccc4bab1SRuslan Ermilov# 20ccc4bab1SRuslan Ermilov# HTAGSFLAGS Options for htags(1) [not set] 21ccc4bab1SRuslan Ermilov# 2253996fadSWolfram Schneider# SRCS List of source files (c, c++, assembler) 2353996fadSWolfram Schneider# 2411dc9298SRuslan Ermilov# DPSRCS List of source files which are needed for generating 2511dc9298SRuslan Ermilov# dependencies, ${SRCS} are always part of it. 2653996fadSWolfram Schneider# 2753996fadSWolfram Schneider# +++ targets +++ 2853996fadSWolfram Schneider# 2953996fadSWolfram Schneider# cleandepend: 30ae038fc3SBryan Drewery# remove ${CLEANDEPENDFILES}; remove ${CLEANDEPENDDIRS} and all 31ae038fc3SBryan Drewery# contents. 3253996fadSWolfram Schneider# 3353996fadSWolfram Schneider# depend: 3453996fadSWolfram Schneider# Make the dependencies for the source files, and store 3553996fadSWolfram Schneider# them in the file ${DEPENDFILE}. 3653996fadSWolfram Schneider# 3753996fadSWolfram Schneider# tags: 38ccc4bab1SRuslan Ermilov# In "ctags" mode, create a tags file for the source files. 39ccc4bab1SRuslan Ermilov# In "gtags" mode, create a (GLOBAL) gtags file for the 40ccc4bab1SRuslan Ermilov# source files. If HTML is defined, htags(1) is also run 41ccc4bab1SRuslan Ermilov# after gtags(1). 4253996fadSWolfram Schneider 435ffdf361SRuslan Ermilov.if !target(__<bsd.init.mk>__) 445ffdf361SRuslan Ermilov.error bsd.dep.mk cannot be included directly. 455ffdf361SRuslan Ermilov.endif 46b16495e7SWolfram Schneider 47ccc4bab1SRuslan ErmilovCTAGS?= gtags 48ccc4bab1SRuslan ErmilovCTAGSFLAGS?= 49ccc4bab1SRuslan ErmilovGTAGSFLAGS?= -o 50ccc4bab1SRuslan ErmilovHTAGSFLAGS?= 51ccc4bab1SRuslan Ermilov 52369737d7SBryan Drewery.if ${MK_DIRDEPS_BUILD} == "no" 53fc2c2cd9SBryan Drewery.MAKE.DEPENDFILE= ${DEPENDFILE} 54369737d7SBryan Drewery.endif 55caf1fb32SBryan DreweryCLEANDEPENDFILES+= ${DEPENDFILE} ${DEPENDFILE}.* 56b964b943SBryan Drewery.if ${MK_META_MODE} == "yes" 57b964b943SBryan DreweryCLEANDEPENDFILES+= *.meta 58b964b943SBryan Drewery.endif 59d14f862cSGarrett Wollman 60ccc4bab1SRuslan Ermilov# Keep `tags' here, before SRCS are mangled below for `depend'. 616260f1d8SRuslan Ermilov.if !target(tags) && defined(SRCS) && !defined(NO_TAGS) 62ccc4bab1SRuslan Ermilovtags: ${SRCS} 63213a4447SRuslan Ermilov.if ${CTAGS:T} == "gtags" 64ccc4bab1SRuslan Ermilov @cd ${.CURDIR} && ${CTAGS} ${GTAGSFLAGS} ${.OBJDIR} 65ccc4bab1SRuslan Ermilov.if defined(HTML) 66ccc4bab1SRuslan Ermilov @cd ${.CURDIR} && htags ${HTAGSFLAGS} -d ${.OBJDIR} ${.OBJDIR} 67ccc4bab1SRuslan Ermilov.endif 68213a4447SRuslan Ermilov.else 69213a4447SRuslan Ermilov @${CTAGS} ${CTAGSFLAGS} -f /dev/stdout \ 70213a4447SRuslan Ermilov ${.ALLSRC:N*.h} | sed "s;${.CURDIR}/;;" > ${.TARGET} 71ccc4bab1SRuslan Ermilov.endif 72ccc4bab1SRuslan Ermilov.endif 73ccc4bab1SRuslan Ermilov 74799483e4SBryan Drewery.if !empty(.MAKE.MODE:Mmeta) && empty(.MAKE.MODE:Mnofilemon) 75799483e4SBryan Drewery_meta_filemon= 1 76799483e4SBryan Drewery.endif 77396561c9SBryan Drewery# By default META_MODE is disabled in bmake if there is no OBJDIR 78396561c9SBryan Drewery# unless .MAKE.MODE contains "curdirOk=[^0nNfF]" 79396561c9SBryan Drewery.if defined(_meta_filemon) && ${.OBJDIR} == ${.CURDIR} && \ 80396561c9SBryan Drewery (empty(.MAKE.MODE:tl:Mcurdirok=*) || \ 81396561c9SBryan Drewery !empty(.MAKE.MODE:tl:Mcurdirok=[0NnFf]*)) 82396561c9SBryan Drewery.undef _meta_filemon 83396561c9SBryan Drewery.endif 84799483e4SBryan Drewery 85c30c436aSBryan Drewery# Skip reading .depend when not needed to speed up tree-walks and simple 86d7173250SBryan Drewery# lookups. See _SKIP_BUILD logic in bsd.init.mk for more details. 87799483e4SBryan Drewery# Also skip generating or including .depend.* files if in meta+filemon mode 88210ecc00SBryan Drewery# since it will track dependencies itself. OBJS_DEPEND_GUESS is still used 89210ecc00SBryan Drewery# for _meta_filemon but not for _SKIP_DEPEND. 90ecc39238SBryan Drewery.if !defined(NO_SKIP_DEPEND) && defined(_SKIP_BUILD) 91210ecc00SBryan Drewery_SKIP_DEPEND= 1 92210ecc00SBryan Drewery.endif 93e65dd92bSBryan Drewery.if ${MK_DIRDEPS_BUILD} == "no" 94210ecc00SBryan Drewery.if defined(_SKIP_DEPEND) || defined(_meta_filemon) 959fb02a70SBryan Drewery.MAKE.DEPENDFILE= /dev/null 969fb02a70SBryan Drewery.endif 979fb02a70SBryan Drewery.endif 989fb02a70SBryan Drewery 992ec8b6deSBruce Evans.if defined(SRCS) 1002ec8b6deSBruce EvansCLEANFILES?= 1012ec8b6deSBruce Evans 1028a152f97SRui Paulo.for _S in ${SRCS:N*.[dhly]} 1032506d700SSimon J. GerratyOBJS_DEPEND_GUESS.${_S:${OBJS_SRCS_FILTER:ts:}}.o+= ${_S} 104d7beff08SBryan Drewery.endfor 1056b14fdfaSRuslan Ermilov 1069f65e34fSRui Paulo# Lexical analyzers 1072ec8b6deSBruce Evans.for _LSRC in ${SRCS:M*.l:N*/*} 108484933a9SRuslan Ermilov.for _LC in ${_LSRC:R}.c 1095852ae2dSBryan Drewery${_LC}: ${_LSRC} 1105a2899acSBjoern A. Zeeb ${LEX} ${LFLAGS} ${LFLAGS.${_LSRC}} -o${.TARGET} ${.ALLSRC} 111919154d9SBryan DreweryOBJS_DEPEND_GUESS.${_LC:R}.o+= ${_LC} 1122ec8b6deSBruce EvansSRCS:= ${SRCS:S/${_LSRC}/${_LC}/} 113484933a9SRuslan ErmilovCLEANFILES+= ${_LC} 1142ec8b6deSBruce Evans.endfor 1152ec8b6deSBruce Evans.endfor 1162ec8b6deSBruce Evans 1179f65e34fSRui Paulo# Yacc grammars 1182ec8b6deSBruce Evans.for _YSRC in ${SRCS:M*.y:N*/*} 119484933a9SRuslan Ermilov.for _YC in ${_YSRC:R}.c 1202ec8b6deSBruce EvansSRCS:= ${SRCS:S/${_YSRC}/${_YC}/} 121484933a9SRuslan ErmilovCLEANFILES+= ${_YC} 12265d2bdc6SRuslan Ermilov.if !empty(YFLAGS:M-d) && !empty(SRCS:My.tab.h) 123000a2e70SBryan Drewery# Multi-output targets both expect a .meta file and will fight over it. Only 124000a2e70SBryan Drewery# allow it on the .c file instead. 125000a2e70SBryan Dreweryy.tab.h: ${_YC} .NOMETA 126000a2e70SBryan Drewery# Force rebuild the .c file if any of its other outputs are missing. 127000a2e70SBryan Drewery.if !exists(y.tab.h) 128000a2e70SBryan Drewery${_YC}: .PHONY .META 129000a2e70SBryan Drewery.endif 130000a2e70SBryan Drewery${_YC}: ${_YSRC} 1315a2899acSBjoern A. Zeeb ${YACC} ${YFLAGS} ${YFLAGS.${_YSRC}} ${.ALLSRC} 1322ec8b6deSBruce Evans cp y.tab.c ${_YC} 133484933a9SRuslan ErmilovCLEANFILES+= y.tab.c y.tab.h 13465d2bdc6SRuslan Ermilov.elif !empty(YFLAGS:M-d) 135484933a9SRuslan Ermilov.for _YH in ${_YC:R}.h 136000a2e70SBryan Drewery# Multi-output targets both expect a .meta file and will fight over it. Only 137000a2e70SBryan Drewery# allow it on the .c file instead. 138000a2e70SBryan Drewery${_YH}: ${_YC} .NOMETA 139000a2e70SBryan Drewery# Force rebuild the .c file if any of its other outputs are missing. 140000a2e70SBryan Drewery.if !exists(${_YH}) 141000a2e70SBryan Drewery${_YC}: .PHONY .META 142000a2e70SBryan Drewery.endif 143000a2e70SBryan Drewery${_YC}: ${_YSRC} 1445a2899acSBjoern A. Zeeb ${YACC} ${YFLAGS} ${YFLAGS.${_YSRC}} -o ${_YC} ${.ALLSRC} 145484933a9SRuslan ErmilovSRCS+= ${_YH} 146484933a9SRuslan ErmilovCLEANFILES+= ${_YH} 1472ec8b6deSBruce Evans.endfor 1482ec8b6deSBruce Evans.else 1495852ae2dSBryan Drewery${_YC}: ${_YSRC} 1505a2899acSBjoern A. Zeeb ${YACC} ${YFLAGS} ${YFLAGS.${_YSRC}} -o ${_YC} ${.ALLSRC} 1512ec8b6deSBruce Evans.endif 152919154d9SBryan DreweryOBJS_DEPEND_GUESS.${_YC:R}.o+= ${_YC} 1532ec8b6deSBruce Evans.endfor 1542ec8b6deSBruce Evans.endfor 1559f65e34fSRui Paulo 1569f65e34fSRui Paulo# DTrace probe definitions 157ff0f36e7SRui Paulo.if ${SRCS:M*.d} 1585439a715SMark JohnstonCFLAGS+= -I${.OBJDIR} 159ff0f36e7SRui Paulo.endif 1609f65e34fSRui Paulo.for _DSRC in ${SRCS:M*.d:N*/*} 161ff0f36e7SRui Paulo.for _D in ${_DSRC:R} 162cfa5f2beSBryan DrewerySRCS+= ${_D}.h 1635852ae2dSBryan Drewery${_D}.h: ${_DSRC} 1640c76c8aaSMark Johnston ${DTRACE} ${DTRACEFLAGS} -h -s ${.ALLSRC} 165e9083b2dSMark JohnstonSRCS:= ${SRCS:S/^${_DSRC}$//} 166d8b63155SRui PauloOBJS+= ${_D}.o 1679b646f25SRui PauloCLEANFILES+= ${_D}.h ${_D}.o 1685852ae2dSBryan Drewery${_D}.o: ${_DSRC} ${OBJS:S/^${_D}.o$//} 169a298c279SBryan Drewery @rm -f ${.TARGET} 170cfa5f2beSBryan Drewery ${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h} 1719b646f25SRui Paulo.if defined(LIB) 1722d781301SAlex RichardsonCLEANFILES+= ${_D}.pico ${_D}.pieo ${_D}.po ${_D}.nossppico 1732b4da8aaSMarcel Moolenaar${_D}.pico: ${_DSRC} ${SOBJS:S/^${_D}.pico$//} 174a298c279SBryan Drewery @rm -f ${.TARGET} 175cfa5f2beSBryan Drewery ${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h} 1762d781301SAlex Richardson${_D}.pieo: ${_DSRC} ${OBJS:S/^${_D}.pieo$//} 1772d781301SAlex Richardson @rm -f ${.TARGET} 1782d781301SAlex Richardson ${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h} 1795852ae2dSBryan Drewery${_D}.po: ${_DSRC} ${POBJS:S/^${_D}.po$//} 180a298c279SBryan Drewery @rm -f ${.TARGET} 181cfa5f2beSBryan Drewery ${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h} 182db08bfceSKonstantin Belousov${_D}.nossppico: ${_DSRC} ${SOBJS:S/^${_D}.nossppico$//} 183db08bfceSKonstantin Belousov @rm -f ${.TARGET} 184db08bfceSKonstantin Belousov ${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h} 185ff0f36e7SRui Paulo.endif 1869f65e34fSRui Paulo.endfor 1879f65e34fSRui Paulo.endfor 188ee4eeb32SBryan Drewery.endif # defined(SRCS) 189b9964333SBryan Drewery 190e32a2cbeSBryan Drewery.if ${MAKE_VERSION} < 20160220 191b9964333SBryan DreweryDEPEND_MP?= -MP 192e32a2cbeSBryan Drewery.endif 193b9964333SBryan Drewery# Handle OBJS=../somefile.o hacks. Just replace '/' rather than use :T to 194b9964333SBryan Drewery# avoid collisions. 195b9964333SBryan DreweryDEPEND_FILTER= C,/,_,g 196ee4eeb32SBryan Drewery.if !empty(OBJS) 197ab0c68baSAlex Richardson.if !defined(_ALLOW_ABSOLUTE_OBJ_PATH) && ${OBJS:M/*} 198ab0c68baSAlex Richardson# Absolute paths to OBJS should be an error inside ${SRCTOP}, but some users 199ab0c68baSAlex Richardson# might be relying on this feature, so add an opt-out mechanism. 200ab0c68baSAlex Richardson.if defined(SRCTOP) && ${OBJS:M${SRCTOP}*} 201*bca92be6SJohn Baldwin.error $$OBJS inside $$SRCTOP not allowed: ${OBJS:M${SRCTOP}*} 202ab0c68baSAlex Richardson.elif ${OBJS:N${_ABSOLUTE_PATH_OBJS}:M/*} 203*bca92be6SJohn Baldwin.error $$OBJS absolute path not allowed: ${OBJS:N${_ABSOLUTE_PATH_OBJS}:M/*}.\ 204ab0c68baSAlex Richardson If this is intended, add them to _ABSOLUTE_PATH_OBJS to silence this error\ 205*bca92be6SJohn Baldwin or define _ALLOW_ABSOLUTE_OBJ_PATH to disable this diagnostic. 206ab0c68baSAlex Richardson.endif 207ab0c68baSAlex Richardson.endif 208ee4eeb32SBryan DreweryDEPENDOBJS+= ${OBJS} 209ee4eeb32SBryan Drewery.else 210649fed8eSBryan DreweryDEPENDSRCS+= ${SRCS:M*.[cSC]} ${SRCS:M*.cxx} ${SRCS:M*.cpp} ${SRCS:M*.cc} 21149ccbde1SBryan DreweryDEPENDSRCS+= ${DPSRCS:M*.[cSC]} ${DPSRCS:M*.cxx} ${DPSRCS:M*.cpp} ${DPSRCS:M*.cc} 21270ca9ec4SBryan Drewery.if !empty(DEPENDSRCS) 2132506d700SSimon J. GerratyDEPENDOBJS+= ${DEPENDSRCS:${OBJS_SRCS_FILTER:ts:}:S,$,.o,} 21470ca9ec4SBryan Drewery.endif 215ee4eeb32SBryan Drewery.endif # !empty(OBJS) 2163d04f5a9SBryan Drewery.if !empty(DEPENDOBJS) 217068306e9SBryan DreweryDEPENDFILES+= ${DEPENDOBJS:O:u:${DEPEND_FILTER}:C/^/${DEPENDFILE}./} 2183d04f5a9SBryan Drewery.endif 219210ecc00SBryan Drewery.if defined(_SKIP_DEPEND) 220210ecc00SBryan Drewery# Don't bother statting any .meta files for .depend* 221210ecc00SBryan Drewery${DEPENDOBJS}: .NOMETA 222210ecc00SBryan Drewery${DEPENDFILE}: .NOMETA 223210ecc00SBryan Drewery# Unset these to avoid looping/statting on them later. 224210ecc00SBryan Drewery.undef DEPENDSRCS 225210ecc00SBryan Drewery.undef DEPENDOBJS 226068306e9SBryan Drewery.undef DEPENDFILES 227210ecc00SBryan Drewery.endif # defined(_SKIP_DEPEND) 228b9964333SBryan DreweryDEPEND_CFLAGS+= -MD ${DEPEND_MP} -MF${DEPENDFILE}.${.TARGET:${DEPEND_FILTER}} 229b9964333SBryan DreweryDEPEND_CFLAGS+= -MT${.TARGET} 23070ca9ec4SBryan Drewery.if !defined(_meta_filemon) 231c2fd1d01SBryan Drewery.if !empty(DEPEND_CFLAGS) 23210f696a5SBryan Drewery# Only add in DEPEND_CFLAGS for CFLAGS on files we expect from DEPENDOBJS 23310f696a5SBryan Drewery# as those are the only ones we will include. 2347c0c104bSBryan DreweryDEPEND_CFLAGS_CONDITION= "${DEPENDOBJS:${DEPEND_FILTER}:M${.TARGET:${DEPEND_FILTER}}}" != "" 23510f696a5SBryan DreweryCFLAGS+= ${${DEPEND_CFLAGS_CONDITION}:?${DEPEND_CFLAGS}:} 23610f696a5SBryan Drewery.endif 237068306e9SBryan Drewery.for __depend_obj in ${DEPENDFILES} 238e32a2cbeSBryan Drewery.if ${MAKE_VERSION} < 20160220 239e9508dc2SBryan Drewery.sinclude "${.OBJDIR}/${__depend_obj}" 240e32a2cbeSBryan Drewery.else 241e32a2cbeSBryan Drewery.dinclude "${.OBJDIR}/${__depend_obj}" 242e32a2cbeSBryan Drewery.endif 243b9964333SBryan Drewery.endfor 24470ca9ec4SBryan Drewery.endif # !defined(_meta_filemon) 2452ec8b6deSBruce Evans 24634d39d2cSBryan Drewery.if ${MK_DIRDEPS_BUILD} == "yes" && ${.MAKE.DEPENDFILE} != "/dev/null" 247b9cd412eSBryan Drewery# Prevent meta.autodep.mk from tracking "local dependencies". 248b9cd412eSBryan Drewery.depend: 2497750ad47SMarcel Moolenaar.include <meta.autodep.mk> 25070ca9ec4SBryan Drewery# If using filemon then _EXTRADEPEND is skipped since it is not needed. 251799483e4SBryan Drewery.if defined(_meta_filemon) 2527750ad47SMarcel Moolenaar# this depend: bypasses that below 2537750ad47SMarcel Moolenaar# the dependency helps when bootstrapping 2547750ad47SMarcel Moolenaardepend: beforedepend ${DPSRCS} ${SRCS} afterdepend 2557750ad47SMarcel Moolenaarbeforedepend: 2567750ad47SMarcel Moolenaarafterdepend: beforedepend 2577750ad47SMarcel Moolenaar.endif 25870ca9ec4SBryan Drewery.endif 2597750ad47SMarcel Moolenaar 260d7beff08SBryan Drewery# Guess some dependencies for when no ${DEPENDFILE}.OBJ is generated yet. 26170ca9ec4SBryan Drewery# For meta+filemon the .meta file is checked for since it is the dependency 26270ca9ec4SBryan Drewery# file used. 263d7beff08SBryan Drewery.for __obj in ${DEPENDOBJS:O:u} 2647c0c104bSBryan Drewery# If the obj has any '/', then replace with '_'. For meta files, this is 2657c0c104bSBryan Drewery# mimicing what bmake's meta_name() does and adding in the full path 2667c0c104bSBryan Drewery# as well to ensure that the expected meta file is read. 2677c0c104bSBryan Drewery.if ${__obj:M*/*} 2682a8176cbSBryan Drewery.if ${MAKE_VERSION} < 20171028 2697c0c104bSBryan Drewery_meta_obj= ${.OBJDIR:C,/,_,g}_${__obj:C,/,_,g}.meta 2707c0c104bSBryan Drewery.else 2712a8176cbSBryan Drewery_meta_obj= ${__obj:C,/,_,g}.meta 2722a8176cbSBryan Drewery.endif # ${MAKE_VERSION} < 20171028 2732a8176cbSBryan Drewery.else 2747c0c104bSBryan Drewery_meta_obj= ${__obj}.meta 2752a8176cbSBryan Drewery.endif # ${__obj:M*/*} 2767c0c104bSBryan Drewery_dep_obj= ${DEPENDFILE}.${__obj:${DEPEND_FILTER}} 277711019f7SBryan Drewery.if defined(_meta_filemon) 278711019f7SBryan Drewery_depfile= ${.OBJDIR}/${_meta_obj} 279711019f7SBryan Drewery.else 280711019f7SBryan Drewery_depfile= ${.OBJDIR}/${_dep_obj} 281711019f7SBryan Drewery.endif 282f39f6a56SBryan Drewery.if !exists(${_depfile}) || defined(_meta_filemon) 283f39f6a56SBryan Drewery# - Headers are normally built in beforebuild when included in DPSRCS or SRCS. 284f39f6a56SBryan Drewery# So we don't need it as a guessed dependency (it may lead to cyclic problems 285f39f6a56SBryan Drewery# if custom rules are defined). The only time this causes a problem is when 286f39f6a56SBryan Drewery# 'make foo.o' is ran. 287f39f6a56SBryan Drewery# - For meta mode we still need to know which file to depend on to avoid 2883b828e44SBryan Drewery# ambiguous suffix transformation rules from .PATH. Meta mode does not 289f39f6a56SBryan Drewery# use .depend files when filemon is in use. 29046dea205SBryan Drewery.if !target(${__obj}) 29146dea205SBryan Drewery${__obj}: ${OBJS_DEPEND_GUESS} 29246dea205SBryan Drewery.endif 293c155deccSBryan Drewery${__obj}: ${OBJS_DEPEND_GUESS.${__obj}} 294f39f6a56SBryan Drewery.endif # !exists(${_depfile}) || defined(_meta_filemon) 295d7beff08SBryan Drewery.endfor 296b9cd412eSBryan Drewery 297b9cd412eSBryan Drewery# Always run 'make depend' to generate dependencies early and to avoid the 298b9cd412eSBryan Drewery# need for manually running it. The dirdeps build should only do this in 299b9cd412eSBryan Drewery# sub-makes though since MAKELEVEL0 is for dirdeps calculations. 300b9cd412eSBryan Drewery.if ${MK_DIRDEPS_BUILD} == "no" || ${.MAKE.LEVEL} > 0 301b9cd412eSBryan Drewerybeforebuild: depend 302d7beff08SBryan Drewery.endif 303d7beff08SBryan Drewery 304d14f862cSGarrett Wollman.if !target(depend) 305d14f862cSGarrett Wollman.if defined(SRCS) 306b25a566dSRuslan Ermilovdepend: beforedepend ${DEPENDFILE} afterdepend 307b16495e7SWolfram Schneider 3087750ad47SMarcel Moolenaar# Tell bmake not to look for generated files via .PATH 309068306e9SBryan Drewery.NOPATH: ${DEPENDFILE} ${DEPENDFILES} 3107750ad47SMarcel Moolenaar 311497e8091SBryan Drewery# A .depend file will only be generated if there are commands in 312799483e4SBryan Drewery# beforedepend/_EXTRADEPEND/afterdepend The _EXTRADEPEND target is 313799483e4SBryan Drewery# ignored if using meta+filemon since it handles all dependencies. The other 314799483e4SBryan Drewery# targets are kept as they be used for generating something. The target is 315799483e4SBryan Drewery# kept to allow 'make depend' to generate files. 316a854949fSBryan Drewery${DEPENDFILE}: ${SRCS} ${DPSRCS} 317210ecc00SBryan Drewery.if !defined(_SKIP_DEPEND) 318987c375fSBryan Drewery.if exists(${.OBJDIR}/${DEPENDFILE}) || \ 319799483e4SBryan Drewery ((commands(beforedepend) || \ 320799483e4SBryan Drewery (!defined(_meta_filemon) && commands(_EXTRADEPEND)) || \ 321987c375fSBryan Drewery commands(afterdepend)) && !empty(.MAKE.MODE:Mmeta)) 322b16495e7SWolfram Schneider rm -f ${DEPENDFILE} 32380f9a973SBryan Drewery.endif 324210ecc00SBryan Drewery.endif 325799483e4SBryan Drewery.if !defined(_meta_filemon) && target(_EXTRADEPEND) 32670e82473SRuslan Ermilov_EXTRADEPEND: .USE 3270cfacc86SRuslan Ermilov${DEPENDFILE}: _EXTRADEPEND 328663e9677SBruce Evans.endif 329b16495e7SWolfram Schneider 33097fe7f47SJordan K. Hubbard.ORDER: ${DEPENDFILE} afterdepend 331d14f862cSGarrett Wollman.else 332b25a566dSRuslan Ermilovdepend: beforedepend afterdepend 333d14f862cSGarrett Wollman.endif 334d14f862cSGarrett Wollman.if !target(beforedepend) 335d14f862cSGarrett Wollmanbeforedepend: 33697fe7f47SJordan K. Hubbard.else 33797fe7f47SJordan K. Hubbard.ORDER: beforedepend ${DEPENDFILE} 33897fe7f47SJordan K. Hubbard.ORDER: beforedepend afterdepend 339d14f862cSGarrett Wollman.endif 340d14f862cSGarrett Wollman.if !target(afterdepend) 341d14f862cSGarrett Wollmanafterdepend: 342d14f862cSGarrett Wollman.endif 343d14f862cSGarrett Wollman.endif 344d14f862cSGarrett Wollman 3453d437ee2SBryan Drewery.if defined(SRCS) 346ae038fc3SBryan Drewery.if ${CTAGS:T} == "gtags" 347ae038fc3SBryan DreweryCLEANDEPENDFILES+= GPATH GRTAGS GSYMS GTAGS 348ae038fc3SBryan Drewery.if defined(HTML) 349ae038fc3SBryan DreweryCLEANDEPENDDIRS+= HTML 350ae038fc3SBryan Drewery.endif 351ae038fc3SBryan Drewery.else 352ae038fc3SBryan DreweryCLEANDEPENDFILES+= tags 353ae038fc3SBryan Drewery.endif 3543d437ee2SBryan Drewery.endif 355cd9a2f5cSJordan K. Hubbard.if !target(cleandepend) 356b25a566dSRuslan Ermilovcleandepend: 3573d437ee2SBryan Drewery.if !empty(CLEANDEPENDFILES) 358ae038fc3SBryan Drewery rm -f ${CLEANDEPENDFILES} 3593d437ee2SBryan Drewery.endif 360ae038fc3SBryan Drewery.if !empty(CLEANDEPENDDIRS) 361ae038fc3SBryan Drewery rm -rf ${CLEANDEPENDDIRS} 3626eb5e456SJordan K. Hubbard.endif 363cd9a2f5cSJordan K. Hubbard.endif 364190348aeSBryan Drewery.ORDER: cleandepend all 365190348aeSBryan Drewery.ORDER: cleandepend depend 366b284f322SBryan Drewery.if ${MK_AUTO_OBJ} == "yes" 367b284f322SBryan Drewery.ORDER: cleanobj depend 368b284f322SBryan Drewery.ORDER: cleandir depend 369b284f322SBryan Drewery.endif 3706e02167bSRuslan Ermilov 3716e02167bSRuslan Ermilov.if !target(checkdpadd) && (defined(DPADD) || defined(LDADD)) 37241ae64f3SEnji Cooper_LDADD_FROM_DPADD= ${DPADD:R:T:C;^lib(.*)$;-l\1;g} 37341ae64f3SEnji Cooper# Ignore -Wl,--start-group/-Wl,--end-group as it might be required in the 37441ae64f3SEnji Cooper# LDADD list due to unresolved symbols 37541ae64f3SEnji Cooper_LDADD_CANONICALIZED= ${LDADD:N:R:T:C;^lib(.*)$;-l\1;g:N-Wl,--[es]*-group} 3766e02167bSRuslan Ermilovcheckdpadd: 3772e3c6179SBruce Evans.if ${_LDADD_FROM_DPADD} != ${_LDADD_CANONICALIZED} 3782e3c6179SBruce Evans @echo ${.CURDIR} 3792e3c6179SBruce Evans @echo "DPADD -> ${_LDADD_FROM_DPADD}" 3802e3c6179SBruce Evans @echo "LDADD -> ${_LDADD_CANONICALIZED}" 3812e3c6179SBruce Evans.endif 3826e02167bSRuslan Ermilov.endif 383