xref: /freebsd/share/mk/dirdeps-options.mk (revision dd41de95a84d979615a2ef11df6850622bf6184e)
1# $FreeBSD$
2# $Id: dirdeps-options.mk,v 1.17 2020/08/07 01:57:38 sjg Exp $
3#
4#	@(#) Copyright (c) 2018-2020, Simon J. Gerraty
5#
6#	This file is provided in the hope that it will
7#	be of use.  There is absolutely NO WARRANTY.
8#	Permission to copy, redistribute or otherwise
9#	use this file is hereby granted provided that
10#	the above copyright notice and this notice are
11#	left intact.
12#
13#	Please send copies of changes and bug-fixes to:
14#	sjg@crufty.net
15#
16
17##
18#
19# This makefile is used to deal with optional DIRDEPS.
20#
21# It is to be included by Makefile.depend.options in a
22# directory which has DIRDEPS affected by optional features.
23# Makefile.depend.options should set DIRDEPS_OPTIONS and
24# may also set specific DIRDEPS.* for those options.
25#
26# If a Makefile.depend.options file exists, it will be included by
27# dirdeps.mk and meta.autodep.mk
28#
29# We include local.dirdeps-options.mk which may also define DIRDEPS.*
30# for options.
31#
32# Thus a directory, that is affected by an option FOO would have
33# a Makefile.depend.options that sets
34# DIRDEPS_OPTIONS= FOO
35# It can also set either/both of
36# DIRDEPS.FOO.yes
37# DIRDEPS.FOO.no
38# to whatever applies for that dir, or it can rely on globals
39# set in local.dirdeps-options.mk
40# Either way, we will .undef DIRDEPS.* when done.
41#
42# In some cases the value of MK_FOO might depend on TARGET_SPEC
43# so we qualify MK_FOO with .${TARGET_SPEC} and each component
44# TARGET_SPEC_VAR (in reverse order) before using MK_FOO.
45#
46
47# This should have been set by Makefile.depend.options
48# before including us
49DIRDEPS_OPTIONS ?=
50
51# pickup any DIRDEPS.* we need
52.-include <local.dirdeps-options.mk>
53
54.if ${.MAKE.LEVEL} == 0
55# :U below avoids potential errors when we :=
56# some options can depend on TARGET_SPEC!
57DIRDEPS_OPTIONS_QUALIFIER_LIST ?= \
58	${DEP_TARGET_SPEC:U${TARGET_SPEC}} \
59	${TARGET_SPEC_VARSr:U${TARGET_SPEC_VARS}:@v@${DEP_$v:U${$v}}@}
60# note that we need to include $o in the variable _o$o
61# to ensure correct evaluation.
62.for o in ${DIRDEPS_OPTIONS}
63.undef _o$o _v$o
64.for x in ${DIRDEPS_OPTIONS_QUALIFIER_LIST}
65.if defined(MK_$o.$x)
66_o$o ?= MK_$o.$x
67_v$o ?= ${MK_$o.$x}
68.endif
69.endfor
70_v$o ?= ${MK_$o}
71.if ${_debug_reldir:U0}
72.info ${DEP_RELDIR:U${RELDIR}}.${DEP_TARGET_SPEC:U${TARGET_SPEC}}: o=$o ${_o$o:UMK_$o}=${_v$o:U} DIRDEPS += ${DIRDEPS.$o.${_v$o:U}:U}
73.endif
74DIRDEPS += ${DIRDEPS.$o.${_v$o:U}:U}
75.endfor
76DIRDEPS := ${DIRDEPS:O:u}
77.if ${_debug_reldir:U0}
78.info ${DEP_RELDIR:U${RELDIR}}: DIRDEPS=${DIRDEPS}
79.endif
80# avoid cross contamination
81.for o in ${DIRDEPS_OPTIONS}
82.undef DIRDEPS.$o.yes
83.undef DIRDEPS.$o.no
84.undef _o$o
85.undef _v$o
86.endfor
87.else
88# whether options are enabled or not,
89# we want to filter out the relevant DIRDEPS.*
90# we should only be included by meta.autodep.mk
91# if dependencies are to be updated
92.for o in ${DIRDEPS_OPTIONS}
93.for d in ${DIRDEPS.$o.yes} ${DIRDEPS.$o.no}
94.if exists(${SRCTOP}/$d)
95GENDIRDEPS_FILTER += N$d*
96.elif exists(${SRCTOP}/${d:R})
97GENDIRDEPS_FILTER += N${d:R}*
98.endif
99.endfor
100.endfor
101.endif
102