source: trunk/kBuild/footer.kmk@ 715

Last change on this file since 715 was 701, checked in by bird, 19 years ago

Quiet clean. Remove directory if nothing is to be unpacked.

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