source: trunk/kBuild/footer.kmk@ 683

Last change on this file since 683 was 682, checked in by bird, 19 years ago

my .PRECIOUS!

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 83.7 KB
Line 
1# $Id: footer.kmk 682 2006-12-08 00:03:03Z bird $
2## @file
3#
4# kBuild - File included at top of makefile.
5#
6# Copyright (c) 2004-2006 knut st. osmundsen <bird-srcspam@anduin.net>
7#
8#
9# This file is part of kBuild.
10#
11# kBuild is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version source of the License, or
14# (at your option) any later version.
15#
16# kBuild is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with kBuild; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24#
25#
26
27ifndef __footer_kmk__
28# start-of-file-content
29
30#
31# Make sure that the core variables we defined in recursive expansion mode
32# up in header.kmk get expanded before we really start using them. The kBuild
33# functions added to kmk to speed stuff up assumes that the variables are
34# expanded here.
35#
36PATH_OBJ := $(PATH_OBJ)
37PATH_TARGET := $(PATH_TARGET)
38PATH_INS := $(PATH_INS)
39PATH_BIN := $(PATH_BIN)
40PATH_DLL := $(PATH_DLL)
41PATH_SYS := $(PATH_SYS)
42PATH_LIB := $(PATH_LIB)
43PATH_DOC := $(PATH_DOC)
44
45#
46# Variables.
47# (Some of these need initialization before including definitions using them.)
48#
49
50# all targets.
51ALL_TARGETS += \
52 $(FETCHES) $(FETCHES.$(BUILD_TARGET)) $(FETCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
53 $(PATCHES) $(PATCHES.$(BUILD_TARGET)) $(PATCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
54 $(BLDPROGS) $(BLDPROGS.$(BUILD_PLATFORM)) $(BLDPROGS.$(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH)) \
55 $(LIBRARIES) $(LIBRARIES.$(BUILD_TARGET)) $(LIBRARIES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
56 $(IMPORT_LIBS) $(IMPORT_LIBS.$(BUILD_TARGET)) $(IMPORT_LIBS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
57 $(DLLS) $(DLLS.$(BUILD_TARGET)) $(DLLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
58 $(PROGRAMS) $(PROGRAMS.$(BUILD_TARGET)) $(PROGRAMS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
59 $(SYSMODS) $(SYSMODS.$(BUILD_TARGET)) $(SYSMODS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
60 $(INSTALLS) $(INSTALLS.$(BUILD_TARGET)) $(INSTALLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
61 $(OTHERS) $(OTHERS.$(BUILD_TARGET)) $(OTHERS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
62
63# all $(BUILD_TARGET) targets.
64_ALL_BUILD_TARGET_TARGETS += \
65 $(FETCHES) $(FETCHES.$(BUILD_TARGET)) $(FETCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
66 $(PATCHES) $(PATCHES.$(BUILD_TARGET)) $(PATCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
67 $(LIBRARIES) $(LIBRARIES.$(BUILD_TARGET)) $(LIBRARIES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
68 $(IMPORT_LIBS) $(IMPORT_LIBS.$(BUILD_TARGET)) $(IMPORT_LIBS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
69 $(DLLS) $(DLLS.$(BUILD_TARGET)) $(DLLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
70 $(PROGRAMS) $(PROGRAMS.$(BUILD_TARGET)) $(PROGRAMS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
71 $(SYSMODS) $(SYSMODS.$(BUILD_TARGET)) $(SYSMODS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
72 $(INSTALLS) $(INSTALLS.$(BUILD_TARGET)) $(INSTALLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
73 $(OTHERS) $(OTHERS.$(BUILD_TARGET)) $(OTHERS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
74
75# all $(BUILD_TARGET) targets.
76_ALL_BUILD_PLATFORM_TARGETS += \
77 $(BLDPROGS) $(BLDPROGS.$(BUILD_PLATFORM)) $(BLDPROGS.$(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH))
78
79# all targets making use of srcname.
80_ALL_SRCNAME_TARGETS += \
81 $(FETCHES) $(FETCHES.$(BUILD_TARGET)) $(FETCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
82 $(PATCHES) $(PATCHES.$(BUILD_TARGET)) $(PATCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
83
84# dependency files.
85_DEPFILES :=
86
87# included dependency files.
88_DEPFILES_INCLUDED :=
89
90
91# All kind of output files except for _OBJS and _DEPFILES.
92# Compiling or linking definition outputting other things that $@ and any
93# required dependency file must add those output files to this variable.
94_OUT_FILES :=
95
96# Files which only requires cleaning up.
97_CLEAN_FILES :=
98
99# all of a type
100_OBJS :=
101_FETCHES :=
102_DOWNLOADS:=
103_UNPACKS :=
104_PATCHES :=
105_BLDPROGS :=
106_LIBS :=
107_DLLS :=
108_PROGRAMS :=
109_SYSMODS :=
110_INSTALLS :=
111_INSTALLS_DIRS :=
112_OTHERS :=
113_PACKING :=
114_DIRS := $(PATH_TARGET)/ $(PATH_TARGET)
115_IMPORT_LIBS :=
116
117# misc
118pass_prev :=
119
120
121#
122# Basic macros
123#
124
125## Figure out the tool for a source
126# @param target source file
127# @param source normalized main target
128# @param type tooltype
129# @param bld_trg build target.
130# @param bld_trg_arch build target architecture.
131# @remark Obsoleted by kBuild helpers in kmk. Only required for gmake compatbility.
132_SOURCE_TOOL = $(strip $(firstword \
133 $($(target)_$(source)_$(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
134 $($(target)_$(source)_$(type)TOOL.$(bld_trg)) \
135 $($(target)_$(source)_$(type)TOOL) \
136 $($(target)_$(source)_TOOL.$(bld_trg).$(bld_trg_arch)) \
137 $($(target)_$(source)_TOOL.$(bld_trg)) \
138 $($(target)_$(source)_TOOL) \
139 $($(source)_$(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
140 $($(source)_$(type)TOOL.$(bld_trg)) \
141 $($(source)_$(type)TOOL) \
142 $($(source)_TOOL.$(bld_trg).$(bld_trg_arch)) \
143 $($(source)_TOOL.$(bld_trg)) \
144 $($(source)_TOOL) \
145 $($(target)_$(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
146 $($(target)_$(type)TOOL.$(bld_trg)) \
147 $($(target)_$(type)TOOL) \
148 $($(target)_TOOL.$(bld_trg).$(bld_trg_arch)) \
149 $($(target)_TOOL.$(bld_trg)) \
150 $($(target)_TOOL) \
151 $($(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
152 $($(type)TOOL.$(bld_trg)) \
153 $($(type)TOOL) \
154 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
155 $(TOOL.$(bld_trg)) \
156 $(TOOL) ))
157
158## Figure out the tool for a target.
159# @param target normalized target.
160# @param source tooltype.
161# @param bld_trg build target.
162# @param bld_trg_arch build target architecture.
163_TARGET_TOOL = $(strip $(firstword \
164 $($(target)_$(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
165 $($(target)_$(source)TOOL.$(bld_trg)) \
166 $($(target)_$(source)TOOL) \
167 $($(target)_TOOL.$(bld_trg).$(bld_trg_arch)) \
168 $($(target)_TOOL.$(bld_trg)) \
169 $($(target)_TOOL) \
170 $($(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
171 $($(source)TOOL.$(bld_trg)) \
172 $($(source)TOOL) \
173 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
174 $(TOOL.$(bld_trg)) \
175 $(TOOL) \
176 ))
177
178## Removes the drive letter from a path (if it has one)
179# @param $1 the path
180no-drive=$(word $(words $(subst :, ,$(1))),$(subst :, ,$(1)))
181
182## Removes the root slash from a path (if it has one)
183# @param $1 the path
184no-root-slash=$(patsubst /%,%,$(1))
185
186## Figure out where to put object files.
187# @param $1 source file
188# @param $2 normalized main target
189# @remark There are two major hacks here:
190# 1. Source files in the output directory are translated into a gen/ subdir.
191# 2. Catch anyone specifying $(PATH_SUB_CURRENT)/sourcefile.c.
192# @remark obsoleted by kBuild helpers in kmk. Only required for gmake compatbility.
193_OBJECT_BASE = $(PATH_TARGET)/$(2)/$(call no-root-slash,$(call no-drive,$(basename \
194 $(patsubst $(PATH_ROOT)/%,%,$(patsubst $(PATH_SUB_CURRENT)/%,%,$(patsubst $(PATH_TARGET)/$(2)/%,gen/%,$(1)))))))
195
196## Figure out where to put object files.
197# @param $1 real target name.
198# @param $2 normalized main target
199_TARGET_BASE = $(PATH_TARGET)/$(2)/$(call no-root-slash,$(call no-drive,$(basename $(1))))
200
201
202## Figure out the actual name of an installed file.
203# @param $1 The file to install.
204# @param $2 The target name.
205# @param $3 The _INST value (can be empty).
206# @param $4 The default directory to use when $3 is empty.
207_INSTALL_FILE = $(patsubst %/,%/$(notdir $(1)),$(if $(3),$(PATH_INS)/$(3),$(4)/))
208
209
210#
211# Check syntax which leads to weird syntax errors.
212#
213
214## Check
215# @param $(target) Target name.
216define def_check_target
217ifneq ("$($(target)_TEMPLATE)","$(strip $($(target)_TEMPLATE))")
218$$(error $(target) have an incorrect template name. Remove any tabs!)
219endif
220endef
221$(foreach target, $(ALL_TARGETS),$(eval $(def_check_target)))
222
223
224#
225# Include templates
226#
227_TEMPLATES := $(TEMPLATE)
228define def_templates
229ifdef $(target)_TEMPLATE
230_TEMPLATES += $($(target)_TEMPLATE)
231endif
232endef
233$(foreach target, $(ALL_TARGETS), $(eval $(def_templates)))
234_TEMPLATES := $(sort $(_TEMPLATES))
235# $ (warning dbg: _TEMPLATES=$(_TEMPLATES))
236
237define def_templates_include
238ifndef TEMPLATE_$(template)
239include $(firstword $(foreach path, $(TEMPLATE_PATHS) $(PATH_KBUILD)/templates/, $(wildcard $(path)/$(template).kmk)))
240endif
241endef
242$(foreach template, $(_TEMPLATES), $(eval $(def_templates)))
243
244
245#
246# Template Inheritance.
247#
248define def_template_extends_prop
249ifndef TEMPLATE_$(template)_$(prop)
250 ifdef TEMPLATE_$(parent)_$(prop)
251TEMPLATE_$(template)_$(prop) = $$(TEMPLATE_$(parent)_$(prop))
252 endif
253endif
254endef
255
256
257define def_template_extends
258ifdef TEMPLATE_$(template)_EXTENDS
259 ifndef TEMPLATE_$(template)_EXTENDS_STATUS_
260 TEMPLATE_$(template)_EXTENDS_STATUS_ := 0
261 parent := $(strip $(TEMPLATE_$(template)_EXTENDS))
262
263 # recursivly process the parent if it's inherting from somebody too.
264 ifdef TEMPLATE_$(parent)_EXTENDS
265 ifneq ($(TEMPLATE_$(parent)_EXTENDS_STATUS_),42)
266 # foreach will create 'template' in a new variable context hiding our current variable.
267 $(foreach template, $(parent), $(eval $(value def_template_extends)))
268 parent := $(strip $(TEMPLATE_$(template)_EXTENDS))
269 endif
270 endif
271
272 # inherit properties.
273 $(foreach prop, $(PROPS_SINGLE) $(PROPS_ACCUMULATE_R) $(PROPS_ACCUMULATE_L) $(PROPS_DEFERRED)\
274 $(addsuffix .$(BUILD_TARGET), $(PROPS_SINGLE) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R) $(PROPS_DEFERRED))\
275 $(addsuffix .$(BUILD_TARGET).$(BUILD_TARGET_ARCH), $(PROPS_SINGLE) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R) $(PROPS_DEFERRED))\
276 $(addsuffix .$(BUILD_TARGET_ARCH), $(PROPS_SINGLE) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R) $(PROPS_DEFERRED))\
277 $(addsuffix .$(BUILD_TARGET_CPU), $(PROPS_SINGLE) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R) $(PROPS_DEFERRED))\
278 $(addsuffix .$(BUILD_TYPE), $(PROPS_SINGLE) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R) $(PROPS_DEFERRED))\
279 ,$(eval $(def_template_extends_prop))) # exploits the 2 evaluation, so no value!
280
281 TEMPLATE_$(template)_EXTENDS_STATUS_ := 42
282 else
283 # protect against inheritance loops.
284 ifneq ($(TEMPLATE_$(template)_EXTENDS_STATUS_),42)
285 $(error kBuild: inheritance loop! template=$(template))
286 endif
287 endif
288endif
289endef
290
291# $ (foreach template, $(_TEMPLATES), $(if TEMPLATE_$(template)_EXTENDS, $(eval $(value def_template_extends))))
292$(foreach template, $(_TEMPLATES), $(eval $(value def_template_extends)))
293
294
295#
296# Common Inheritance
297#
298
299## Inherit one template property in a non-accumulative manner.
300# @param $(prop) Property name
301# @param $(target) Target name
302# @todo fix the precedence order for some properties.
303define def_inherit_template_one
304ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop)
305ifndef $(target)_$(prop)
306$(target)_$(prop) := $(TEMPLATE_$($(target)_TEMPLATE)_$(prop))
307#$ (warning dbgtarget: $(target)_$(prop):='$(value $(target)_$(prop))' TEMPLATE_$($(target)_TEMPLATE)_$(prop))
308endif
309endif
310ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)
311ifndef $(target)_$(prop).$(bld_trg)
312#$ (warning dbgsource: $(target)_$(prop).$(bld_trg)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg))
313$(target)_$(prop).$(bld_trg) := $(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg))
314endif
315endif
316ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)
317ifndef $(target)_$(prop).$(bld_trg).$(bld_trg_arch)
318#$ (warning dbgsource: $(target)_$(prop).$(bld_trg).$(bld_trg_arch)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch))
319$(target)_$(prop).$(bld_trg).$(bld_trg_arch) := $(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch))
320endif
321endif
322ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)
323ifndef $(target)_$(prop).$(bld_trg_arch)
324#$ (warning dbgsource: $(target)_$(prop).$(bld_trg_arch)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch))
325$(target)_$(prop).$(bld_trg_arch) := $(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch))
326endif
327endif
328ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)
329ifndef $(target)_$(prop).$(bld_trg_cpu)
330#$ (warning dbgsource: $(target)_$(prop).$(bld_trg_cpu)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu))
331$(target)_$(prop).$(bld_trg_cpu) := $(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu))
332endif
333endif
334endef
335
336## Inherit one template property in a non-accumulative manner, deferred expansion.
337# @param 1: $(prop) Property name
338# @param 2: $(target) Target name
339# @todo fix the precedence order for some properties.
340# @remark this define relies on double evaluation
341define def_inherit_template_one_deferred
342ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop)
343ifndef $(target)_$(prop)
344$(target)_$(prop) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop))
345#$ (warning dbgtarget: $(target)_$(prop):='$(value $(target)_$(prop))' TEMPLATE_$($(target)_TEMPLATE)_$(prop))
346endif
347endif
348ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)
349ifndef $(target)_$(prop).$(bld_trg)
350#$ (warning dbgsource: $(target)_$(prop).$(bld_trg)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg))
351$(target)_$(prop).$(bld_trg) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg))
352endif
353endif
354ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)
355ifndef $(target)_$(prop).$(bld_trg).$(bld_trg_arch)
356#$ (warning dbgsource: $(target)_$(prop).$(bld_trg).$(bld_trg_arch)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch))
357$(target)_$(prop).$(bld_trg).$(bld_trg_arch) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch))
358endif
359endif
360ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)
361ifndef $(target)_$(prop).$(bld_trg_arch)
362#$ (warning dbgsource: $(target)_$(prop).$(bld_trg_arch)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch))
363$(target)_$(prop).$(bld_trg_arch) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch))
364endif
365endif
366ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)
367ifndef $(target)_$(prop).$(bld_trg_cpu)
368#$ (warning dbgsource: $(target)_$(prop).$(bld_trg_cpu)="TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)" TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu))
369$(target)_$(prop).$(bld_trg_cpu) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu))
370endif
371endif
372endef
373
374## Inherit one acculumlative template property where the 'most significant' items are at the left end.
375# @param $(prop) Property name
376# @param $(target) Target name
377define def_inherit_template_one_accumulate_l
378ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop)
379#$ (warning dbgtype: TEMPLATE_$($(target)_TEMPLATE)_$(prop) $(target)_$(prop)=$($(target)_$(prop)) $(TEMPLATE_$($(target)_TEMPLATE)_$(prop)))
380$(target)_$(prop) += $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop))
381#$ (warning dbgtype: $(target)_$(prop)=$($(target)_$(prop)))
382endif
383ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(BUILD_TYPE)
384#$ (warning dbg4: TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(BUILD_TYPE))
385$(target)_$(prop).$(BUILD_TYPE) += $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(BUILD_TYPE))
386endif
387ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)
388#$ (warning dbg5: TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg))
389$(target)_$(prop).$(bld_trg) += $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg))
390endif
391ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)
392#$ (warning dbg4: TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch))
393$(target)_$(prop).$(bld_trg).$(bld_trg_arch) += $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch))
394endif
395ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)
396#$ (warning dbg5: TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu))
397$(target)_$(prop).$(bld_trg_cpu) += $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu))
398endif
399ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)
400#$ (warning dbg6: TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch))
401$(target)_$(prop).$(bld_trg_arch) += $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch))
402endif
403endef
404
405## Inherit one acculumlative template property where the 'most significant' items are at the right end.
406# First pass, $(value) referenced.
407# @param $(prop) Property name
408# @param $(target) Target name
409define def_inherit_template_one_accumulate_r1
410ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop)
411$(eval _$(target)_$(prop)_R = $(value $(target)_$(prop)))
412endif
413ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(BUILD_TYPE)
414$(eval _$(target)_$(prop).$(BUILD_TYPE)_R = $(value $(target)_$(prop).$(BUILD_TYPE)))
415endif
416ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)
417$(eval _$(target)_$(prop).$(bld_trg)_R = $(value $(target)_$(prop).$(bld_trg)))
418endif
419ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)
420$(eval _$(target)_$(prop).$(bld_trg).$(bld_trg_arch)_R = $(value $(target)_$(prop).$(bld_trg).$(bld_trg_arch)))
421endif
422ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)
423$(eval _$(target)_$(prop).$(bld_trg_cpu)_R = $(value $(target)_$(prop).$(bld_trg_cpu)))
424endif
425ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)
426$(eval _$(target)_$(prop).$(bld_trg_arch)_R = $(value $(target)_$(prop).$(bld_trg_arch)))
427endif
428endef
429
430## Inherit one template property the other way around.
431# Second pass, not $(value) referenced.
432# @param $(prop) Property name
433# @param $(target) Target name
434define def_inherit_template_one_accumulate_r2
435ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop)
436$(target)_$(prop) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop)) $$(_$(target)_$(prop)_R)
437endif
438ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(BUILD_TYPE)
439$(target)_$(prop).$(BUILD_TYPE) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(BUILD_TYPE)) $$(_$(target)_$(prop).$(BUILD_TYPE)_R)
440endif
441ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)
442$(target)_$(prop).$(bld_trg) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg)) $$(_$(target)_$(prop).$(bld_trg)_R)
443endif
444ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)
445$(target)_$(prop).$(bld_trg).$(bld_trg_arch) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg).$(bld_trg_arch)) $$(_$(target)_$(prop).$(bld_trg).$(bld_trg_arch)_R)
446endif
447ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)
448$(target)_$(prop).$(bld_trg_cpu) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_cpu)) $$(_$(target)_$(prop).$(bld_trg_cpu)_R)
449endif
450ifdef TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)
451$(target)_$(prop).$(bld_trg_arch) = $$(TEMPLATE_$($(target)_TEMPLATE)_$(prop).$(bld_trg_arch)) $$(_$(target)_$(prop).$(bld_trg_arch)_R)
452endif
453endef
454
455
456## Inherit template properties for on target.
457# @param $(target) Target name.
458define def_inherit_template
459# Inherit any default template.
460ifdef TEMPLATE
461ifeq ($($(target)_TEMPLATE),)
462$(eval $(target)_TEMPLATE:=$(TEMPLATE))
463endif
464endif
465# Expand the template if specified.
466ifneq ($($(target)_TEMPLATE),)
467$(foreach prop,$(PROPS_SINGLE),$(eval $(value def_inherit_template_one)))
468$(foreach prop,$(PROPS_DEFERRED),$(eval $(def_inherit_template_one_deferred))) # exploits the 2 evaluation, so no value!
469$(foreach prop,$(PROPS_ACCUMULATE_L),$(eval $(def_inherit_template_one_accumulate_l))) # += works fine (better) without value.
470$(foreach prop,$(PROPS_ACCUMULATE_R),\
471$(eval $(value def_inherit_template_one_accumulate_r1))\
472$(eval $(def_inherit_template_one_accumulate_r2))\
473) # This is a hack! (but it appears to work)
474endif
475endef
476
477# Inherit template properties
478bld_trg := $(BUILD_TARGET)
479bld_trg_arch := $(BUILD_TARGET_ARCH)
480bld_trg_cpu := $(BUILD_TARGET_CPU)
481$(foreach target, $(_ALL_BUILD_TARGET_TARGETS),$(eval $(value def_inherit_template)))
482
483bld_trg := $(BUILD_PLATFORM)
484bld_trg_arch := $(BUILD_PLATFORM_ARCH)
485bld_trg_cpu := $(BUILD_PLATFORM_CPU)
486$(foreach target, $(_ALL_BUILD_PLATFORM_TARGETS),$(eval $(value def_inherit_template)))
487
488
489#
490# Include tools & sdks
491#
492_TOOLS := $(TOOL.$(BUILD_TARGET)) $(TOOL.$(BUILD_TARGET_ARCH)) $(TOOL.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
493 $(TOOL.$(BUILD_PLATFORM)) $(TOOL.$(BUILD_PLATFORM_ARCH)) $(TOOL.$(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH)) \
494 $(TOOL)
495_SDKS := $(SDKS.$(BUILD_TARGET)) $(SDKS.$(BUILD_TARGET_ARCH)) $(SDKS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
496 $(SDKS.$(BUILD_PLATFORM)) $(SDKS.$(BUILD_PLATFORM_ARCH)) $(SDKS.$(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH)) \
497 $(SDKS.$(BUILD_TYPE)) \
498 $(SDKS)
499define def_tools_sdks_target_source
500$(eval _TOOLS += $(foreach prop, $(PROPS_TOOLS), \
501 $($(source)_$(prop).$(_bld_trg)) \
502 $($(target)_$(source)_$(prop).$(_bld_trg)) \
503 $($(source)_$(prop).$(_bld_trg).$(_bld_trg_arch)) \
504 $($(target)_$(source)_$(prop).$(_bld_trg).$(_bld_trg_arch)) \
505 $($(source)_$(prop).$(_bld_trg_arch)) \
506 $($(target)_$(source)_$(prop).$(_bld_trg_arch)) \
507 $($(source)_$(prop)) \
508 $($(target)_$(source)_$(prop))))
509$(eval _SDKS += \
510 $($(source)_SDKS.$(_bld_trg)) \
511 $($(target)_$(source)_SDKS.$(_bld_trg)) \
512 $($(source)_SDKS.$(_bld_trg).$(_bld_trg_arch)) \
513 $($(target)_$(source)_SDKS.$(_bld_trg).$(_bld_trg_arch)) \
514 $($(source)_SDKS.$(_bld_trg_arch)) \
515 $($(target)_$(source)_SDKS.$(_bld_trg_arch)) \
516 $($(source)_SDKS.$(BUILD_TYPE)) \
517 $($(target)_$(source)_SDKS.$(BUILD_TYPE)) \
518 $($(source)_SDKS) \
519 $($(target)_$(source)_SDKS))
520endef
521
522define def_tools_sdks_target
523_bld_trg := $(firstword $($(target)_BLD_TRG) $(bld_trg))
524_bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(bld_trg_arch))
525_bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(bld_trg_cpu))
526
527$(eval _TOOLS += $(foreach prop, $(PROPS_TOOLS), \
528 $($(target)_$(prop).$(_bld_trg)) \
529 $($(target)_$(prop).$(_bld_trg_arch)) \
530 $($(target)_$(prop).$(_bld_trg).$(_bld_trg_arch)) \
531 $($(target)_$(prop))))
532$(eval _SDKS += \
533 $($(target)_SDKS.$(_bld_trg)) \
534 $($(target)_SDKS.$(_bld_trg_arch)) \
535 $($(target)_SDKS.$(_bld_trg).$(_bld_trg_arch)) \
536 $($(target)_SDKS))
537$(foreach source, \
538 $($(target)_SOURCES.$(_bld_trg)) \
539 $($(target)_SOURCES.$(_bld_trg_arch)) \
540 $($(target)_SOURCES.$(_bld_trg).$(_bld_trg_arch)) \
541 $($(target)_SOURCES.$(_bld_trg_cpu)) \
542 $($(target)_SOURCES.$(BUILD_TYPE)) \
543 $($(target)_SOURCES) \
544 , $(eval $(value def_tools_sdks_target_source)))
545endef
546
547define def_tools_srcname_target
548_bld_trg := $(firstword $($(target)_BLD_TRG) $(bld_trg))
549_bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(bld_trg_arch))
550_bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(bld_trg_cpu))
551
552$(foreach source, $(notdir\
553 $($(target)_SOURCES.$(_bld_trg)) \
554 $($(target)_SOURCES.$(_bld_trg_arch)) \
555 $($(target)_SOURCES.$(_bld_trg).$(_bld_trg_arch)) \
556 $($(target)_SOURCES.$(_bld_trg_cpu)) \
557 $($(target)_SOURCES.$(BUILD_TYPE)) \
558 $($(target)_SOURCES) \
559 ), $(eval $(value def_tools_sdks_target_source)))
560endef
561
562bld_trg := $(BUILD_TARGET)
563bld_trg_arch := $(BUILD_TARGET_ARCH)
564bld_trg_cpu := $(BUILD_TARGET_CPU)
565$(foreach target, $(_ALL_BUILD_TARGET_TARGETS), $(eval $(value def_tools_sdks_target)))
566$(foreach target, $(_ALL_SRCNAME_TARGETS), $(eval $(value def_tools_srcname_target)))
567
568bld_trg := $(BUILD_PLATFORM)
569bld_trg_arch := $(BUILD_PLATFORM_ARCH)
570bld_trg_cpu := $(BUILD_PLATFORM_CPU)
571$(foreach target, $(_ALL_BUILD_PLATFORM_TARGETS), $(eval $(value def_tools_sdks_target)))
572
573
574# include TOOLS
575define def_tools_include
576ifndef TOOL_$(tool)
577TOOL_$(tool)_KMK_FILE := $(firstword $(foreach path, $(TOOL_PATHS) $(PATH_KBUILD)/tools, $(wildcard $(path)/$(tool).kmk)))
578ifeq ($(TOOL_$(tool)_KMK_FILE),)
579$(error kBuild: Cannot find include file for the tool '$(tool)'! Searched: $(TOOL_PATHS) $(PATH_KBUILD)/tools)
580endif
581include $(TOOL_$(tool)_KMK_FILE)
582endif
583endef
584
585_TOOLS := $(sort $(_TOOLS))
586$(foreach tool, $(_TOOLS), $(eval $(value def_tools_include)))
587
588
589# include SDKS
590define def_sdks_include_one
591ifndef SDK_$(sdk)
592SDK_$(sdk)_KMK_FILE := $(firstword $(foreach path, $(SDK_PATHS) $(PATH_KBUILD)/sdks, $(wildcard $(path)/$(sdk).kmk)))
593ifeq ($(SDK_$(sdk)_KMK_FILE),)
594$(error kBuild: Cannot find include file for the SDK '$(sdk)'! Searched: $(SDK_PATHS) $(PATH_KBUILD)/sdks)
595endif
596include $(SDK_$(sdk)_KMK_FILE)
597endif
598endef
599
600_SDKS := $(sort $(_SDKS))
601$(foreach sdk, $(_SDKS), $(eval $(value def_sdks_include_one)))
602
603
604
605#
606# Fetching Tools, Sources and Similar.
607#
608MD5SUM := md5sum
609
610## generates the fetch rule
611define def_fetch_src_fetch_rule
612# Indirect goal for downloading something.
613.PRECIOUS: $(out)
614$(out) $($(target)_$(srcname)_FETCH_OUTPUT_): | $($(target)_$(srcname)_FETCH_DEPORD_)
615 @$(ECHO) Downloading $(source)...
616 $$(RM) -f $(out) $(out).md5 ## @todo fancy stuff like download continuation
617 $($(target)_$(srcname)_FETCH_CMDS_)
618 @$(if $(md5),$$(APPEND) $(out).md5 "$(md5) *$(out)")
619 $(if $(md5),$$(MD5SUM) -c $(out).md5)
620
621
622
623# Intermediate goal for making sure the md5 and size matches. it will (re) fetch the archive if necessary.
624$(out).checked_$(md5)_$(size): $($(target)_$(srcname)_FETCH_DEPEND_) | $($(target)_$(srcname)_FETCH_DEPORD_)
625 @$(ECHO) Checking $(out) ($(source))...
626 $$(RM) -f $$@ $(out).md5
627 @# creates the .md5 we pass to md5sum.
628 @$(if $(md5),$(APPEND) $(out).md5 "$(md5) *$(out)")
629 @# if the file exists, perform md5sum, otherwise just fetch it.
630 $(if $(wildcard $(out)),\
631 $(MD5SUM) -c $(out).md5 || ( $(RM_EXT) -f $(out) && $(MAKE) -f $(MAKEFILE) $(out) ),\
632 $(MAKE) -f $(MAKEFILE) $(out) )
633 @$(APPEND) $$@
634
635_TARGET_$(target)_FETCHED += $(out).checked_$(md5)_$(size)
636
637endef
638
639## generates the unpack rule
640define def_fetch_src_unpack_rule
641#$ (warning def_fetch_src_unpack_rule: source=$(source))
642
643# This is the unpack rule. it has an order-only dependency on the download check.
644$(out) $($(target)_$(srcname)_UNPACK_OUTPUT_): $($(target)_$(srcname)_UNPACK_DEPEND_) \
645 | $($(target)_$(srcname)_UNPACK_DEPORD_) $(archive).checked_$(md5)_$(size)
646 @$(ECHO) Unpacking $(source) into $(inst)...
647 $$(RM) -f $(out)
648 $($(target)_$(srcname)_UNPACK_CMDS_)
649 @$(APPEND) $(out) $(out)
650 @$(APPEND) $(out) $(out).check_$(md5)_$(size)
651
652$(eval _TARGET_$(target)_UNPACKED += $(out))
653_TARGET_$(target)_DIGEST := $(_TARGET_$(target)_DIGEST)-$(srcname)_$(md5)_$(size)
654
655endef
656
657## Processes a fetch source
658#
659define def_fetch_src
660#$ (warning dbg: def_fetch_src: source='$(source)' target='$(target)')
661
662# common
663srcname := $(notdir $(source))
664inst := $(firstword \
665 $($(target)_$(source)_INST)\
666 $($(target)_$(srcname)_INST)\
667 $($(source)_INST)\
668 $($(srcname)_INST)\
669 $($(target)_INST)\
670)
671ifneq ($(patsubst %/,ok,$(inst)),ok)
672$(error kBuild: Bad or missing INST property for source '$(source)' in target '$(target)': $(inst))
673endif
674INSTARGET_$(target)_$(srcname) := $(inst)
675fetchdir := $(firstword \
676 $($(target)_$(source)_FETCHDIR)\
677 $($(target)_$(srcname)_FETCHDIR)\
678 $($(source)_FETCHDIR)\
679 $($(srcname)_FETCHDIR)\
680 $($(target)_FETCHDIR)\
681 $(FETCHDIR)\
682 $(PATH_TARGET)\
683)
684deps := \
685 $($(target)_$(source)_DEPS)\
686 $($(target)_$(srcname)_DEPS)\
687 $($(source)_DEPS)\
688 $($(srcname)_DEPS)\
689 $($(target)_DEPS)
690md5 := $(firstword \
691 $($(target)_$(source)_MD5)\
692 $($(target)_$(srcname)_MD5)\
693 $($(source)_MD5)\
694 $($(srcname)_MD5)\
695 $($(target)_MD5)\
696)
697size := $(firstword \
698 $($(target)_$(source)_SIZE)\
699 $($(target)_$(srcname)_SIZE)\
700 $($(source)_SIZE)\
701 $($(srcname)_SIZE)\
702 $($(target)_SIZE)\
703)
704dep := # not legal for fetch and unpack tools
705
706
707#
708# The fetching.
709#
710out := $(fetchdir)/$(srcname)
711archive := $(out)
712TARGET_$(target)_$(srcname) := $(out)
713dirdep := $(call DIRDEP,$(fetchdir))
714tool := $(firstword \
715 $($(target)_$(source)_FETCHTOOL)\
716 $($(target)_$(srcname)_FETCHTOOL)\
717 $($(target)_$(source)_TOOL)\
718 $($(target)_$(srcname)_TOOL)\
719 $($(source)_FETCHTOOL)\
720 $($(srcname)_FETCHTOOL)\
721 $($(source)_TOOL)\
722 $($(srcname)_TOOL)\
723 $($(target)_FETCHTOOL)\
724 $($(target)_TOOL)\
725 )
726flags :=\
727 $(TOOL_$(tool)_FETCHFLAGS)\
728 $(FETCHFLAGS)\
729 $($(target)_FETCHFLAGS)\
730 $($(srcname)_FETCHFLAGS)\
731 $($(source)_FETCHFLAGS)\
732 $($(target)_$(srcname)_FETCHFLAGS)\
733 $($(target)_$(source)_FETCHFLAGS)
734
735#$ (warning dbg: target=$(target) source=$(source) $(srcname)=$(srcname) tool=$(tool) out=$(out) flags=$(flags) dirdep=$(dirdep) fetchdir=$(fetchdir) md5=$(md5) size=$(size))
736
737ifndef TOOL_$(tool)_FETCH_CMDS
738$(warning kBuild: tools: \
739 1 $($(target)_$(source)_FETCHTOOL)\
740 2 $($(target)_$(srcname)_FETCHTOOL)\
741 3 $($(target)_$(source)_TOOL)\
742 4 $($(target)_$(srcname)_TOOL)\
743 5 $($(source)_FETCHTOOL)\
744 6 $($(srcname)_FETCHTOOL)\
745 7 $($(source)_TOOL)\
746 8 $($(srcname)_TOOL)\
747 9 $($(target)_FETCHTOOL)\
748 10 $($(target)_TOOL) )
749$(error kBuild: TOOL_$(tool)_FETCH_CMDS is not defined. source=$(source) target=$(target) )
750endif
751
752# call the tool
753$(target)_$(srcname)_FETCH_CMDS_ := $(TOOL_$(tool)_FETCH_CMDS)
754$(target)_$(srcname)_FETCH_OUTPUT_ := $(TOOL_$(tool)_FETCH_OUTPUT)
755$(target)_$(srcname)_FETCH_DEPEND_ := $(TOOL_$(tool)_FETCH_DEPEND) $(deps)
756$(target)_$(srcname)_FETCH_DEPORD_ := $(TOOL_$(tool)_FETCH_DEPORD) $(dirdep)
757
758# generate the fetch rule.
759$(eval $(def_fetch_src_fetch_rule))
760
761
762#
763# The unpacking / installing.
764#
765out := $(inst)_kBuild_$(target)_$(srcname)_unpacked.lst
766dirdep := $(call DIRDEP,$(inst))
767tool := $(firstword \
768 $($(target)_$(source)_UNPACKTOOL)\
769 $($(target)_$(srcname)_UNPACKTOOL)\
770 $($(target)_$(source)_TOOL)\
771 $($(target)_$(srcname)_TOOL)\
772 $($(source)_UNPACKTOOL)\
773 $($(srcname)_UNPACKTOOL)\
774 $($(source)_TOOL)\
775 $($(srcname)_TOOL)\
776 $($(target)_UNPACKTOOL)\
777 $($(target)_TOOL) \
778 )
779ifeq ($(tool),)
780tool := $(toupper $(subst .,,$(suffix $(subst tar.,TAR,$(srcname)))))
781$(eval $(value def_tools_include))
782endif
783flags :=\
784 $(TOOL_$(tool)_UNPACKFLAGS)\
785 $(UNPACKFLAGS)\
786 $($(target)_UNPACKFLAGS)\
787 $($(srcname)_UNPACKFLAGS)\
788 $($(source)_UNPACKFLAGS)\
789 $($(target)_$(srcname)_UNPACKFLAGS)\
790 $($(target)_$(source)_UNPACKFLAGS)
791
792#$ (warning dbg: target=$(target) source=$(source) $(srcname)=$(srcname) tool=$(tool) out=$(out) flags=$(flags) dirdep=$(dirdep) inst=$(inst) md5=$(md5) size=$(size))
793ifndef TOOL_$(tool)_UNPACK_CMDS
794$(warning kBuild: tools: \
795 1 $($(target)_$(source)_UNPACKTOOL)\
796 2 $($(target)_$(srcname)_UNPACKTOOL)\
797 3 $($(target)_$(source)_TOOL)\
798 4 $($(target)_$(srcname)_TOOL)\
799 5 $($(source)_UNPACKTOOL)\
800 6 $($(srcname)_UNPACKTOOL)\
801 7 $($(source)_TOOL)\
802 8 $($(srcname)_TOOL)\
803 9 $($(target)_UNPACKTOOL)\
804 10 $($(target)_TOOL) \
805 11 $(toupper $(subst tar.,TAR,$(ext $(srcname)))) \
806 )
807$(error kBuild: TOOL_$(tool)_UNPACK_CMDS is not defined. source=$(source) target=$(target) )
808endif
809
810# call the tool
811$(target)_$(srcname)_UNPACK_CMDS_ := $(TOOL_$(tool)_UNPACK_CMDS)
812$(target)_$(srcname)_UNPACK_OUTPUT_ := $(TOOL_$(tool)_UNPACK_OUTPUT)
813$(target)_$(srcname)_UNPACK_DEPEND_ := $(TOOL_$(tool)_UNPACK_DEPEND) $(deps)
814$(target)_$(srcname)_UNPACK_DEPORD_ := $(TOOL_$(tool)_UNPACK_DEPORD) $(dirdep)
815
816# generate the fetch rule.
817$(eval $(def_fetch_src_unpack_rule))
818
819_DIRS += $(inst) $(fetchdir)
820
821endef
822
823
824##
825# Define the target level rules for a fetch.
826# @param target
827# @param out
828# @param inst
829# @param _TARGET_$(target)_FETCHED...
830# @param bld_trg
831# @param bld_trg_arch
832define def_fetch_rules
833
834$(out): $(_TARGET_$(target)_UNPACKED) | $(call DIRDEP,$(inst))
835 @$(ECHO) Successfully fetched $(target)
836 $(RM) -f $$@ $$@.tmp
837 @$(APPEND) $$@.tmp ""
838 $(if $(_TARGET_$(target)_UNPACKED),$(CAT_EXT) $(_TARGET_$(target)_UNPACKED) >> $$@.tmp)
839 $(MV) -f $$@.tmp $$@
840
841$(out)_unfetched:
842 @$(ECHO) Unfetching $(target)...
843 $(RM) -f $$(shell $$(CAT_EXT) $(out) 2> /dev/null)
844 # figure out how to make this quiet...
845 -$(RMDIR) -p $(dir $(out)) $$(sort $$(dir $$(shell $$(CAT_EXT) $(out) 2> /dev/null)))
846 $(RM) -f $(out)
847 -$(RMDIR) -p $(dir $(out))
848
849endef
850
851
852##
853# Deal with one fetch target.
854# @param target
855# @param bld_trg
856# @param bld_trg_arch
857define def_fetch
858
859# common
860INSTARGET_$(target) := $($(target)_INST)
861ifneq ($(patsubst %/,ok,$(INSTARGET_$(target))),ok)
862$(error kBuild: Bad or missing INST property for target '$(target)'. \
863 $(target)_INST='$($(target)_INST)' ($(origin $(target)_INST)))
864endif
865_TARGET_$(target)_FETCHED :=
866_TARGET_$(target)_UNPACKED :=
867_TARGET_$(target)_DIGEST :=
868
869# The 'sources'.
870#$ (warning dbg fetch: target=$(target) sources=$($(target)_SOURCES) $($(target)_SOURCES.$(BUILD_TYPE)) $($(target)_SOURCES.$(BUILD_TARGET)) $($(target)_SOURCES.$(BUILD_TARGET_ARCH)) $($(target)_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)))
871$(foreach source,$($(target)_SOURCES) $($(target)_SOURCES.$(BUILD_TYPE)) $($(target)_SOURCES.$(BUILD_TARGET)) $($(target)_SOURCES.$(BUILD_TARGET_ARCH)) $($(target)_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)),\
872 $(eval $(value def_fetch_src)))
873
874# The target.
875inst := $(INSTARGET_$(target))
876out := $(inst)_kBuild_fetch_$(target)
877
878$(eval $(def_fetch_rules))
879
880_FETCHES += $(out)
881_DOWNLOADS += $(_TARGET_$(target)_FETCHED)
882_UNPACKS += $(_TARGET_$(target)_UNPACKED)
883_UNFETCHES += $(out)_unfetched
884_DIRS += $(inst)
885
886endef
887
888# Walk the FETCH target lists.
889bld_trg := $(BUILD_TARGET)
890bld_trg_arch := $(BUILD_TARGET_ARCH)
891$(foreach target, $(FETCHES) $(FETCHES.$(BUILD_TARGET)) $(FETCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), \
892 $(eval $(value def_fetch)))
893
894# some aliases.
895download: $(_DOWNLOADS)
896unpack: $(_UNPACK)
897fetches: $(_FETCHES)
898unfetches: $(_UNFETCHES)
899
900
901
902##
903## Patching.
904##
905##
906#define def_fetch_src
907#
908#endef
909#
910#
911## Deal with one patch target.
912#define def_patch
913#
914#$(foreach source,$($(target)_SOURCES) $($(target)_SOURCES.$(BUILD_TYPE)) $($(target)_SOURCES.$(BUILD_TARGET)) $($(target)_SOURCES.$(BUILD_TARGET_ARCH)) $($(target)_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)),\
915# $(eval $(value def_patch_one)))
916#
917#_PATCHES +=
918#endef
919#
920#$(foreach target, $(PATCHES) $(PATCHES.$(BUILD_TARGET)) $(PATCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), \
921# $(eval $(value def_patch)))
922#
923
924
925#
926# Object processing.
927#
928
929## wrapper the compile command dependency check.
930ifndef NO_COMPILE_CMDS_DEPS
931 ifneq ($(filter comp-vars,$(KMK_FEATURES)),)
932_DEP_COMPILE_CMDS = $(comp-vars $(target)_$(source)_CMDS_PREV_,$(target)_$(source)_CMDS_,FORCE)
933 else
934_DEP_COMPILE_CMDS = $(if $(subst $(strip $($(target)_$(source)_CMDS_PREV_)),,$(strip $($(target)_$(source)_CMDS_))),FORCE,)
935 endif
936else
937_DEP_COMPILE_CMDS =
938endif
939
940## Generates the rules for building a specific object, and the '::' aliases
941# for building a source file.
942# @param $(obj) The object file.
943define def_target_source_rule
944$(obj) $($(target)_$(source)_OUTPUT_): \
945 $($(target)_$(source)_DEPEND_) \
946 $(_DEP_COMPILE_CMDS) \
947 | \
948 $($(target)_$(source)_DEPORD_)
949 $(call MSG_L1,Creating $$@)
950 $(RM) -f $(dep) $(obj) $($(target)_$(source)_OUTPUT_)
951 $(custom_pre)
952
953$($(target)_$(source)_CMDS_)
954
955 $(custom_post)
956ifndef NO_COMPILE_CMDS_DEPS
957 @$(APPEND) "$(dep)"
958 @$(APPEND) "$(dep)" 'define $(target)_$(source)_CMDS_PREV_'
959 @$(APPEND) "$(dep)" '$(subst $(NL),'$(NL)$(TAB)@$(APPEND) "$(dep)" ',$($(target)_$(source)_CMDS_))'
960 @$(APPEND) "$(dep)" 'endef'
961endif
962
963$(basename $(notdir $(obj))).o::
964 + $$(MAKE) -f $$(MAKEFILE) $(obj)
965$(basename $(notdir $(obj))).obj::
966 + $$(MAKE) -f $$(MAKEFILE) $(obj)
967endef
968
969
970## wrapper the link command dependency check.
971ifndef NO_COMPILE_CMDS_DEPS
972 ifneq ($(filter comp-vars,$(KMK_FEATURES)),)
973_DEP_LINK_CMDS = $(comp-vars $(target)_CMDS_PREV_,$(target)_CMDS_,FORCE)
974 else
975_DEP_LINK_CMDS = $(if $(subst $(strip $($(target)_CMDS_PREV_)),,$(strip $($(target)_CMDS_))),FORCE,)
976 endif
977else
978_DEP_LINK_CMDS =
979endif
980
981## Generate the link rule for a target.
982# @param $(target) The normalized target name.
983# @param $(dirdep) Directories we depend upon begin created before linking.
984# @param $(dep) The name of the dependency file.
985# @param $(out)
986# @param $($(target)_OUTPUT_) Output files from the link.
987# @param $($(target)_DEPEND_) Dependencies.
988# @param $($(target)_DEPORD_) Dependencies which should only affect build order.
989# @param $($(target)_CMDS_) The link commands.
990# @param $($(target)_CMDS_PREV_) The link commands from the previous run.
991define def_link_rule
992$(out) $($(target)_OUTPUT_): \
993 $($(target)_DEPEND_) \
994 $(_DEP_LINK_CMDS) \
995 | \
996 $($(target)_DEPORD_)
997 $(call MSG_L1,Creating $$@)
998 $(RM) -f $(dep) $(out) $($(target)_OUTPUT_)
999 $(custom_pre)
1000
1001$($(target)_CMDS_)
1002
1003 $(custom_post)
1004ifndef NO_LINK_CMDS_DEPS
1005 @$(APPEND) "$(dep)" 'define $(target)_CMDS_PREV_'
1006 @$(APPEND) "$(dep)" '$(subst $(NL),'$(NL)$(TAB)@$(APPEND) "$(dep)" ',$($(target)_CMDS_))'
1007 @$(APPEND) "$(dep)" 'endef'
1008endif
1009
1010$(basename $(notdir $(out)))::
1011 + $$(MAKE) -f $$(MAKEFILE) $(out)
1012endef
1013
1014
1015## Generate the link & lib install rule
1016# @param $(target) Normalized target name.
1017# @param $(out) The build target.
1018# @param $(INSTARGET_$(target)) The installation targets.
1019# @param $(mode) The file mode (optional)
1020define def_link_install_rule
1021$(INSTARGET_$(target)) : $(out) | $(call DIRDEP,$(dir $(INSTARGET_$(target))))
1022 $(INSTALL) $$(if $(mode),-m $(mode)) $(out) $$@
1023endef
1024
1025
1026
1027## Generic macro for processing C, C++ and Assembly sources.
1028# @param $(target) Normalized target name.
1029# @param $(source) Source file name.
1030# @param $(type) Source type. {C,CXX,AS}
1031# @param bld_type Build type.
1032# @param bld_trg Build target.
1033# @param bld_trg_arch Build target arch.
1034# @param bld_trg_cpu Build target cpu.
1035# @remark obsoleted by kBuild helpers in kmk. Only required for limited gmake compatbility.
1036#
1037define def_target_source_c_cpp_asm_rc_old
1038#$ (warning dbg: def_target_source_c_cpp_asm_rc_old: source='$(source)' target='$(target)' type='$(type)')
1039
1040tool := $(call _SOURCE_TOOL,$(source),$(target),$(type))
1041outbase := $(call _OBJECT_BASE,$(source),$(target))
1042PATH_$(target)_$(source) := $(patsubst %/,%,$(dir $(outbase)))
1043dirdep := $(call DIRDEP,$(dir $(outbase)))
1044defs :=\
1045 $(TOOL_$(tool)_DEFS)\
1046 $(TOOL_$(tool)_DEFS.$(bld_type))\
1047 $(TOOL_$(tool)_DEFS.$(bld_trg))\
1048 $(TOOL_$(tool)_DEFS.$(bld_trg_arch))\
1049 $(TOOL_$(tool)_DEFS.$(bld_trg).$(bld_trg_arch))\
1050 $(TOOL_$(tool)_DEFS.$(bld_trg_cpu))\
1051 $(TOOL_$(tool)_$(type)DEFS)\
1052 $(TOOL_$(tool)_$(type)DEFS.$(bld_type))\
1053 $(foreach sdk, $(SDKS.$(bld_trg).$(bld_trg_arch)) \
1054 $(SDKS.$(bld_trg_arch)) \
1055 $(SDKS.$(bld_trg)) \
1056 $(SDKS.$(bld_type)) \
1057 $(SDKS),\
1058 $(SDK_$(sdk)_DEFS)\
1059 $(SDK_$(sdk)_DEFS.$(bld_type))\
1060 $(SDK_$(sdk)_DEFS.$(bld_trg))\
1061 $(SDK_$(sdk)_DEFS.$(bld_trg_arch))\
1062 $(SDK_$(sdk)_DEFS.$(bld_trg).$(bld_trg_arch))\
1063 $(SDK_$(sdk)_DEFS.$(bld_trg_cpu))\
1064 $(SDK_$(sdk)_$(type)DEFS)\
1065 $(SDK_$(sdk)_$(type)DEFS.$(bld_type))\
1066 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg))\
1067 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_arch))\
1068 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1069 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_cpu)))\
1070 $(DEFS)\
1071 $(DEFS.$(bld_type))\
1072 $(DEFS.$(bld_trg))\
1073 $(DEFS.$(bld_trg_arch))\
1074 $(DEFS.$(bld_trg).$(bld_trg_arch))\
1075 $(DEFS.$(bld_trg_cpu))\
1076 $($(type)DEFS)\
1077 $($(type)DEFS.$(bld_type))\
1078 $($(type)DEFS.$(bld_trg))\
1079 $($(type)DEFS.$(bld_trg_arch))\
1080 $($(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1081 $($(type)DEFS.$(bld_trg_cpu))\
1082 $(foreach sdk, $($(target)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1083 $($(target)_SDKS.$(bld_trg_arch)) \
1084 $($(target)_SDKS.$(bld_trg)) \
1085 $($(target)_SDKS.$(bld_type)) \
1086 $($(target)_SDKS),\
1087 $(SDK_$(sdk)_DEFS)\
1088 $(SDK_$(sdk)_DEFS.$(bld_type))\
1089 $(SDK_$(sdk)_DEFS.$(bld_trg))\
1090 $(SDK_$(sdk)_DEFS.$(bld_trg_arch))\
1091 $(SDK_$(sdk)_DEFS.$(bld_trg).$(bld_trg_arch))\
1092 $(SDK_$(sdk)_DEFS.$(bld_trg_cpu))\
1093 $(SDK_$(sdk)_$(type)DEFS)\
1094 $(SDK_$(sdk)_$(type)DEFS.$(bld_type))\
1095 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg))\
1096 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_arch))\
1097 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1098 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_cpu)))\
1099 $($(target)_DEFS)\
1100 $($(target)_DEFS.$(bld_type))\
1101 $($(target)_DEFS.$(bld_trg))\
1102 $($(target)_DEFS.$(bld_trg_arch))\
1103 $($(target)_DEFS.$(bld_trg).$(bld_trg_arch))\
1104 $($(target)_DEFS.$(bld_trg_cpu))\
1105 $($(target)_$(type)DEFS)\
1106 $($(target)_$(type)DEFS.$(bld_type))\
1107 $($(target)_$(type)DEFS.$(bld_trg))\
1108 $($(target)_$(type)DEFS.$(bld_trg_arch))\
1109 $($(target)_$(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1110 $($(target)_$(type)DEFS.$(bld_trg_cpu))\
1111 $(foreach sdk, $($(source)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1112 $($(source)_SDKS.$(bld_trg_arch)) \
1113 $($(source)_SDKS.$(bld_trg)) \
1114 $($(source)_SDKS.$(bld_type)) \
1115 $($(source)_SDKS),\
1116 $(SDK_$(sdk)_DEFS)\
1117 $(SDK_$(sdk)_DEFS.$(bld_type))\
1118 $(SDK_$(sdk)_DEFS.$(bld_trg))\
1119 $(SDK_$(sdk)_DEFS.$(bld_trg_arch))\
1120 $(SDK_$(sdk)_DEFS.$(bld_trg).$(bld_trg_arch))\
1121 $(SDK_$(sdk)_DEFS.$(bld_trg_cpu))\
1122 $(SDK_$(sdk)_$(type)DEFS)\
1123 $(SDK_$(sdk)_$(type)DEFS.$(bld_type))\
1124 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg))\
1125 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_arch))\
1126 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1127 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_cpu)))\
1128 $($(source)_DEFS)\
1129 $($(source)_DEFS.$(bld_type))\
1130 $($(source)_DEFS.$(bld_trg))\
1131 $($(source)_DEFS.$(bld_trg_arch))\
1132 $($(source)_DEFS.$(bld_trg).$(bld_trg_arch))\
1133 $($(source)_DEFS.$(bld_trg_cpu))\
1134 $($(source)_$(type)DEFS)\
1135 $($(source)_$(type)DEFS.$(bld_type))\
1136 $($(source)_$(type)DEFS.$(bld_trg))\
1137 $($(source)_$(type)DEFS.$(bld_trg_arch))\
1138 $($(source)_$(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1139 $($(source)_$(type)DEFS.$(bld_trg_cpu))\
1140 $(foreach sdk, $($(target)_$(source)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1141 $($(target)_$(source)_SDKS.$(bld_trg_arch)) \
1142 $($(target)_$(source)_SDKS.$(bld_trg)) \
1143 $($(target)_$(source)_SDKS.$(bld_type)) \
1144 $($(target)_$(source)_SDKS),\
1145 $(SDK_$(sdk)_DEFS)\
1146 $(SDK_$(sdk)_DEFS.$(bld_type))\
1147 $(SDK_$(sdk)_DEFS.$(bld_trg))\
1148 $(SDK_$(sdk)_DEFS.$(bld_trg_arch))\
1149 $(SDK_$(sdk)_DEFS.$(bld_trg).$(bld_trg_arch))\
1150 $(SDK_$(sdk)_DEFS.$(bld_trg_cpu))\
1151 $(SDK_$(sdk)_$(type)DEFS)\
1152 $(SDK_$(sdk)_$(type)DEFS.$(bld_type))\
1153 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg))\
1154 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_arch))\
1155 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1156 $(SDK_$(sdk)_$(type)DEFS.$(bld_trg_cpu)))\
1157 $($(target)_$(source)_DEFS)\
1158 $($(target)_$(source)_DEFS.$(bld_type))\
1159 $($(target)_$(source)_DEFS.$(bld_trg))\
1160 $($(target)_$(source)_DEFS.$(bld_trg_arch))\
1161 $($(target)_$(source)_DEFS.$(bld_trg).$(bld_trg_arch))\
1162 $($(target)_$(source)_DEFS.$(bld_trg_cpu))\
1163 $($(target)_$(source)_$(type)DEFS)\
1164 $($(target)_$(source)_$(type)DEFS.$(bld_type))\
1165 $($(target)_$(source)_$(type)DEFS.$(bld_trg))\
1166 $($(target)_$(source)_$(type)DEFS.$(bld_trg_arch))\
1167 $($(target)_$(source)_$(type)DEFS.$(bld_trg).$(bld_trg_arch))\
1168 $($(target)_$(source)_$(type)DEFS.$(bld_trg_cpu))
1169incs :=\
1170 $($(target)_$(source)_$(type)INCS.$(bld_trg_cpu))\
1171 $($(target)_$(source)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1172 $($(target)_$(source)_$(type)INCS.$(bld_trg_arch))\
1173 $($(target)_$(source)_$(type)INCS.$(bld_trg))\
1174 $($(target)_$(source)_$(type)INCS.$(bld_type))\
1175 $($(target)_$(source)_$(type)INCS)\
1176 $($(target)_$(source)_INCS.$(bld_trg_cpu))\
1177 $($(target)_$(source)_INCS.$(bld_trg).$(bld_trg_arch))\
1178 $($(target)_$(source)_INCS.$(bld_trg_arch))\
1179 $($(target)_$(source)_INCS.$(bld_trg))\
1180 $($(target)_$(source)_INCS.$(bld_type))\
1181 $($(target)_$(source)_INCS)\
1182 $(foreach sdk, $($(target)_$(source)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1183 $($(target)_$(source)_SDKS.$(bld_trg_arch)) \
1184 $($(target)_$(source)_SDKS.$(bld_trg)) \
1185 $($(target)_$(source)_SDKS.$(bld_type)) \
1186 $($(target)_$(source)_SDKS),\
1187 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_cpu))\
1188 $(SDK_$(sdk)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1189 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_arch))\
1190 $(SDK_$(sdk)_$(type)INCS.$(bld_trg))\
1191 $(SDK_$(sdk)_$(type)INCS.$(bld_type))\
1192 $(SDK_$(sdk)_$(type)INCS)\
1193 $(SDK_$(sdk)_INCS.$(bld_trg_cpu))\
1194 $(SDK_$(sdk)_INCS.$(bld_trg).$(bld_trg_arch))\
1195 $(SDK_$(sdk)_INCS.$(bld_trg_arch))\
1196 $(SDK_$(sdk)_INCS.$(bld_trg))\
1197 $(SDK_$(sdk)_INCS.$(bld_type))\
1198 $(SDK_$(sdk)_INCS))\
1199 $($(source)_$(type)INCS.$(bld_trg_cpu))\
1200 $($(source)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1201 $($(source)_$(type)INCS.$(bld_trg_arch))\
1202 $($(source)_$(type)INCS.$(bld_trg))\
1203 $($(source)_$(type)INCS.$(bld_type))\
1204 $($(source)_$(type)INCS)\
1205 $($(source)_INCS.$(bld_trg_cpu))\
1206 $($(source)_INCS.$(bld_trg).$(bld_trg_arch))\
1207 $($(source)_INCS.$(bld_trg_arch))\
1208 $($(source)_INCS.$(bld_trg))\
1209 $($(source)_INCS.$(bld_type))\
1210 $($(source)_INCS)\
1211 $(foreach sdk, $($(source)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1212 $($(source)_SDKS.$(bld_trg_arch)) \
1213 $($(source)_SDKS.$(bld_trg)) \
1214 $($(source)_SDKS.$(bld_type)) \
1215 $($(source)_SDKS),\
1216 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_cpu))\
1217 $(SDK_$(sdk)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1218 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_arch))\
1219 $(SDK_$(sdk)_$(type)INCS.$(bld_trg))\
1220 $(SDK_$(sdk)_$(type)INCS.$(bld_type))\
1221 $(SDK_$(sdk)_$(type)INCS)\
1222 $(SDK_$(sdk)_INCS.$(bld_trg_cpu))\
1223 $(SDK_$(sdk)_INCS.$(bld_trg).$(bld_trg_arch))\
1224 $(SDK_$(sdk)_INCS.$(bld_trg_arch))\
1225 $(SDK_$(sdk)_INCS.$(bld_trg))\
1226 $(SDK_$(sdk)_INCS.$(bld_type))\
1227 $(SDK_$(sdk)_INCS))\
1228 $($(target)_$(type)INCS.$(bld_trg_cpu))\
1229 $($(target)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1230 $($(target)_$(type)INCS.$(bld_trg_arch))\
1231 $($(target)_$(type)INCS.$(bld_trg))\
1232 $($(target)_$(type)INCS.$(bld_type))\
1233 $($(target)_$(type)INCS)\
1234 $($(target)_INCS.$(bld_trg_cpu))\
1235 $($(target)_INCS.$(bld_trg).$(bld_trg_arch))\
1236 $($(target)_INCS.$(bld_trg_arch))\
1237 $($(target)_INCS.$(bld_trg))\
1238 $($(target)_INCS.$(bld_type))\
1239 $($(target)_INCS)\
1240 $(foreach sdk, $($(target)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1241 $($(target)_SDKS.$(bld_trg_arch)) \
1242 $($(target)_SDKS.$(bld_trg)) \
1243 $($(target)_SDKS.$(bld_type)) \
1244 $($(target)_SDKS),\
1245 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_cpu))\
1246 $(SDK_$(sdk)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1247 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_arch))\
1248 $(SDK_$(sdk)_$(type)INCS.$(bld_trg))\
1249 $(SDK_$(sdk)_$(type)INCS.$(bld_type))\
1250 $(SDK_$(sdk)_$(type)INCS)\
1251 $(SDK_$(sdk)_INCS.$(bld_trg_cpu))\
1252 $(SDK_$(sdk)_INCS.$(bld_trg).$(bld_trg_arch))\
1253 $(SDK_$(sdk)_INCS.$(bld_trg_arch))\
1254 $(SDK_$(sdk)_INCS.$(bld_trg))\
1255 $(SDK_$(sdk)_INCS.$(bld_type))\
1256 $(SDK_$(sdk)_INCS))\
1257 $(INCS.$(bld_trg_cpu))\
1258 $(INCS.$(bld_trg).$(bld_trg_arch))\
1259 $(INCS.$(bld_trg_arch))\
1260 $(INCS.$(bld_trg))\
1261 $(INCS.$(bld_type))\
1262 $(INCS)\
1263 $(foreach sdk, $(SDKS.$(bld_trg).$(bld_trg_arch)) \
1264 $(SDKS.$(bld_trg_arch)) \
1265 $(SDKS.$(bld_trg)) \
1266 $(SDKS.$(bld_type)) \
1267 $(SDKS),\
1268 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_cpu))\
1269 $(SDK_$(sdk)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1270 $(SDK_$(sdk)_$(type)INCS.$(bld_trg_arch))\
1271 $(SDK_$(sdk)_$(type)INCS.$(bld_trg))\
1272 $(SDK_$(sdk)_$(type)INCS.$(bld_type))\
1273 $(SDK_$(sdk)_$(type)INCS)\
1274 $(SDK_$(sdk)_INCS.$(bld_trg_cpu))\
1275 $(SDK_$(sdk)_INCS.$(bld_trg).$(bld_trg_arch))\
1276 $(SDK_$(sdk)_INCS.$(bld_trg_arch))\
1277 $(SDK_$(sdk)_INCS.$(bld_trg))\
1278 $(SDK_$(sdk)_INCS.$(bld_type))\
1279 $(SDK_$(sdk)_INCS))\
1280 $(TOOL_$(tool)_$(type)INCS.$(bld_trg_cpu))\
1281 $(TOOL_$(tool)_$(type)INCS.$(bld_trg).$(bld_trg_arch))\
1282 $(TOOL_$(tool)_$(type)INCS.$(bld_trg_arch))\
1283 $(TOOL_$(tool)_$(type)INCS.$(bld_trg))\
1284 $(TOOL_$(tool)_$(type)INCS.$(bld_type))\
1285 $(TOOL_$(tool)_$(type)INCS)
1286flags :=\
1287 $(TOOL_$(tool)_$(type)FLAGS)\
1288 $(TOOL_$(tool)_$(type)FLAGS.$(bld_type))\
1289 $(TOOL_$(tool)_$(type)FLAGS.$(bld_trg))\
1290 $(TOOL_$(tool)_$(type)FLAGS.$(bld_trg_arch))\
1291 $(TOOL_$(tool)_$(type)FLAGS.$(bld_trg).$(bld_trg_arch))\
1292 $(TOOL_$(tool)_$(type)FLAGS.$(bld_trg_cpu))\
1293 $($(type)FLAGS)\
1294 $($(type)FLAGS.$(bld_type))\
1295 $($(type)FLAGS.$(bld_trg))\
1296 $($(type)FLAGS.$(bld_trg_arch))\
1297 $($(type)FLAGS.$(bld_trg).$(bld_trg_arch))\
1298 $($(type)FLAGS.$(bld_trg_cpu))\
1299 $($(target)_$(type)FLAGS)\
1300 $($(target)_$(type)FLAGS.$(bld_type))\
1301 $($(target)_$(type)FLAGS.$(bld_trg))\
1302 $($(target)_$(type)FLAGS.$(bld_trg_arch))\
1303 $($(target)_$(type)FLAGS.$(bld_trg).$(bld_trg_arch))\
1304 $($(target)_$(type)FLAGS.$(bld_trg_cpu))\
1305 $($(source)_$(type)FLAGS)\
1306 $($(source)_$(type)FLAGS.$(bld_type))\
1307 $($(source)_$(type)FLAGS.$(bld_trg))\
1308 $($(source)_$(type)FLAGS.$(bld_trg_arch))\
1309 $($(source)_$(type)FLAGS.$(bld_trg).$(bld_trg_arch))\
1310 $($(source)_$(type)FLAGS.$(bld_trg_cpu))\
1311 $($(target)_$(source)_$(type)FLAGS)\
1312 $($(target)_$(source)_$(type)FLAGS.$(bld_type))\
1313 $($(target)_$(source)_$(type)FLAGS.$(bld_trg))\
1314 $($(target)_$(source)_$(type)FLAGS.$(bld_trg_arch))\
1315 $($(target)_$(source)_$(type)FLAGS.$(bld_trg).$(bld_trg_arch))\
1316 $($(target)_$(source)_$(type)FLAGS.$(bld_trg_cpu))
1317# this isn't 100% in sync with kBuild, but it doesn't matter as it's only for gmake now.
1318objsuff := $(firstword \
1319 $($(target)_$(source)_OBJSUFF.$(bld_trg).$(bld_trg_arch))\
1320 $($(target)_$(source)_OBJSUFF.$(bld_trg))\
1321 $($(target)_$(source)_OBJSUFF)\
1322 $($(source)_OBJSUFF.$(bld_trg).$(bld_trg_arch))\
1323 $($(source)_OBJSUFF.$(bld_trg))\
1324 $($(source)_OBJSUFF)\
1325 $($(target)_OBJSUFF.$(bld_trg).$(bld_trg_arch))\
1326 $($(target)_OBJSUFF.$(bld_trg))\
1327 $($(target)_OBJSUFF)\
1328 $(TOOL_$(tool)_$(type)OBJSUFF.$(bld_trg).$(bld_trg_arch))\
1329 $(TOOL_$(tool)_$(type)OBJSUFF.$(bld_trg))\
1330 $(TOOL_$(tool)_$(type)OBJSUFF)\
1331 $(SUFF_OBJ))
1332obj := $(outbase)$(objsuff)
1333deps := \
1334 $($(target)_$(source)_DEPS)\
1335 $($(target)_$(source)_DEPS.$(bld_type))\
1336 $($(target)_$(source)_DEPS.$(bld_trg))\
1337 $($(target)_$(source)_DEPS.$(bld_trg_arch))\
1338 $($(target)_$(source)_DEPS.$(bld_trg).$(bld_trg_arch))\
1339 $($(target)_$(source)_DEPS.$(bld_trg_cpu))\
1340 $($(source)_DEPS)\
1341 $($(source)_DEPS.$(bld_type))\
1342 $($(source)_DEPS.$(bld_trg))\
1343 $($(source)_DEPS.$(bld_trg_arch))\
1344 $($(source)_DEPS.$(bld_trg).$(bld_trg_arch))\
1345 $($(source)_DEPS.$(bld_trg_cpu))\
1346 $($(target)_DEPS)\
1347 $($(target)_DEPS.$(bld_type))\
1348 $($(target)_DEPS.$(bld_trg))\
1349 $($(target)_DEPS.$(bld_trg_arch))\
1350 $($(target)_DEPS.$(bld_trg).$(bld_trg_arch))\
1351 $($(target)_DEPS.$(bld_trg_cpu))
1352
1353# dependencies
1354dep := $(obj)$(SUFF_DEP)
1355ifndef NO_COMPILE_CMDS_DEPS
1356_DEPFILES_INCLUDED += $(dep)
1357$(if $(wildcard $(dep)),$(eval include $(dep)))
1358endif
1359
1360#$ (warning dbg: target=$(target) source=$(source) tool=$(tool) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff) deps=$(deps))
1361ifndef TOOL_$(tool)_COMPILE_$(type)_CMDS
1362$(warning kBuild: tools: \
1363 1 $($(target)_$(source)_$(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
1364 2 $($(target)_$(source)_$(type)TOOL.$(bld_trg)) \
1365 3 $($(target)_$(source)_$(type)TOOL) \
1366 4 $($(target)_$(source)_TOOL.$(bld_trg).$(bld_trg_arch)) \
1367 5 $($(target)_$(source)_TOOL.$(bld_trg)) \
1368 6 $($(target)_$(source)_TOOL) \
1369 7 $($(target)_$(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
1370 8 $($(target)_$(type)TOOL.$(bld_trg)) \
1371 9 $($(target)_$(type)TOOL) \
1372 10 $($(target)_TOOL.$(bld_trg).$(bld_trg_arch)) \
1373 11 $($(target)_TOOL.$(bld_trg)) \
1374 12 $($(target)_TOOL) \
1375 13 $($(source)_$(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
1376 14 $($(source)_$(type)TOOL.$(bld_trg)) \
1377 15 $($(source)_$(type)TOOL) \
1378 16 $($(source)_TOOL.$(bld_trg).$(bld_trg_arch)) \
1379 17 $($(source)_TOOL.$(bld_trg)) \
1380 18 $($(source)_TOOL) \
1381 19 $($(type)TOOL.$(bld_trg).$(bld_trg_arch)) \
1382 20 $($(type)TOOL.$(bld_trg)) \
1383 21 $($(type)TOOL) \
1384 22 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
1385 23 $(TOOL.$(bld_trg)) \
1386 24 $(TOOL) )
1387$(error kBuild: TOOL_$(tool)_COMPILE_$(type)_CMDS is not defined. source=$(source) target=$(target) )
1388endif
1389
1390# call the tool
1391$(target)_$(source)_CMDS_ := $(TOOL_$(tool)_COMPILE_$(type)_CMDS)
1392$(target)_$(source)_OUTPUT_ := $(TOOL_$(tool)_COMPILE_$(type)_OUTPUT)
1393$(target)_$(source)_DEPEND_ := $(TOOL_$(tool)_COMPILE_$(type)_DEPEND) $(deps) $(source)
1394$(target)_$(source)_DEPORD_ := $(TOOL_$(tool)_COMPILE_$(type)_DEPORD) $(dirdep)
1395
1396# generate the compile rule.
1397$(eval $(def_target_source_rule))
1398
1399_OUT_FILES += $($(target)_$(source)_OUTPUT_)
1400$(target)_OBJS_ += $(obj)
1401
1402endef
1403
1404## Generic macro for processing C, C++ and Assembly sources.
1405# @param $(target) Normalized target name.
1406# @param $(source) Source file name.
1407# @param $(type) Source type. {C,CXX,AS}
1408# @param bld_type Build type.
1409# @param bld_trg Build target.
1410# @param bld_trg_arch Build target arch.
1411# @param bld_trg_cpu Build target cpu.
1412#
1413#$ (warning dbg: def_target_source_c_cpp_asm: source='$(source)' target='$(target)' type='$(type)')
1414def_target_source_c_cpp_asm_rc_new = $(kb-src-one x)
1415
1416ifneq ($(filter kb-src-one,$(KMK_FEATURES)),)
1417def_target_source_c_cpp_asm_rc_var = def_target_source_c_cpp_asm_rc_new
1418else
1419def_target_source_c_cpp_asm_rc_var = def_target_source_c_cpp_asm_rc_old
1420endif
1421
1422## Generic macro for processing all target sources.
1423# @param $(target) Normalized target name.
1424define def_target_sources
1425#$ (warning def_target_sources)
1426# C sources
1427type := C
1428$(foreach source, $(filter %.c , $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_cpu)) $($(target)_SOURCES.$(bld_type)))\
1429 ,$(eval $(value $(def_target_source_c_cpp_asm_rc_var))) )
1430
1431# C++ sources
1432type := CXX
1433$(foreach source, $(filter %.cpp %.cxx %.xx, $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_cpu)) $($(target)_SOURCES.$(bld_type)))\
1434 ,$(eval $(value $(def_target_source_c_cpp_asm_rc_var))) )
1435
1436# ASM sources
1437type := AS
1438$(foreach source, $(filter %.asm %.s %.S , $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_cpu)) $($(target)_SOURCES.$(bld_type)))\
1439 ,$(eval $(value $(def_target_source_c_cpp_asm_rc_var))) )
1440
1441# Resource sources
1442type := RC
1443$(foreach source, $(filter %.rc , $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_cpu)) $($(target)_SOURCES.$(bld_type)))\
1444 ,$(eval $(value $(def_target_source_c_cpp_asm_rc_var))) )
1445
1446endef
1447
1448
1449
1450## Generic macro for generating the install rule(s) for a target
1451# and update the globals with default out.
1452#
1453# @param $(target) Normalized target name.
1454# @param $(out) The output file.
1455# @param $(definst) The default _INST value.
1456# @param $(typevar) The name of the variable with all the root targets of its type.
1457# @obsolete
1458define def_target_install_pluss
1459ifndef $(target)_NOINST
1460INSTARGET_$(target) := $(patsubst %/,%/$(notdir $(out)), \
1461 $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(definst)/))
1462
1463$(eval $(def_link_install_rule))
1464
1465_INSTALLS += $(INSTARGET_$(target))
1466
1467ifdef KBUILD_DO_AUTO_INSTALL
1468$(typevar) += $(INSTARGET_$(target))
1469else
1470$(typevar) += $(out)
1471endif
1472else # _NOINST
1473$(typevar) += $(out)
1474endif
1475
1476_OUT_FILES += $($(target)_OUTPUT_)
1477_CLEAN_FILES += $($(target)_CLEAN)
1478_OBJS += $($(target)_OBJS_)
1479
1480endef
1481
1482
1483
1484#
1485# LIBRARIES
1486#
1487
1488## Library (one).
1489# @param $(target) Normalized library (target) name.
1490define def_lib
1491# library basics
1492## @todo prefix
1493bld_type := $(firstword $($(target)_BLD_TYPE) $(BUILD_TYPE))
1494bld_trg := $(firstword $($(target)_BLD_TRG) $(BUILD_TARGET))
1495bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(BUILD_TARGET_ARCH))
1496bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(BUILD_TARGET_CPU))
1497tool := $(call _TARGET_TOOL,$(target),AR)
1498ifeq ($(tool),)
1499$(error kBuild: Library target $(target) does not have a tool defined!)
1500endif
1501outbase := $(call _TARGET_BASE,$(target),$(target))
1502PATH_$(target) := $(patsubst %/,%,$(dir $(outbase)))
1503suff := $(firstword\
1504 $($(target)_LIBSUFF.$(bld_trg).$(bld_trg_arch))\
1505 $($(target)_LIBSUFF.$(bld_trg))\
1506 $($(target)_LIBSUFF)\
1507 $(TOOL_$(tool)_ARLIBSUFF.$(bld_trg).$(bld_trg_arch))\
1508 $(TOOL_$(tool)_ARLIBSUFF.$(bld_trg))\
1509 $(TOOL_$(tool)_ARLIBSUFF)\
1510 $(SUFF_LIB))
1511out := $(outbase)$(suff)
1512TARGET_$(target) := $(out)
1513$(target)_OBJS_ :=
1514
1515# source -> object
1516$(eval $(value def_target_sources))
1517
1518# library linking
1519tool := $(call _TARGET_TOOL,$(target),AR)
1520outbase := $(call _TARGET_BASE,$(target),$(target))
1521flags :=\
1522 $(TOOL_$(tool)_ARFLAGS)\
1523 $(TOOL_$(tool)_ARFLAGS.$(bld_type))\
1524 $(ARFLAGS)\
1525 $(ARFLAGS.$(bld_type))\
1526 $($(target)_ARFLAGS)\
1527 $($(target)_ARFLAGS.$(bld_type)) \
1528 $($(target)_ARFLAGS.$(bld_trg)) \
1529 $($(target)_ARFLAGS.$(bld_trg_arch)) \
1530 $($(target)_ARFLAGS.$(bld_trg).$(bld_trg_arch)) \
1531 $($(target)_ARFLAGS.$(bld_trg_cpu))
1532othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm %.o %.obj,\
1533 $($(target)_SOURCES) \
1534 $($(target)_SOURCES.$(bld_trg)) \
1535 $($(target)_SOURCES.$(bld_trg_arch)) \
1536 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) \
1537 $($(target)_SOURCES.$(bld_trg_cpu)) \
1538 $($(target)_SOURCES.$(bld_type)))
1539objs = $(filter %.o %.obj, \
1540 $($(target)_SOURCES) \
1541 $($(target)_SOURCES.$(bld_trg)) \
1542 $($(target)_SOURCES.$(bld_trg_arch)) \
1543 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) \
1544 $($(target)_SOURCES.$(bld_trg_cpu)) \
1545 $($(target)_SOURCES.$(bld_type))) \
1546 $($(target)_OBJS_)
1547dirdep := $(call DIRDEP,$(dir $(out)))
1548## @todo fix dependencies on makefiles an such
1549deps := $($(target)_DEPS)
1550
1551# dependency file
1552dep := $(out)$(SUFF_DEP)
1553ifndef NO_LINK_CMDS_DEPS
1554_DEPFILES_INCLUDED += $(dep)
1555$(if $(wildcard $(dep)),$(eval include $(dep)))
1556endif
1557
1558# check that the tool is defined.
1559ifndef TOOL_$(tool)_LINK_LIBRARY_CMDS
1560$(warning kBuild: tools: \
1561 1 $($(target)_$(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
1562 2 $($(target)_$(source)TOOL.$(bld_trg)) \
1563 3 $($(target)_$(source)TOOL) \
1564 4 $($(target)_TOOL.$(bld_trg).$(bld_trg_arch)) \
1565 5 $($(target)_TOOL.$(bld_trg)) \
1566 6 $($(target)_TOOL) \
1567 7 $($(source)TOOL) \
1568 8 $($(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
1569 9 $($(source)TOOL.$(bld_trg)) \
1570 10 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
1571 11 $(TOOL.$(bld_trg)) \
1572 12 $(TOOL) )
1573$(error kBuild: TOOL_$(tool)_LINK_LIBRARY_CMDS isn't defined! target=$(target) )
1574endif
1575
1576# call the tool
1577$(target)_CMDS_ := $(TOOL_$(tool)_LINK_LIBRARY_CMDS)
1578$(target)_OUTPUT_ := $(TOOL_$(tool)_LINK_LIBRARY_OUTPUT)
1579$(target)_DEPEND_ := $(TOOL_$(tool)_LINK_LIBRARY_DEPEND) $(deps) $(objs)
1580$(target)_DEPORD_ := $(TOOL_$(tool)_LINK_LIBRARY_DEPORD) $(dirdep)
1581
1582# generate the link rule.
1583$(eval $(def_link_rule))
1584
1585# installing and globals
1586definst := $(PATH_LIB)
1587typevar := _LIBS
1588$(eval $(value def_target_install_pluss))
1589endef
1590
1591# Process libraries
1592mode := 0644
1593$(foreach target, $(LIBRARIES) $(LIBRARIES.$(BUILD_TARGET)) $(LIBRARIES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), $(eval $(value def_lib)))
1594
1595
1596#
1597# Link operations.
1598#
1599
1600##
1601# Link prolog
1602#
1603# @param $(target) Normalized target name.
1604# @param $(EXT) EXE,DLL,SYS.
1605# @param $(definst) The default _INST value.
1606# @param $(typevar) The name of the variable with all the root targets of its type.
1607define def_link_common
1608# basics
1609bld_type := $(firstword $($(target)_BLD_TYPE) $(BUILD_TYPE))
1610bld_trg := $(firstword $($(target)_BLD_TRG) $(BUILD_$(bld_trg_base_var)))
1611bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(BUILD_$(bld_trg_base_var)_ARCH))
1612bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(BUILD_$(bld_trg_base_var)_CPU))
1613
1614tool := $(call _TARGET_TOOL,$(target),LD)
1615outbase := $(call _TARGET_BASE,$(target),$(target))
1616suff := $(firstword \
1617 $($(target)_$(EXT)SUFF) \
1618 $($(target)_$(EXT)SUFF) \
1619 $(TOOL_$(tool)_LD$(EXT)SUFF) \
1620 $($(EXTPRE)SUFF_$(EXT)))
1621out := $(outbase)$(suff)
1622PATH_$(target) := $(patsubst %/,%,$(dir $(outbase)))
1623TARGET_$(target) := $(out)
1624$(target)_OBJS_ :=
1625
1626# source -> object
1627$(eval $(value def_target_sources))
1628
1629# more library stuff.
1630tool := $(call _TARGET_TOOL,$(target),LD)
1631outbase := $(call _TARGET_BASE,$(target),$(target))
1632flags :=\
1633 $(TOOL_$(tool)_LDFLAGS)\
1634 $(TOOL_$(tool)_LDFLAGS.$(bld_type))\
1635 $(TOOL_$(tool)_LDFLAGS.$(bld_trg))\
1636 $(TOOL_$(tool)_LDFLAGS.$(bld_trg_arch))\
1637 $(TOOL_$(tool)_LDFLAGS.$(bld_trg).$(bld_trg_arch))\
1638 $(TOOL_$(tool)_LDFLAGS.$(bld_trg_cpu))\
1639 $(LDFLAGS)\
1640 $(LDFLAGS.$(bld_type))\
1641 $(LDFLAGS.$(bld_trg))\
1642 $(LDFLAGS.$(bld_trg_arch))\
1643 $(LDFLAGS.$(bld_trg).$(bld_trg_arch))\
1644 $(LDFLAGS.$(bld_trg_cpu))\
1645 $($(target)_LDFLAGS)\
1646 $($(target)_LDFLAGS.$(bld_type))\
1647 $($(target)_LDFLAGS.$(bld_trg))\
1648 $($(target)_LDFLAGS.$(bld_trg_arch))\
1649 $($(target)_LDFLAGS.$(bld_trg).$(bld_trg_arch))\
1650 $($(target)_LDFLAGS.$(bld_trg_cpu))
1651othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm %.o %.obj,\
1652 $($(target)_SOURCES)\
1653 $($(target)_SOURCES.$(bld_trg)) \
1654 $($(target)_SOURCES.$(bld_trg_arch)) \
1655 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) \
1656 $($(target)_SOURCES.$(bld_trg_cpu)) \
1657 $($(target)_SOURCES.$(bld_type)))
1658objs = $(filter %.o %.obj, \
1659 $($(target)_SOURCES) \
1660 $($(target)_SOURCES.$(bld_trg)) \
1661 $($(target)_SOURCES.$(bld_trg_arch)) \
1662 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) \
1663 $($(target)_SOURCES.$(bld_trg_cpu)) \
1664 $($(target)_SOURCES.$(bld_type))) \
1665 $($(target)_OBJS_)
1666libs :=\
1667 $($(target)_LIBS.$(bld_trg_cpu))\
1668 $($(target)_LIBS.$(bld_trg).$(bld_trg_arch))\
1669 $($(target)_LIBS.$(bld_trg_arch))\
1670 $($(target)_LIBS.$(bld_trg))\
1671 $($(target)_LIBS.$(bld_type))\
1672 $($(target)_LIBS)\
1673 $(foreach sdk, $($(target)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1674 $($(target)_SDKS.$(bld_trg_arch)) \
1675 $($(target)_SDKS.$(bld_trg)) \
1676 $($(target)_SDKS.$(bld_type)) \
1677 $($(target)_SDKS),\
1678 $(SDK_$(sdk)_LIBS.$(bld_trg_cpu))\
1679 $(SDK_$(sdk)_LIBS.$(bld_trg).$(bld_trg_arch))\
1680 $(SDK_$(sdk)_LIBS.$(bld_trg_arch))\
1681 $(SDK_$(sdk)_LIBS.$(bld_trg))\
1682 $(SDK_$(sdk)_LIBS.$(bld_type))\
1683 $(SDK_$(sdk)_LIBS))\
1684 $(LIBS.$(bld_trg_cpu))\
1685 $(LIBS.$(bld_trg).$(bld_trg_arch))\
1686 $(LIBS.$(bld_trg_arch))\
1687 $(LIBS.$(bld_trg))\
1688 $(LIBS.$(bld_type))\
1689 $(LIBS)\
1690 $(foreach sdk, $(SDKS.$(bld_trg).$(bld_trg_arch)) \
1691 $(SDKS.$(bld_trg_arch)) \
1692 $(SDKS.$(bld_trg)) \
1693 $(SDKS.$(bld_type)) \
1694 $(SDKS),\
1695 $(SDK_$(sdk)_LIBS.$(bld_trg_cpu))\
1696 $(SDK_$(sdk)_LIBS.$(bld_trg).$(bld_trg_arch))\
1697 $(SDK_$(sdk)_LIBS.$(bld_trg_arch))\
1698 $(SDK_$(sdk)_LIBS.$(bld_trg))\
1699 $(SDK_$(sdk)_LIBS.$(bld_type))\
1700 $(SDK_$(sdk)_LIBS))\
1701 $(TOOL_$(tool)_LIBS.$(bld_trg_cpu))\
1702 $(TOOL_$(tool)_LIBS.$(bld_trg).$(bld_trg_arch))\
1703 $(TOOL_$(tool)_LIBS.$(bld_trg_arch))\
1704 $(TOOL_$(tool)_LIBS.$(bld_trg))\
1705 $(TOOL_$(tool)_LIBS.$(bld_type))\
1706 $(TOOL_$(tool)_LIBS)
1707libpath :=\
1708 $($(target)_LIBPATH.$(bld_trg_cpu))\
1709 $($(target)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
1710 $($(target)_LIBPATH.$(bld_trg_arch))\
1711 $($(target)_LIBPATH.$(bld_trg))\
1712 $($(target)_LIBPATH.$(bld_type))\
1713 $($(target)_LIBPATH)\
1714 $(foreach sdk, $($(target)_SDKS.$(bld_trg).$(bld_trg_arch)) \
1715 $($(target)_SDKS.$(bld_trg_arch)) \
1716 $($(target)_SDKS.$(bld_trg)) \
1717 $($(target)_SDKS.$(bld_type)) \
1718 $($(target)_SDKS),\
1719 $(SDK_$(sdk)_LIBPATH.$(bld_trg_cpu))\
1720 $(SDK_$(sdk)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
1721 $(SDK_$(sdk)_LIBPATH.$(bld_trg_arch))\
1722 $(SDK_$(sdk)_LIBPATH.$(bld_trg))\
1723 $(SDK_$(sdk)_LIBPATH.$(bld_type))\
1724 $(SDK_$(sdk)_LIBPATH))\
1725 $(LIBPATH.$(bld_trg_cpu))\
1726 $(LIBPATH.$(bld_trg).$(bld_trg_arch))\
1727 $(LIBPATH.$(bld_trg_arch))\
1728 $(LIBPATH.$(bld_trg))\
1729 $(LIBPATH.$(bld_type))\
1730 $(LIBPATH)\
1731 $(foreach sdk, $(SDKS.$(bld_trg).$(bld_trg_arch)) \
1732 $(SDKS.$(bld_trg_arch)) \
1733 $(SDKS.$(bld_trg)) \
1734 $(SDKS.$(bld_type)) \
1735 $(SDKS),\
1736 $(SDK_$(sdk)_LIBPATH.$(bld_trg_cpu))\
1737 $(SDK_$(sdk)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
1738 $(SDK_$(sdk)_LIBPATH.$(bld_trg_arch))\
1739 $(SDK_$(sdk)_LIBPATH.$(bld_trg))\
1740 $(SDK_$(sdk)_LIBPATH.$(bld_type))\
1741 $(SDK_$(sdk)_LIBPATH))\
1742 $(TOOL_$(tool)_LIBPATH.$(bld_trg_cpu))\
1743 $(TOOL_$(tool)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
1744 $(TOOL_$(tool)_LIBPATH.$(bld_trg_arch))\
1745 $(TOOL_$(tool)_LIBPATH.$(bld_trg))\
1746 $(TOOL_$(tool)_LIBPATH.$(bld_type))\
1747 $(TOOL_$(tool)_LIBPATH)
1748dirdep := $(call DIRDEP,$(dir $(out)))
1749## @todo fix dependencies
1750deps := $($(target)_DEPS)
1751
1752## @todo this stuff can't be working.
1753custom_pre := $(strip $(firstword \
1754 $($(target)_CUSTOM_PRE.$(bld_trg).$(bld_trg_arch))\
1755 $($(target)_CUSTOM_PRE.$(bld_trg).$(bld_type))\
1756 $($(target)_CUSTOM_PRE.$(bld_trg))\
1757 $($(target)_CUSTOM_PRE.$(bld_type))\
1758 $($(target)_CUSTOM_PRE)\
1759 $(CUSTOM_PRE.$(bld_trg).$(bld_trg_arch))\
1760 $(CUSTOM_PRE.$(bld_trg).$(bld_type))\
1761 $(CUSTOM_PRE.$(bld_trg))\
1762 $(CUSTOM_PRE.$(bld_type))\
1763 $(CUSTOM_PRE)\
1764))
1765custom_post := $(strip $(firstword \
1766 $($(target)_CUSTOM_POST.$(bld_trg).$(bld_trg_arch))\
1767 $($(target)_CUSTOM_POST.$(bld_trg).$(bld_type))\
1768 $($(target)_CUSTOM_POST.$(bld_trg))\
1769 $($(target)_CUSTOM_POST.$(bld_type))\
1770 $($(target)_CUSTOM_POST)\
1771 $(CUSTOM_POST.$(bld_trg).$(bld_trg_arch))\
1772 $(CUSTOM_POST.$(bld_trg).$(bld_type))\
1773 $(CUSTOM_POST.$(bld_trg))\
1774 $(CUSTOM_POST.$(bld_type))\
1775 $(CUSTOM_POST)\
1776))
1777
1778# installation targets
1779ifndef $(target)_NOINST
1780INSTARGET_$(target) := $(patsubst %/,%/$(notdir $(out)), \
1781 $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(definst)/))
1782ifdef KBUILD_DO_AUTO_INSTALL
1783$(typevar) += $(INSTARGET_$(target))
1784else
1785$(typevar) += $(out)
1786endif
1787# generate the install rule
1788$(eval $(def_link_install_rule))
1789
1790else # NOINST
1791INSTARGET_$(target) :=
1792$(typevar) += $(out)
1793endif # NOINST
1794
1795# dependency file
1796dep := $(outbase)$(SUFF_DEP)
1797ifndef NO_LINK_CMDS_DEPS
1798_DEPFILES_INCLUDED += $(dep)
1799$(if $(wildcard $(dep)),$(eval include $(dep)))
1800endif
1801
1802# check that the tool is defined.
1803ifndef TOOL_$(tool)_$(tool_do)_CMDS
1804$(warning kBuild: tools: \
1805 1 $($(target)_$(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
1806 2 $($(target)_$(source)TOOL.$(bld_trg)) \
1807 3 $($(target)_$(source)TOOL) \
1808 4 $($(target)_TOOL.$(bld_trg).$(bld_trg_arch)) \
1809 5 $($(target)_TOOL.$(bld_trg)) \
1810 6 $($(target)_TOOL) \
1811 7 $($(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
1812 8 $($(source)TOOL.$(bld_trg)) \
1813 9 $($(source)TOOL) \
1814 10 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
1815 11 $(TOOL.$(bld_trg)) \
1816 12 $(TOOL) )
1817$(error kBuild: TOOL_$(tool)_$(tool_do)_CMDS isn't defined! target=$(target) )
1818endif
1819
1820# call the tool
1821$(target)_CMDS_ := $(TOOL_$(tool)_$(tool_do)_CMDS)
1822$(target)_OUTPUT_ := $(TOOL_$(tool)_$(tool_do)_OUTPUT)
1823$(target)_DEPEND_ := $(TOOL_$(tool)_$(tool_do)_DEPEND) $(deps) $(objs)
1824$(target)_DEPORD_ := $(TOOL_$(tool)_$(tool_do)_DEPORD) $(dirdep)
1825
1826# generate the link rule.
1827$(eval $(def_link_rule))
1828
1829
1830# Update globals.
1831_OBJS += $($(target)_OBJS_)
1832_OUT_FILES += $($(target)_OUTPUT_) $(out)
1833_CLEAN_FILES += $($(target)_CLEAN)
1834_INSTALLS += $(INSTARGET_$(target))
1835
1836endef
1837
1838
1839#
1840# BLDPROGS
1841#
1842
1843## Build program (one).
1844# @param $(target) Normalized target (program) name.
1845define def_bldprog
1846
1847# set NOINST if not forced installation.
1848ifndef $(target)_INST
1849$(target)_NOINST := 1
1850endif
1851
1852# do the usual stuff.
1853$(eval $(value def_link_common))
1854
1855endef
1856
1857# Process build programs.
1858EXT := EXE
1859EXTPRE := HOST
1860tool_do := LINK_PROGRAM
1861definst := $(PATH_BIN)
1862typevar := _BLDPROGS
1863mode := 0755
1864bld_trg_base_var := PLATFORM
1865$(foreach target, $(BLDPROGS) $(BLDPROGS.$(BUILD_PLATFORM)) $(BLDPROGS.$(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH)), $(eval $(value def_bldprog)))
1866
1867
1868
1869#
1870# DLLS
1871#
1872
1873# Process dlls
1874EXT := DLL
1875EXTPRE :=
1876tool_do := LINK_DLL
1877definst := $(PATH_DLL)
1878typevar := _DLLS
1879mode := 0755
1880bld_trg_base_var := TARGET
1881$(foreach target, $(DLLS) $(DLLS.$(BUILD_TARGET)) $(DLLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), $(eval $(value def_link_common)))
1882
1883
1884#
1885# Process import libraries.
1886#
1887# - On OS/2 and windows these are libraries.
1888# - On other platforms they are fake DLLs.
1889ifeq ($(filter-out nt os2 win win64 win32,$(BUILD_TARGET)),)
1890$(foreach target, $(IMPORT_LIBS) $(IMPORT_LIBS.$(BUILD_TARGET)) $(IMPORT_LIBS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), $(eval $(value def_lib)))
1891else
1892$(foreach target, $(IMPORT_LIBS) $(IMPORT_LIBS.$(BUILD_TARGET)) $(IMPORT_LIBS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), $(eval $(value def_link_common)))
1893endif
1894$(foreach target, $(IMPORT_LIBS) $(IMPORT_LIBS.$(BUILD_TARGET)) $(IMPORT_LIBS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), \
1895 $(eval _IMPORT_LIBS += $(if $(INSTARGET_$(target)),$(INSTARGET_$(target)), $(TARGET_$(target)))))
1896
1897
1898#
1899# PROGRAMS
1900#
1901
1902# Process programs
1903EXT := EXE
1904EXTPRE :=
1905tool_do := LINK_PROGRAM
1906definst := $(PATH_BIN)
1907typevar := _PROGRAMS
1908mode := 0755
1909bld_trg_base_var := TARGET
1910$(foreach target, $(PROGRAMS) $(PROGRAMS.$(BUILD_TARGET)) $(PROGRAMS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), $(eval $(value def_link_common)))
1911
1912
1913
1914#
1915# SYSMODS
1916#
1917
1918# Process sysmods
1919EXT := SYS
1920EXTPRE :=
1921tool_do := LINK_SYSMOD
1922definst := $(PATH_SYS)
1923typevar := _SYSMODS
1924mode := 0644
1925bld_trg_base_var := TARGET
1926$(foreach target, $(SYSMODS) $(SYSMODS.$(BUILD_TARGET)) $(SYSMODS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), $(eval $(value def_link_common)))
1927
1928
1929#
1930# OTHERS
1931#
1932_OTHERS = $(OTHERS) $(OTHERS.$(BUILD_TARGET)) $(OTHERS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
1933
1934
1935#
1936# INSTALLS
1937#
1938
1939## generate the install rule
1940define def_install_src_rule
1941# the install rule
1942$(insdst) : $(srcsrc) | $(call DIRDEP,$(dir $(insdst)))
1943 $$(if $$(filter $(INSTALL),$(inscmd)),,$$(RM) -f $$@)
1944 $(inscmd)
1945endef
1946
1947## install one file
1948define def_install_src
1949
1950# deal with '=>' in the source file name.
1951srcdst := $(subst =>, ,$(src))
1952srcsrc := $(firstword $(srcdst))
1953srcdstdir := $(dir $(word 2,$(srcdst)))
1954srcdst := $(word $(words $(srcdst)),$(srcdst))
1955
1956# _INSTFUN
1957ifdef $(srcsrc)_INSTFUN
1958instfun := $(srcsrc)_INSTFUN
1959else
1960ifdef $(target)_INSTFUN
1961instfun := $(target)_INSTFUN
1962else
1963instfun := _INSTALL_FILE
1964endif
1965endif
1966
1967# _INST
1968ifdef $(srcsrc)_INST
1969inst := $(patsubst %/,%,$($(srcsrc)_INST))/$(dir $(srcdstdir))
1970else
1971ifdef $(target)_INST
1972inst := $(patsubst %/,%,$($(target)_INST))/$(dir $(srcdstdir))
1973else
1974inst := $(dir $(srcdstdir))
1975endif
1976endif
1977
1978# calc target
1979insdst := $(call $(instfun),$(srcdst),$(target),$(inst),$(PATH_INS))
1980#$(warning instfun=$(instfun) srcdst=$(srcdst) target=$(target) inst=$(inst) => insdst=$(insdst))
1981
1982# mode, uid and gid
1983mode := $(firstword \
1984 $($(target)_$(srcsrc)_MODE.$(bld_trg).$(bld_trg_arch)) \
1985 $($(target)_$(srcsrc)_MODE.$(bld_trg)) \
1986 $($(target)_$(srcsrc)_MODE) \
1987 $($(target)_$(srcdst)_MODE.$(bld_trg).$(bld_trg_arch)) \
1988 $($(target)_$(srcdst)_MODE.$(bld_trg)) \
1989 $($(target)_$(srcdst)_MODE) \
1990 $($(srcsrc)_MODE.$(bld_trg).$(bld_trg_arch)) \
1991 $($(srcsrc)_MODE.$(bld_trg)) \
1992 $($(srcsrc)_MODE) \
1993 $($(srcdst)_MODE.$(bld_trg).$(bld_trg_arch)) \
1994 $($(srcdst)_MODE.$(bld_trg)) \
1995 $($(srcdst)_MODE) \
1996 $($(target)_MODE.$(bld_trg).$(bld_trg_arch)) \
1997 $($(target)_MODE.$(bld_trg)) \
1998 $($(target)_MODE))
1999uid := $(firstword \
2000 $($(target)_$(srcsrc)_UID.$(bld_trg).$(bld_trg_arch)) \
2001 $($(target)_$(srcsrc)_UID.$(bld_trg)) \
2002 $($(target)_$(srcsrc)_UID) \
2003 $($(target)_$(srcdst)_UID.$(bld_trg).$(bld_trg_arch)) \
2004 $($(target)_$(srcdst)_UID.$(bld_trg)) \
2005 $($(target)_$(srcdst)_UID) \
2006 $($(srcsrc)_UID.$(bld_trg).$(bld_trg_arch)) \
2007 $($(srcsrc)_UID.$(bld_trg)) \
2008 $($(srcsrc)_UID) \
2009 $($(srcdst)_UID.$(bld_trg).$(bld_trg_arch)) \
2010 $($(srcdst)_UID.$(bld_trg)) \
2011 $($(srcdst)_UID) \
2012 $($(target)_UID.$(bld_trg).$(bld_trg_arch)) \
2013 $($(target)_UID.$(bld_trg)) \
2014 $($(target)_UID))
2015gid := $(firstword \
2016 $($(target)_$(srcsrc)_GID.$(bld_trg).$(bld_trg_arch)) \
2017 $($(target)_$(srcsrc)_GID.$(bld_trg)) \
2018 $($(target)_$(srcsrc)_GID) \
2019 $($(target)_$(srcdst)_GID.$(bld_trg).$(bld_trg_arch)) \
2020 $($(target)_$(srcdst)_GID.$(bld_trg)) \
2021 $($(target)_$(srcdst)_GID) \
2022 $($(srcsrc)_GID.$(bld_trg).$(bld_trg_arch)) \
2023 $($(srcsrc)_GID.$(bld_trg)) \
2024 $($(srcsrc)_GID) \
2025 $($(srcdst)_GID.$(bld_trg).$(bld_trg_arch)) \
2026 $($(srcdst)_GID.$(bld_trg)) \
2027 $($(srcdst)_GID) \
2028 $($(target)_GID.$(bld_trg).$(bld_trg_arch)) \
2029 $($(target)_GID.$(bld_trg)) \
2030 $($(target)_GID))
2031
2032# create the command
2033ifdef $(srcsrc)_INSTALLER
2034inscmd := $(call $(srcsrc)_INSTALLER,$(srcsrc),$(insdst),$(target))
2035else
2036ifdef $(target)_INSTALLER
2037inscmd := $(call $(target)_INSTALLER,$(srcsrc),$(insdst),$(target))
2038else
2039inscmd := $$(INSTALL)\
2040 $(if $(uid),-o $(uid))\
2041 $(if $(gid),-g $(gid))\
2042 $(if $(mode),-m $(mode))\
2043 $(srcsrc) $(insdst)
2044endif
2045endif
2046
2047# generate the rule (need double evaluation here)
2048$(eval $(def_install_src_rule))
2049
2050INSTARGET_$(target) += $(insdst)
2051endef
2052
2053
2054## generate the symlink rule
2055define def_install_symlink_rule
2056# the install rule
2057$(insdst) : | $(call DIRDEP,$(dir $(insdst)))
2058 $$(RM) -f $$@
2059 $$(LN_SYMLINK) $(symdst) $(insdst)
2060endef
2061
2062## create one symlink
2063define def_install_symlink
2064
2065# deal with '=>' in the source file name.
2066symdst := $(subst =>, ,$(src))
2067symlnk := $(firstword $(symdst))
2068symdst := $(word $(words $(symdst)),$(symdst))
2069
2070# _INSTFUN
2071ifdef $(symlnk)_INSTFUN
2072instfun := $(symlnk)_INSTFUN
2073else
2074ifdef $(target)_INSTFUN
2075instfun := $(target)_INSTFUN
2076else
2077instfun := _INSTALL_FILE
2078endif
2079endif
2080
2081# _INST
2082ifdef $(symlnk)_INST
2083inst := $(patsubst %/,%,$($(symlnk)_INST))/$(dir $(symlnk))
2084else
2085ifdef $(target)_INST
2086inst := $(patsubst %/,%,$($(target)_INST))/$(dir $(symlnk))
2087else
2088inst := $(dir $(symlnk))
2089endif
2090endif
2091
2092# calc target
2093insdst := $(call $(instfun),$(symlnk),$(target),$(inst),$(PATH_INS))
2094#$(warning symlnk=$(symlnk) symdst=$(symdst) insdst=$(insdst) instfun=$(instfun) inst='$(inst)')
2095
2096# generate the rule (need double evaluation here)
2097$(eval $(def_install_symlink_rule))
2098
2099INSTARGET_$(target) += $(insdst)
2100endef
2101
2102
2103## generate the install rule
2104define def_install_directory_rule
2105# the install rule
2106$(insdst):
2107 $(INSTALL) -d \
2108 $(if $(uid),-o $(uid))\
2109 $(if $(gid),-g $(gid))\
2110 $(if $(mode),-m $(mode))\
2111 $(insdst)
2112
2113.NOTPARALLEL: $(insdst)
2114endef
2115
2116
2117## create one directory
2118define def_install_directory
2119
2120# _INST
2121ifdef $(directory)_INST
2122inst := $(PATH_INS)/$(patsubst %/,%,$($(directory)_INST))
2123else
2124ifdef $(target)_INST
2125inst := $(PATH_INS)/$(patsubst %/,%,$($(target)_INST))
2126else
2127inst := $(PATH_INS)
2128endif
2129endif
2130
2131mode := $(firstword \
2132 $($(target)_$(directory)_MODE.$(bld_trg).$(bld_trg_arch)) \
2133 $($(target)_$(directory)_MODE.$(bld_trg)) \
2134 $($(target)_$(directory)_MODE) \
2135 $($(directory)_MODE.$(bld_trg).$(bld_trg_arch)) \
2136 $($(directory)_MODE.$(bld_trg)) \
2137 $($(directory)_MODE) \
2138 $($(target)_MODE.$(bld_trg).$(bld_trg_arch)) \
2139 $($(target)_MODE.$(bld_trg)) \
2140 $($(target)_MODE))
2141uid := $(firstword \
2142 $($(target)_$(directory)_UID.$(bld_trg).$(bld_trg_arch)) \
2143 $($(target)_$(directory)_UID.$(bld_trg)) \
2144 $($(target)_$(directory)_UID) \
2145 $($(directory)_UID.$(bld_trg).$(bld_trg_arch)) \
2146 $($(directory)_UID.$(bld_trg)) \
2147 $($(directory)_UID) \
2148 $($(target)_UID.$(bld_trg).$(bld_trg_arch)) \
2149 $($(target)_UID.$(bld_trg)) \
2150 $($(target)_UID))
2151gid := $(firstword \
2152 $($(target)_$(directory)_GID.$(bld_trg).$(bld_trg_arch)) \
2153 $($(target)_$(directory)_GID.$(bld_trg)) \
2154 $($(target)_$(directory)_GID) \
2155 $($(directory)_GID.$(bld_trg).$(bld_trg_arch)) \
2156 $($(directory)_GID.$(bld_trg)) \
2157 $($(directory)_GID) \
2158 $($(target)_GID.$(bld_trg).$(bld_trg_arch)) \
2159 $($(target)_GID.$(bld_trg)) \
2160 $($(target)_GID))
2161
2162insdst := $(inst)/$(directory)/
2163#$(warning directory=$(directory) inst=$(inst) insdst=$(insdst) mode=$(mode) gid=$(gid) uid=$(uid))
2164
2165# generate the rule (need double evaluation here)
2166$(eval $(def_install_directory_rule))
2167
2168INSTARGET_DIRS_$(target) += $(insdst)
2169endef
2170
2171
2172## process one install target.
2173define def_install
2174bld_type := $(firstword $($(target)_BLD_TYPE) $(BUILD_TYPE))
2175bld_trg := $(firstword $($(target)_BLD_TRG) $(BUILD_TARGET))
2176bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(BUILD_TARGET_ARCH))
2177bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(BUILD_TARGET_CPU))
2178
2179INSTARGET_$(target) :=
2180INSTARGET_DIRS_$(target) :=
2181
2182$(foreach directory,$($(target)_DIRS) $($(target)_DIRS.$(bld_trg)) $($(target)_DIRS.$(bld_trg).$(bld_trg_arch)) $($(target)_DIRS.$(bld_trg_arch)) $($(target)_DIRS.$(bld_trg_cpu)) $($(target)_DIRS.$(bld_type)), \
2183 $(eval $(value def_install_directory)))
2184
2185$(foreach src,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg_cpu)) $($(target)_SOURCES.$(bld_type)), \
2186 $(eval $(value def_install_src)))
2187
2188$(foreach src,$($(target)_SYMLINKS) $($(target)_SYMLINKS.$(bld_trg)) $($(target)_SYMLINKS.$(bld_trg).$(bld_trg_arch)) $($(target)_SYMLINKS.$(bld_trg_arch)) $($(target)_SYMLINKS.$(bld_trg_cpu)) $($(target)_SYMLINKS.$(bld_type)), \
2189 $(eval $(value def_install_symlink)))
2190
2191_INSTALLS += $(INSTARGET_$(target)) $($(target)_GOALS)
2192_INSTALLS_DIRS += $(INSTARGET_DIRS_$(target))
2193endef
2194
2195## process all install targets
2196$(foreach target, $(INSTALLS) $(INSTALLS.$(BUILD_TARGET)) $(INSTALLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)), \
2197 $(eval $(value def_install)))
2198
2199
2200#
2201# PACKING
2202#
2203_PACKING += $(PACKING) $(PACKING.$(BUILD_TARGET)) $(PACKING.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
2204
2205
2206#
2207# DOCS
2208#
2209
2210
2211#
2212# DIRECTORIES
2213#
2214_DIR_ALL := $(sort $(addsuffix /,$(patsubst %/,%,$(_DIRS))) $(dir $(_OUT_FILES) $(_OBJS) $(_INSTALLS)))
2215$(foreach directory,$(_INSTALLS_DIRS), $(eval _DIR_ALL := $(filter-out $(directory),$(_DIR_ALL))))
2216
2217
2218define def_mkdir_rule
2219$(directory):
2220 $(call MSG_L1,Creating directory $$@)
2221 $(MKDIR) -p $$@
2222endef
2223
2224$(foreach directory,$(_DIR_ALL),$(eval $(def_mkdir_rule)))
2225
2226
2227#
2228# NOTHING
2229#
2230do-nothing:
2231 $(call MSG_L1,Did nothing in $(CURDIR))
2232
2233
2234#
2235# CLEAN UP
2236#
2237do-clean:
2238 $(RM) -f $(_OUT_FILES) $(_OBJS) $(_DEPFILES) $(_DEPFILES_INCLUDED) $(_CLEAN_FILES) $(OTHER_CLEAN)
2239
2240
2241#
2242# PASSES (including directory and makefile walking)
2243#
2244
2245## Subdir
2246# @param $(pass) Lowercase pass name.
2247# @param $(PASS) Uppercase pass name.
2248# @param $(subdir) Subdirectory
2249# @param $(tag) tag to attach to the rule name.
2250define def_pass_subdir
2251pass_$(pass)$(tag):: $(dep)
2252 + $(QUIET)$$(MAKE) -C $(subdir) -f $$(notdir $$(firstword $$(wildcard $$(addprefix $(subdir)/,$$(DEFAULT_MAKEFILE))))) pass_$(pass)
2253endef
2254
2255## Submakefile
2256# @param $(pass) Lowercase pass name.
2257# @param $(PASS) Uppercase pass name.
2258# @param $(makefile) Makefile.
2259# @param $(tag) tag to attach to the rule name.
2260define def_pass_makefile
2261pass_$(pass)$(tag):: $(dep)
2262 + $(QUIET)$$(MAKE) -C $(patsubst %/,%,$(dir $(makefile))) -f $(notdir $(makefile)) pass_$(pass)
2263endef
2264
2265## Execute a pass.
2266# @param $(pass) Lowercase pass name.
2267# @param $(PASS) Uppercase pass name.
2268define def_pass_old
2269$(eval SUBDIRS_$(PASS) ?= $(SUBDIRS) $(SUBDIRS.$(BUILD_TARGET)) $(SUBDIRS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) )
2270$(eval SUBDIRS_AFTER_$(PASS) ?= $(SUBDIRS_AFTER) $(SUBDIRS_AFTER.$(BUILD_TARGET)) $(SUBDIRS_AFTER.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) )
2271$(eval MAKEFILES_BEFORE_$(PASS) ?= $(MAKEFILES_BEFORE) $(MAKEFILES_BEFORE.$(BUILD_TARGET)) $(MAKEFILES_BEFORE.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) )
2272$(eval MAKEFILES_AFTER_$(PASS) ?= $(MAKEFILES_AFTER) $(MAKEFILES_AFTER.$(BUILD_TARGET)) $(MAKEFILES_AFTER.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) )
2273
2274$(eval tag:=_before)
2275$(eval dep:=)
2276$(foreach subdir,$(SUBDIRS_$(PASS)) $(SUBDIRS_$(PASS).$(BUILD_TARGET)) $(SUBDIRS_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
2277$(foreach makefile,$(MAKEFILES_BEFORE_$(PASS)) $(MAKEFILES_BEFORE_$(PASS).$(BUILD_TARGET)) $(MAKEFILES_BEFORE_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)),$(eval $(def_pass_makefile)))
2278
2279$(eval tag:=_after)
2280$(eval dep:=pass_$(pass)_doit)
2281$(foreach subdir,$(SUBDIRS_AFTER_$(PASS)) $(SUBDIRS_AFTER_$(PASS).$(BUILD_TARGET)) $(SUBDIRS_AFTER_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
2282$(foreach makefile,$(MAKEFILES_AFTER_$(PASS)) $(MAKEFILES_AFTER_$(PASS).$(BUILD_TARGET)) $(MAKEFILES_AFTER_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) ,$(eval $(def_pass_makefile)))
2283
2284.NOTPARALLEL: pass_$(pass)_before pass_$(pass)_after
2285.PHONY: pass_$(pass) pass_$(pass)_before pass_$(pass)_doit pass_$(pass)_after
2286pass_$(pass)_doit: $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$(var))
2287pass_$(pass)_this: pass_$(pass)_before
2288 + $(QUIET)$$(MAKE) -f $$(MAKEFILE) pass_$(pass)_doit
2289pass_$(pass)_after:: pass_$(pass)_this
2290pass_$(pass): pass_$(pass)_after
2291
2292endef
2293
2294define def_pass
2295$(eval SUBDIRS_$(PASS) ?= $(SUBDIRS) $(SUBDIRS.$(BUILD_TARGET)) $(SUBDIRS.$(BUILD_TARGET.$(BUILD_TARGET_ARCH))) )
2296$(eval SUBDIRS_AFTER_$(PASS) ?= $(SUBDIRS_AFTER) $(SUBDIRS_AFTER.$(BUILD_TARGET)) $(SUBDIRS_AFTER.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) )
2297$(eval MAKEFILES_BEFORE_$(PASS) ?= $(MAKEFILES_BEFORE) $(MAKEFILES_BEFORE.$(BUILD_TARGET)) $(MAKEFILES_BEFORE.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) )
2298$(eval MAKEFILES_AFTER_$(PASS) ?= $(MAKEFILES_AFTER) $(MAKEFILES_AFTER.$(BUILD_TARGET)) $(MAKEFILES_AFTER.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) )
2299
2300$(eval tag:=_before)
2301$(eval dep:=)
2302$(foreach subdir,$(SUBDIRS_$(PASS)) $(SUBDIRS_$(PASS).$(BUILD_TARGET)) $(SUBDIRS_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
2303$(foreach makefile,$(MAKEFILES_BEFORE_$(PASS)) $(MAKEFILES_BEFORE_$(PASS).$(BUILD_TARGET)) $(MAKEFILES_BEFORE_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)),$(eval $(def_pass_makefile)))
2304
2305$(eval tag:=_after)
2306$(eval dep:=pass_$(pass)_doit)
2307$(foreach subdir,$(SUBDIRS_AFTER_$(PASS)) $(SUBDIRS_AFTER_$(PASS).$(BUILD_TARGET)) $(SUBDIRS_AFTER_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
2308$(foreach makefile,$(MAKEFILES_AFTER_$(PASS)) $(MAKEFILES_AFTER_$(PASS).$(BUILD_TARGET)) $(MAKEFILES_AFTER_$(PASS).$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) ,$(eval $(def_pass_makefile)))
2309
2310ifdef KBUILD_SAFE_PARALLEL
2311.NOTPARALLEL: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_this
2312.PHONY: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_this pass_$(pass)_doit
2313pass_$(pass)_doit: $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$(var))
2314pass_$(pass)_this: pass_$(pass)_before
2315 + $(QUIET)$$(MAKE) -f $$(MAKEFILE) pass_$(pass)_doit
2316pass_$(pass)_after:: pass_$(pass)_this
2317pass_$(pass): pass_$(pass)_after
2318else
2319.NOTPARALLEL: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_doit
2320.PHONY: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_doit
2321pass_$(pass)_doit: pass_$(pass)_before \
2322 $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$($(var)))
2323pass_$(pass): \
2324 pass_$(pass)_before \
2325 pass_$(pass)_doit \
2326 pass_$(pass)_after
2327endif
2328
2329#$ (warning pass=$(pass) PASS=$(PASS): $(PASS_$(PASS)_trgs) $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$($(var))))
2330endef
2331
2332# Generate the defined passes.
2333$(foreach PASS, $(PASSES), \
2334 $(eval pass := $(PASS_$(PASS)_pass)) \
2335 $(eval $(def_pass)))
2336
2337## Pass order
2338# @param $(pass) Current pass name.
2339# @param $(prev_pass) The previous pass name.
2340define def_pass_order
2341ifdef KBUILD_SAFE_PARALLEL
2342.NOTPARALLEL: pass_$(pass)_order
2343.PHONY: pass_$(pass)_order
2344pass_$(pass)_order: $(pass_prev)
2345 $(call MSG_L1,Pass - $(if $(PASS_$(PASS)),$(PASS_$(PASS)),$(pass)))
2346 + $(QUIET)$$(MAKE) -f $$(MAKEFILE) pass_$(pass)
2347else
2348.NOTPARALLEL: pass_$(pass)_order pass_$(pass)_banner
2349.PHONY: pass_$(pass)_order pass_$(pass)_banner
2350pass_$(pass)_banner:
2351 $(call MSG_L1,Pass - $(if $(PASS_$(PASS)),$(PASS_$(PASS)),$(pass)))
2352pass_$(pass)_order: \
2353 $(pass_prev) \
2354 pass_$(pass)_banner \
2355 pass_$(pass)
2356endif
2357$(eval pass_prev := pass_$(pass)_order)
2358endef
2359
2360## PASS: order
2361# Use dependencies to ensure correct pass order.
2362pass_prev :=
2363$(foreach PASS,$(DEFAULT_PASSES),\
2364 $(eval pass := $(PASS_$(PASS)_pass)) \
2365 $(eval $(def_pass_order)))
2366
2367
2368#
2369# THE MAIN RULES
2370#
2371all_recursive: $(pass_prev)
2372
2373rebuild: clean
2374 + $(MAKE) -f $(firstword $(MAKEFILE_LIST)) all_recursive
2375
2376# @todo make this a non-default pass!
2377uninstall:
2378 $(RM) -f $(_INSTALLS)
2379
2380install: pass_installs
2381
2382# misc shortcuts.
2383targets: bldprogs libraries dlls programs sysmods others installs
2384objects: $(_OBJS)
2385bldprogs: $(_BLDPROGS)
2386libraries: $(_LIBS) $(_IMPORT_LIBS) $(_OTHER_LIBRARIES)
2387dlls: $(_DLLS)
2388programs: $(_PROGRAMS)
2389sysmods: $(_SYSMODS)
2390others: $(_OTHERS)
2391installs: $(_INSTALLS_DIRS) $(_INSTALLS)
2392
2393
2394#
2395# kBuild debugging stuff.
2396#
2397_SPACE := $(subst ., ,.)
2398_TAB := $(subst ., ,.)
2399define _NEWLINE
2400
2401
2402endef
2403NLTAB = $(_NEWLINE)$(TAB)
2404show_targets:
2405 @$(foreach target, $(ALL_TARGETS),\
2406 @$(ECHO) "target: $(target)" $(NLTAB)\
2407 @$(ECHO) " PATH_$(target)=$(PATH_$(target))" $(NLTAB)\
2408 @$(ECHO) " TARGET_$(target)=$(TARGET_$(target))" $(NLTAB)\
2409 @$(ECHO) " INSTARGET_$(target)=$(INSTARGET_$(target))" $(NLTAB)\
2410$(foreach prop,$(PROPS_SINGLE) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R) OBJS_ CLEAN, \
2411 $(eval _tmp:=$(firstword $($(target)_BLD_TRG) $(BUILD_TARGET))) \
2412 $(if $($(target)_$(prop).$(_tmp)),\
2413 @$(ECHO) " $(target)_$(prop).$(_tmp)=$($(target)_$(prop).$(_tmp))" $(NLTAB)) \
2414 $(if $($(target)_$(prop)), $(NLTAB)@$(ECHO) " $(target)_$(prop)=$($(target)_$(prop))" $(NLTAB)) \
2415)\
2416$(foreach prop,$(PROPS_DEFERRED), \
2417 $(eval _tmp:=$(firstword $($(target)_BLD_TRG) $(BUILD_TARGET))) \
2418 $(if $(value $(target)_$(prop).$(_tmp)),\
2419 @$(ECHO) ' $(target)_$(prop).$(_tmp)=$(value $(TARGET)_$(prop).$(_tmp))' $(NLTAB)) \
2420 $(if $(value $(target)_$(prop)), $(NLTAB)@$(ECHO) ' $(target)_$(prop)=$(value $(target)_$(prop))' $(NLTAB)) \
2421))
2422
2423
2424
2425#
2426# Include dependency files.
2427#
2428$(foreach dep,$(wildcard $(_DEPFILES)),$(eval include $(dep)))
2429
2430
2431# end-of-file-content
2432__footer_kmk__ := target
2433endif # __footer_kmk__
2434
Note: See TracBrowser for help on using the repository browser.