source: trunk/kBuild/footer.kmk@ 1027

Last change on this file since 1027 was 1025, checked in by bird, 18 years ago

+| works now, so use it.

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