summaryrefslogtreecommitdiff
path: root/make/subdir.mk
blob: ccde0dc8d260ffe12ef42a80def4ae327e9a8ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# This file is intended to be included from each subdirectory makefile.
#
# Subdirectory makefiles must define:
#   SubDirs - The subdirectories to traverse.
#   ObjNames - The objects available in that directory.
#   Target - The library configuration the objects should go in (Generic or
#            Optimized)
#   Dependencies - Any dependences for the object files.
#
# Subdirectory makefiles may define:
#   OnlyArchs - Only build the objects for the listed archs.
#   OnlyConfigs - Only build the objects for the listed configurations.

ifeq ($(Dir),)
  $(error "No Dir variable defined.")
endif

# Expand template for each configuration and architecture.
#
# FIXME: This level of logic should be in primary Makefile?
ifeq ($(OnlyConfigs),)
  ConfigsToTraverse := $(Configs)
else
  ConfigsToTraverse := $(OnlyConfigs)
endif

ifeq ($(OnlyArchs),)
  ArchsToTraverse := $(Archs)
else
  ArchsToTraverse := $(OnlyArchs)
endif

# If we are only targetting a single arch, only traverse that.
ifneq ($(TargetArch),)
  ArchsToTraverse := $(filter $(TargetArch), $(ArchsToTraverse))
endif

$(foreach config,$(ConfigsToTraverse), \
  $(foreach arch,$(ArchsToTraverse), \
    $(eval $(call CNA_subdir_template,$(config),$(arch),$(Dir)))))

###
# Include child makefile fragments

# The list of variables which are intended to be overridden in a subdirectory
# makefile.
RequiredSubdirVariables := SubDirs ObjNames Target Dependencies
OptionalSubdirVariables := OnlyArchs OnlyConfigs

# Template: subdir_traverse_template subdir
define subdir_traverse_template
$(call Set,Dir,$(1))
ifneq ($(DEBUGMAKE),)
  $$(info MAKE: $(Dir): Processing subdirectory)
endif

# Reset subdirectory specific variables to sentinel value.
$$(foreach var,$$(RequiredSubdirVariables) $$(OptionalSubdirVariables),\
  $$(call Set,$$(var),UNDEFINED))

# Get the subdirectory variables.
include $(1)/Makefile.mk

ifeq ($(DEBUGMAKE),2)
$$(foreach var,$(RequiredSubdirVariables) $(OptionalSubdirVariables),\
  $$(if $$(call strneq UNDEFINED,$$($$(var))), \
	$$(info MAKE: $(Dir): $$(var) is defined), \
	$$(info MAKE: $(Dir): $$(var) is undefined)))
endif

# Check for undefined required variables, and unset sentinel value from optional
# variables.
$$(foreach var,$(RequiredSubdirVariables),\
  $$(if $$(call strneq UNDEFINED,$$($$(var))), \
	$$(error $(Dir): variable '$$(var)' was not undefined)))
$$(foreach var,$(OptionalSubdirVariables),\
  $$(if $$(call strneq UNDEFINED,$$($$(var))),, \
	$$(call Set,$$(var),)))

# Recurse.
include make/subdir.mk

# Restore directory variable.
$$(call Set,Dir,$(1))

ifneq ($(DEBUGMAKE),)
  $$(info MAKE: $$(Dir): Done processing subdirectory)
endif
endef

# Evaluate this now so we do not have to worry about order of evaluation.
SubDirsList := $(SubDirs:%=$(Dir)/%)
ifeq ($(SubDirsList),)
else
  ifneq ($(DEBUGMAKE),)
    $(info MAKE: Descending into subdirs: $(SubDirsList))
  endif

  $(foreach subdir,$(SubDirsList),\
	$(eval $(call subdir_traverse_template,$(subdir))))
endif