source: trunk/kBuild/footer.kmk@ 2519

Last change on this file since 2519 was 2519, checked in by bird, 14 years ago

footer.kmk: Another regression fix.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 131.9 KB
RevLine 
[72]1# $Id: footer.kmk 2519 2011-07-26 12:13:55Z bird $
2## @file
3# kBuild - File included at top of makefile.
4#
[1547]5
6#
[2413]7# Copyright (c) 2004-2010 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
[72]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#
[1547]26# As a special exception you are granted permission to include this file, via
[1599]27# the kmk include directive, as you wish without this in itself causing the
28# resulting makefile, program or whatever to be covered by the GPL license.
[1547]29# This exception does not however invalidate any other reasons why the makefile,
30# program, whatever should not be covered the GPL.
31#
32#
[72]33
34ifndef __footer_kmk__
35# start-of-file-content
[988]36ifdef KBUILD_PROFILE_SELF
[2008]37 $(evalcall def_profile_self, start of footer.kmk)
38 _KBUILD_TS_FOOTER_START := $(_KBUILD_TS_PREV)
[988]39endif
[72]40
41#
42# Variables.
[73]43# (Some of these need initialization before including definitions using them.)
[72]44#
45
[985]46# All targets of each types.
[1504]47_ALL_BLDPROGS := $(BLDPROGS) $(BLDPROGS.$(KBUILD_HOST)) $(BLDPROGS.$(KBUILD_HOST).$(KBUILD_HOST_ARCH)) $(BLDPROGS.$(KBUILD_HOST_ARCH)) $(BLDPROGS.$(KBUILD_HOST_CPU)) $(BLDPROGS.$(KBUILD_TYPE))
48_ALL_LIBRARIES := $(LIBRARIES) $(LIBRARIES.$(KBUILD_TARGET)) $(LIBRARIES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(LIBRARIES.$(KBUILD_TARGET_ARCH)) $(LIBRARIES.$(KBUILD_TARGET_CPU)) $(LIBRARIES.$(KBUILD_TYPE))
49_ALL_IMPORT_LIBS := $(IMPORT_LIBS) $(IMPORT_LIBS.$(KBUILD_TARGET)) $(IMPORT_LIBS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(IMPORT_LIBS.$(KBUILD_TARGET_ARCH)) $(IMPORT_LIBS.$(KBUILD_TARGET_CPU)) $(IMPORT_LIBS.$(KBUILD_TYPE))
50_ALL_DLLS := $(DLLS) $(DLLS.$(KBUILD_TARGET)) $(DLLS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(DLLS.$(KBUILD_TARGET_ARCH)) $(DLLS.$(KBUILD_TARGET_CPU)) $(DLLS.$(KBUILD_TYPE))
51_ALL_PROGRAMS := $(PROGRAMS) $(PROGRAMS.$(KBUILD_TARGET)) $(PROGRAMS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(PROGRAMS.$(KBUILD_TARGET_ARCH)) $(PROGRAMS.$(KBUILD_TARGET_CPU)) $(PROGRAMS.$(KBUILD_TYPE))
52_ALL_SYSMODS := $(SYSMODS) $(SYSMODS.$(KBUILD_TARGET)) $(SYSMODS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(SYSMODS.$(KBUILD_TARGET_ARCH)) $(SYSMODS.$(KBUILD_TARGET_CPU)) $(SYSMODS.$(KBUILD_TYPE))
[2084]53_ALL_MISCBINS := $(MISCBINS) $(MISCBINS.$(KBUILD_TARGET)) $(MISCBINS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(MISCBINS.$(KBUILD_TARGET_ARCH)) $(MISCBINS.$(KBUILD_TARGET_CPU)) $(MISCBINS.$(KBUILD_TYPE))
[1504]54_ALL_OTHERS := $(OTHERS) $(OTHERS.$(KBUILD_TARGET)) $(OTHERS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(OTHERS.$(KBUILD_TARGET_ARCH)) $(OTHERS.$(KBUILD_TARGET_CPU)) $(OTHERS.$(KBUILD_TYPE))
55_ALL_INSTALLS := $(INSTALLS) $(INSTALLS.$(KBUILD_TARGET)) $(INSTALLS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(INSTALLS.$(KBUILD_TARGET_ARCH)) $(INSTALLS.$(KBUILD_TARGET_CPU)) $(INSTALLS.$(KBUILD_TYPE))
56_ALL_FETCHES := $(FETCHES) $(FETCHES.$(KBUILD_TARGET)) $(FETCHES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(FETCHES.$(KBUILD_TARGET_ARCH)) $(FETCHES.$(KBUILD_TARGET_CPU)) $(FETCHES.$(KBUILD_TYPE))
57_ALL_PATCHES := $(PATCHES) $(PATCHES.$(KBUILD_TARGET)) $(PATCHES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(PATCHES.$(KBUILD_TARGET_ARCH)) $(PATCHES.$(KBUILD_TARGET_CPU)) $(PATCHES.$(KBUILD_TYPE))
[985]58
[72]59# all targets.
[985]60_ALL_TARGETS = \
61 $(_ALL_FETCHES) \
62 $(_ALL_PATCHES) \
63 $(_ALL_BLDPROGS) \
64 $(_ALL_LIBRARIES) \
65 $(_ALL_IMPORT_LIBS) \
66 $(_ALL_DLLS) \
67 $(_ALL_PROGRAMS) \
68 $(_ALL_SYSMODS) \
[2084]69 $(_ALL_MISCBINS) \
[985]70 $(_ALL_INSTALLS) \
71 $(_ALL_OTHERS)
[72]72
[1504]73# all $(KBUILD_TARGET) targets.
74_ALL_TARGET_TARGETS = \
[985]75 $(_ALL_FETCHES) \
76 $(_ALL_PATCHES) \
77 $(_ALL_LIBRARIES) \
78 $(_ALL_IMPORT_LIBS) \
79 $(_ALL_DLLS) \
80 $(_ALL_PROGRAMS) \
81 $(_ALL_SYSMODS) \
[2084]82 $(_ALL_MISCBINS) \
[985]83 $(_ALL_INSTALLS) \
84 $(_ALL_OTHERS)
[447]85
[1504]86# all $(KBUILD_HOST) targets.
87_ALL_HOST_TARGETS = \
[985]88 $(_ALL_BLDPROGS)
[447]89
[640]90# all targets making use of srcname.
[985]91_ALL_SRCNAME_TARGETS = \
92 $(_ALL_FETCHES) \
93 $(_ALL_PATCHES)
[640]94
[1696]95# Dependency files. (currently not on target level, only this global stuff)
96_DEPFILES := $(DEPFILES) $(DEPFILES.$(KBUILD_TARGET)) $(DEPFILES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(DEPFILES.$(KBUILD_TARGET_ARCH)) $(DEPFILES.$(KBUILD_TARGET_CPU)) $(DEPFILES.$(KBUILD_TYPE))
[75]97
[380]98# included dependency files.
99_DEPFILES_INCLUDED :=
100
101
[75]102# All kind of output files except for _OBJS and _DEPFILES.
103# Compiling or linking definition outputting other things that $@ and any
104# required dependency file must add those output files to this variable.
105_OUT_FILES :=
106
[353]107# Files which only requires cleaning up.
108_CLEAN_FILES :=
109
[72]110# all of a type
[219]111_OBJS :=
[640]112_FETCHES :=
113_DOWNLOADS:=
114_UNPACKS :=
115_PATCHES :=
[688]116_UNFETCHES:=
[222]117_BLDPROGS :=
[219]118_LIBS :=
119_DLLS :=
120_PROGRAMS :=
121_SYSMODS :=
[2084]122_MISCBINS :=
[2475]123_STAGE_FILES :=
124_STAGE_DIRS :=
[353]125_INSTALLS :=
[827]126_INSTALLS_FILES :=
[380]127_INSTALLS_DIRS :=
[353]128_OTHERS :=
[417]129_PACKING :=
[897]130_DIRS := $(PATH_TARGET)/ $(PATH_TARGET) $(BLDDIRS)
[189]131_IMPORT_LIBS :=
[72]132
[2479]133# Implicit targets added while processing other targets (usually by units).
134_ALL_INSTALLS_IMPLICIT :=
135
[220]136# misc
137pass_prev :=
138
139
[984]140
[72]141#
[984]142# Footer macros
[73]143#
144
[78]145## Figure out the tool for a target.
[753]146# @param $1 normalized target.
147# @param $2 tooltype.
[222]148# @param bld_trg build target.
[481]149# @param bld_trg_arch build target architecture.
[2433]150# @param bld_type build target type.
151if 0
[79]152_TARGET_TOOL = $(strip $(firstword \
[753]153 $($(1)_$(2)TOOL.$(bld_trg).$(bld_trg_arch)) \
154 $($(1)_$(2)TOOL.$(bld_trg)) \
155 $($(1)_$(2)TOOL) \
156 $($(1)_TOOL.$(bld_trg).$(bld_trg_arch)) \
157 $($(1)_TOOL.$(bld_trg)) \
158 $($(1)_TOOL) \
159 $($(2)TOOL.$(bld_trg).$(bld_trg_arch)) \
160 $($(2)TOOL.$(bld_trg)) \
161 $($(2)TOOL) \
[481]162 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
[222]163 $(TOOL.$(bld_trg)) \
[106]164 $(TOOL) \
[2434]165))
[2433]166else
167_TARGET_TOOL = $(strip $(firstword \
168 $($(1)_$(2)TOOL.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
169 $($(1)_$(2)TOOL.$(bld_trg).$(bld_trg_arch)) \
170 $($(1)_$(2)TOOL.$(bld_trg).$(bld_type)) \
171 $($(1)_$(2)TOOL.$(bld_trg_arch)) \
172 $($(1)_$(2)TOOL.$(bld_trg)) \
173 $($(1)_$(2)TOOL.$(bld_type)) \
174 $($(1)_$(2)TOOL) \
175 $($(1)_TOOL.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
176 $($(1)_TOOL.$(bld_trg).$(bld_trg_arch)) \
177 $($(1)_TOOL.$(bld_trg).$(bld_type)) \
178 $($(1)_TOOL.$(bld_trg_arch)) \
179 $($(1)_TOOL.$(bld_trg)) \
180 $($(1)_TOOL.$(bld_type)) \
181 $($(1)_TOOL) \
182 $($(2)TOOL.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
183 $($(2)TOOL.$(bld_trg).$(bld_trg_arch)) \
184 $($(2)TOOL.$(bld_trg).$(bld_type)) \
185 $($(2)TOOL.$(bld_trg_arch)) \
186 $($(2)TOOL.$(bld_trg)) \
187 $($(2)TOOL.$(bld_type)) \
188 $($(2)TOOL) \
189 $(TOOL.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
190 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
191 $(TOOL.$(bld_trg).$(bld_type)) \
192 $(TOOL.$(bld_trg_arch)) \
193 $(TOOL.$(bld_trg)) \
194 $(TOOL.$(bld_type)) \
195 $(TOOL) \
[2434]196))
[2433]197endif
[183]198
[353]199## Figure out the actual name of an installed file.
200# @param $1 The file to install.
201# @param $2 The target name.
202# @param $3 The _INST value (can be empty).
[2477]203# @param $4 The installation root directory.
204_INSTALL_FILE = $(patsubst %/,%/$(notdir $(1)),$(if $(3),$(4)/$(3),$(4)/))
[353]205
206
[1413]207
[2007]208## Converts a variable from simple to recursive flavor.
209# This is used by def_inherit_template_one_accumulate_l and def_inherit_template_one_accumulate_r.
210# @param $1 The variable name.
211define def_simple_2_recursive
212$1_DEFERRED := $$($1)
213$1 = $$($1_DEFERRED)
214endef
215
216
[1413]217## Inherit one keyword in a non-accumulative manner.
218# @param $(trg) Target object.
219# @param $(prop) The property.
220# @param $(src_key) Source keyword.
221# @param $(trg_key) Target keyword.
222define def_inherit_one_keyword
223ifdef $(trg)_$(prop).$(src_key)
224 ifndef $(trg)_$(prop).$(trg_key)
225 $(trg)_$(prop).$(trg_key) = $($(trg)_$(prop).$(src_key))
226 endif
227endif
228endef
229
230
231# EXPAND_BY = overriding
232
233## Inherit one keyword in a non-accumulative manner.
234# @param $(trg) Target object.
235# @param $(prop) The property.
236# @param $(src_key) Source keyword.
237# @param $(trg_key) Target keyword.
238define def_inherit_one_keyword_overriding_now_l
239ifdef $(trg)_$(prop).$(src_key)
240 ifndef $(trg)_$(prop).$(trg_key)
241 $(trg)_$(prop).$(trg_key) := $($(trg)_$(prop).$(src_key))
242 endif
243endif
244endef
245
246## @copydoc def_inherit_one_overriding_now_l
247define def_inherit_one_keyword_overriding_now_r
248ifdef $(trg)_$(prop).$(src_key)
249 ifndef $(trg)_$(prop).$(trg_key)
250 $(trg)_$(prop).$(trg_key) := $($(trg)_$(prop).$(src_key))
251 endif
252endif
253endef
254
255## Inherit one keyword in a non-accumulative manner, deferred expansion.
256# @param $(trg) Target object.
257# @param $(prop) The property.
258# @param $(src_key) Source keyword.
259# @param $(trg_key) Target keyword.
260# @remark This define relies on double evaluation
261define def_inherit_one_keyword_overriding_deferred
262ifdef $(trg)_$(prop).$(src_key)
263 ifndef $(trg)_$(prop).$(trg_key)
264 $(trg)_$(prop).$(trg_key) = $$($(trg)_$(prop).$(src_key))
265 endif
266endif
267endef
268
269## @copydoc def_inherit_one_overriding_deferred
270define def_inherit_one_keyword_overriding_deferred_l
271ifdef $(trg)_$(prop).$(src_key)
272 ifndef $(trg)_$(prop).$(trg_key)
273 $(trg)_$(prop).$(trg_key) = $$($(trg)_$(prop).$(src_key))
274 endif
275endif
276endef
277
278## @copydoc def_inherit_one_overriding_deferred
279define def_inherit_one_keyword_overriding_deferred_r
280ifdef $(trg)_$(prop).$(src_key)
281 ifndef $(trg)_$(prop).$(trg_key)
282 $(trg)_$(prop).$(trg_key) = $$($(trg)_$(prop).$(src_key))
283 endif
284endif
285endef
286
287
288# EXPAND_BY = prepending
289
290## Inherit one keyword in a prepending manner.
291# @param $(trg) Target object.
292# @param $(prop) The property.
293# @param $(src_key) Source keyword.
294# @param $(trg_key) Target keyword.
295define def_inherit_one_keyword_prepending_now_l
296ifdef $(trg)_$(prop).$(src_key)
297 $(trg)_$(prop).$(trg_key) := $($(trg)_$(prop).$(src_key)) $($(trg)_$(prop).$(trg_key))
298endif
299endef
300
301## @copydoc def_inherit_one_prepending_now_l
302define def_inherit_one_keyword_prepending_now_r
303ifdef $(trg)_$(prop).$(src_key)
304 $(trg)_$(prop).$(trg_key) := $($(trg)_$(prop).$(trg_key)) $($(trg)_$(prop).$(src_key))
305endif
306endef
307
308## Inherit one keyword in a non-accumulative manner, deferred expansion.
309# @param $(trg) Target object.
310# @param $(prop) The property.
311# @param $(src_key) Source keyword.
312# @param $(trg_key) Target keyword.
313# @remark This define relies on double evaluation
314define def_inherit_one_keyword_prepending_deferred
315ifdef $(trg)_$(prop).$(src_key)
316 ifndef $(trg)_$(prop).$(trg_key)
317 $(trg)_$(prop).$(trg_key) = $$($(trg)_$(prop).$(src_key))
318 endif
319endif
320endef
321
322## Inherit one keyword in a prepending manner, deferred expansion.
323# @param $(trg) Target object.
324# @param $(prop) The property.
325# @param $(src_key) Source keyword.
326# @param $(trg_key) Target keyword.
327define def_inherit_one_keyword_prepending_deferred_l
328ifdef $(trg)_$(prop).$(src_key)
[2007]329 ifeq ($$(flavor $(trg)_$(prop).$(trg_key)),simple)
330 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop).$(trg_key))
331 endif
[1413]332 $(trg)_$(prop).$(trg_key) <= $$($(trg)_$(prop).$(src_key))
333endif
334endef
335
336## @copydoc def_inherit_one_prepending_deferred_l
337define def_inherit_one_keyword_prepending_deferred_r
338ifdef $(trg)_$(prop).$(src_key)
[2007]339 ifeq ($$(flavor $(trg)_$(prop).$(trg_key)),simple)
340 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop).$(trg_key))
341 endif
342 $(trg)_$(prop).$(trg_key) += $$($(trg)_$(prop).$(src_key))
[1413]343endif
344endef
345
346
347# EXPAND_BY = appending
348
349## Inherit one keyword in an appending manner.
350# @param $(trg) Target object.
351# @param $(prop) The property.
352# @param $(src_key) Source keyword.
353# @param $(trg_key) Target keyword.
354define def_inherit_one_keyword_appending_now_l
355ifdef $(trg)_$(prop).$(src_key)
356 $(trg)_$(prop).$(trg_key) := $($(trg)_$(prop).$(trg_key)) $($(trg)_$(prop).$(src_key))
357endif
358endef
359
360## @copydoc def_inherit_one_appending_now_l
361define def_inherit_one_keyword_appending_now_r
362ifdef $(trg)_$(prop).$(src_key)
363 $(trg)_$(prop).$(trg_key) := $($(trg)_$(prop).$(src_key)) $($(trg)_$(prop).$(trg_key))
364endif
365endef
366
367## Inherit one keyword in a non-accumulative manner, deferred expansion.
368# @param $(trg) Target object.
369# @param $(prop) The property.
370# @param $(src_key) Source keyword.
371# @param $(trg_key) Target keyword.
372# @remark This define relies on double evaluation
373define def_inherit_one_keyword_appending_deferred
374ifdef $(trg)_$(prop).$(src_key)
375 ifndef $(trg)_$(prop).$(trg_key)
376 $(trg)_$(prop).$(trg_key) = $$($(trg)_$(prop).$(src_key))
377 endif
378endif
379endef
380
381## Inherit one keyword in an appending manner, deferred expansion.
382# @param $(trg) Target object.
383# @param $(prop) The property.
384# @param $(src_key) Source keyword.
385# @param $(trg_key) Target keyword.
386define def_inherit_one_keyword_appending_deferred_l
387ifdef $(trg)_$(prop).$(src_key)
[2007]388 ifeq ($$(flavor $(trg)_$(prop).$(trg_key)),simple)
389 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop).$(trg_key))
390 endif
[1413]391 $(trg)_$(prop).$(trg_key) += $$($(trg)_$(prop).$(src_key))
392endif
393endef
394
395## @copydoc def_inherit_one_appending_deferred_l
396define def_inherit_one_keyword_appending_deferred_r
397ifdef $(trg)_$(prop).$(src_key)
[2007]398 ifeq ($$(flavor $(trg)_$(prop).$(trg_key)),simple)
399 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop).$(trg_key))
400 endif
401 $(trg)_$(prop).$(trg_key) <= $$($(trg)_$(prop).$(src_key))
[1413]402endif
403endef
404
405
[2011]406## Worker for def_inherit that deals with one keyword that makes
[1413]407# use of inheritance.
408# @param prefix_keyword key_prefix:keyword. The cool join/split game as usual.
409# @param trg Object to consider for inheriting.
410# @param properties List of the properties with straight expansion.
411# @param properties_now_l List of the properties with immediate expansion, accumulating on the left side.
412# @param properties_now_r List of the properties with immediate expansion, accumulating on the right side.
413# @param properties_deferred List of the properties with deferred expansion (e.g. function), non-accumulative .
414# @param properties_deferred_l List of the properties with deferred expansion (e.g. function), accumulating on the left side.
415# @param properties_deferred_r List of the properties with deferred expansion (e.g. function), accumulating on the right side.
416define def_inherit_keyword
[1496]417local prefix := $(word 1,$(subst :, ,$(prefix_keyword)))
418local trg_key := $(word 2,$(subst :, ,$(prefix_keyword)))
419local src_key := $($(prefix)_$(trg_key)_EXTENDS)
420local by := $($(prefix)_$(trg_key)_EXTENDS_BY)
[1413]421
422# Inherit the properties.
423$(foreach prop, $(properties), $(eval $(def_inherit_one_keyword)))
424$(foreach prop, $(properties_now_l), $(eval $(def_inherit_one_keyword_$(by)_now_l)))
425$(foreach prop, $(properties_now_r), $(eval $(def_inherit_one_keyword_$(by)_now_r)))
426$(foreach prop, $(properties_deferred), $(eval $(def_inherit_one_keyword_$(by)_deferred)))
427$(foreach prop, $(properties_deferred_l), $(eval $(def_inherit_one_keyword_$(by)_deferred_l)))
428$(foreach prop, $(properties_deferred_r), $(eval $(def_inherit_one_keyword_$(by)_deferred_r)))
429
430endef # def_inherit_keyword
431
432
[985]433## Inherit one template property in a non-accumulative manner.
434# @param $(prop) Property name
435# @param $(src) Source (parent) object.
436# @param $(trg) Target (child) object.
437define def_inherit_one
438ifdef $(src)_$(prop)
439 ifndef $(trg)_$(prop)
440 $(trg)_$(prop) = $($(src)_$(prop))
441 endif
442endif
[1413]443endef
[723]444
[1407]445
446# EXPAND_BY = overriding
447
[985]448## Inherit one template property in a non-accumulative manner.
449# @param $(prop) Property name
450# @param $(src) Source (parent) object.
451# @param $(trg) Target (child) object.
[1407]452define def_inherit_one_overriding_now_l
[985]453ifdef $(src)_$(prop)
454 ifndef $(trg)_$(prop)
455 $(trg)_$(prop) := $($(src)_$(prop))
456 endif
457endif
[1413]458endef
[185]459
[1407]460## @copydoc def_inherit_one_overriding_now_l
461define def_inherit_one_overriding_now_r
462ifdef $(src)_$(prop)
463 ifndef $(trg)_$(prop)
464 $(trg)_$(prop) := $($(src)_$(prop))
465 endif
466endif
[1413]467endef
[1407]468
[985]469## Inherit one template property in a non-accumulative manner, deferred expansion.
470# @param $(prop) Property name
471# @param $(src) Source
472# @param $(trg) Target
473# @remark This define relies on double evaluation
[1407]474define def_inherit_one_overriding_deferred
[985]475ifdef $(src)_$(prop)
476 ifndef $(trg)_$(prop)
477 $(trg)_$(prop) = $$($(src)_$(prop))
478 endif
[185]479endif
[1413]480endef
[185]481
[1407]482## @copydoc def_inherit_one_overriding_deferred
483define def_inherit_one_overriding_deferred_l
484ifdef $(src)_$(prop)
485 ifndef $(trg)_$(prop)
486 $(trg)_$(prop) = $$($(src)_$(prop))
487 endif
488endif
[1413]489endef
[1407]490
491## @copydoc def_inherit_one_overriding_deferred
492define def_inherit_one_overriding_deferred_r
493ifdef $(src)_$(prop)
494 ifndef $(trg)_$(prop)
495 $(trg)_$(prop) = $$($(src)_$(prop))
496 endif
497endif
[1413]498endef
[1407]499
500
501# EXPAND_BY = prepending
502
503## Inherit one template property in a prepending manner.
504# @param $(prop) Property name
505# @param $(src) Source (parent) object.
506# @param $(trg) Target (child) object.
507define def_inherit_one_prepending_now_l
508ifdef $(src)_$(prop)
[1413]509 $(trg)_$(prop) := $($(src)_$(prop)) $($(trg)_$(prop))
[1407]510endif
[1413]511endef
[1407]512
513## @copydoc def_inherit_one_prepending_now_l
514define def_inherit_one_prepending_now_r
515ifdef $(src)_$(prop)
[1413]516 $(trg)_$(prop) := $($(trg)_$(prop)) $($(src)_$(prop))
[1407]517endif
[1413]518endef
[1407]519
520## Inherit one template property in a non-accumulative manner, deferred expansion.
521# @param $(prop) Property name
522# @param $(src) Source
523# @param $(trg) Target
524# @remark This define relies on double evaluation
525define def_inherit_one_prepending_deferred
526ifdef $(src)_$(prop)
527 ifndef $(trg)_$(prop)
528 $(trg)_$(prop) = $$($(src)_$(prop))
529 endif
530endif
[1413]531endef
[1407]532
533## Inherit one template property in a prepending manner, deferred expansion.
534# @param $(prop) Property name
535# @param $(src) Source (parent) object.
536# @param $(trg) Target (child) object.
537define def_inherit_one_prepending_deferred_l
538ifdef $(src)_$(prop)
[2007]539 ifeq ($$(flavor $(trg)_$(prop)),simple)
540 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop))
541 endif
[1407]542 $(trg)_$(prop) <= $$($(src)_$(prop))
543endif
[1413]544endef
[1407]545
546## @copydoc def_inherit_one_prepending_deferred_l
547define def_inherit_one_prepending_deferred_r
548ifdef $(src)_$(prop)
[2007]549 ifeq ($$(flavor $(trg)_$(prop)),simple)
550 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop))
551 endif
552 $(trg)_$(prop) += $$($(src)_$(prop))
[1407]553endif
[1413]554endef
[1407]555
556
557# EXPAND_BY = appending
558
[1413]559## Inherit one template property in an appending manner.
[1407]560# @param $(prop) Property name
561# @param $(src) Source (parent) object.
562# @param $(trg) Target (child) object.
563define def_inherit_one_appending_now_l
564ifdef $(src)_$(prop)
[1413]565 $(trg)_$(prop) := $($(trg)_$(prop)) $($(src)_$(prop))
[1407]566endif
[1413]567endef
[1407]568
569## @copydoc def_inherit_one_appending_now_l
570define def_inherit_one_appending_now_r
571ifdef $(src)_$(prop)
[1413]572 $(trg)_$(prop) := $($(src)_$(prop)) $($(trg)_$(prop))
[1407]573endif
[1413]574endef
[1407]575
576## Inherit one template property in a non-accumulative manner, deferred expansion.
577# @param $(prop) Property name
578# @param $(src) Source
579# @param $(trg) Target
580# @remark This define relies on double evaluation
581define def_inherit_one_appending_deferred
582ifdef $(src)_$(prop)
583 ifndef $(trg)_$(prop)
584 $(trg)_$(prop) = $$($(src)_$(prop))
585 endif
586endif
[1413]587endef
[1407]588
[1413]589## Inherit one template property in an appending manner, deferred expansion.
[1407]590# @param $(prop) Property name
591# @param $(src) Source (parent) object.
592# @param $(trg) Target (child) object.
593define def_inherit_one_appending_deferred_l
594ifdef $(src)_$(prop)
[2007]595 ifeq ($$(flavor $(trg)_$(prop)),simple)
596 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop))
597 endif
[1407]598 $(trg)_$(prop) += $$($(src)_$(prop))
599endif
[1413]600endef
[1407]601
602## @copydoc def_inherit_one_appending_deferred_l
603define def_inherit_one_appending_deferred_r
604ifdef $(src)_$(prop)
[2007]605 ifeq ($$(flavor $(trg)_$(prop)),simple)
606 $$(evalcall2 def_simple_2_recursive,$(trg)_$(prop))
607 endif
608 $(trg)_$(prop) <= $$($(src)_$(prop))
[1407]609endif
[1413]610endef
[1407]611
612
[1413]613## combines the specified properties $(1) with the $(_KEYWORDS) list.
614_INHERIT_JOIN_KEYWORDS = $(1) $(foreach keyword,$(_KEYWORDS), $(addsuffix .$(keyword), $(1)))
[1407]615
[1413]616
[985]617## Generic inheritance for use with targets templates and tools.
[1407]618# @param trg Object to consider for inheriting.
619# @param src_prefix What to prefix the value found in EXTENDS with to get the object.
[1414]620# @param load_function Load function for stuff that needs
[1407]621# @param properties List of the properties with straight expansion.
622# @param properties_now_l List of the properties with immediate expansion, accumulating on the left side.
623# @param properties_now_r List of the properties with immediate expansion, accumulating on the right side.
624# @param properties_deferred List of the properties with deferred expansion (e.g. function), non-accumulative .
625# @param properties_deferred_l List of the properties with deferred expansion (e.g. function), accumulating on the left side.
626# @param properties_deferred_r List of the properties with deferred expansion (e.g. function), accumulating on the right side.
[985]627define def_inherit
[1414]628
[1496]629# Load it - loading is a mess, fix.
[1414]630ifneq ($(load_function),)
[1496]631 local loading := $(patsubst $(src_prefix)%,%,$(trg))
632 $(evalvalctx $(load_function))
[1414]633endif
634
[1496]635local src := $(strip $($(trg)_EXTENDS))
[985]636ifneq ($(src),)
637 ifndef $(trg)_EXTENDS_STATUS_
638 $(trg)_EXTENDS_STATUS_ := 0
[1414]639
640 # Load the source.
641 ifneq ($(load_function),)
[1496]642 local loading := $(src)
643 $(evalvalctx $(load_function))
[1414]644 endif
645
646 # less typing.
[1496]647 local src := $(src_prefix)$(src)
[185]648
[985]649 # Recursivly process the parent (src) if it's inherting from somebody too.
650 ifdef $(src)_EXTENDS
651 ifneq ($($(src)_EXTENDS_STATUS_),42)
652 # 'foreach' will create 'trg' in a new variable context hiding
[1502]653 # out current variable. 'src' OTOH will be overwritten.
[1496]654 $(foreach trg, $(src), $(evalval def_inherit))
655 local src := $(src_prefix)$(strip $($(trg)_EXTENDS))
[985]656 endif
657 endif
[984]658
[1407]659 # Get & check EXTENDS_BY.
[1496]660 local by = $(strip $($(trg)_EXTENDS_BY))
[1407]661 ifeq ($(by),)
[1496]662 local by = overriding
[1407]663 else ifn1of ($(by), overriding appending prepending)
664 $(error kBuild: Invalid EXTENDS_BY value '$(by)' on '$(trg)'!)
665 endif
666
667 # Inherit the properties.
[1413]668 $(foreach prop, $(call _INHERIT_JOIN_KEYWORDS,$(properties)), $(eval $(def_inherit_one)))
669 $(foreach prop, $(call _INHERIT_JOIN_KEYWORDS,$(properties_now_l)), $(eval $(def_inherit_one_$(by)_now_l)))
670 $(foreach prop, $(call _INHERIT_JOIN_KEYWORDS,$(properties_now_r)), $(eval $(def_inherit_one_$(by)_now_r)))
671 $(foreach prop, $(call _INHERIT_JOIN_KEYWORDS,$(properties_deferred)), $(eval $(def_inherit_one_$(by)_deferred)))
672 $(foreach prop, $(call _INHERIT_JOIN_KEYWORDS,$(properties_deferred_l)), $(eval $(def_inherit_one_$(by)_deferred_l)))
673 $(foreach prop, $(call _INHERIT_JOIN_KEYWORDS,$(properties_deferred_r)), $(eval $(def_inherit_one_$(by)_deferred_r)))
[1407]674
675 # Mark the target as done.
[985]676 $(trg)_EXTENDS_STATUS_ := 42
677 else
678 # Check for inheritance loops.
[1266]679 ifneq ($($(trg)_EXTENDS_STATUS_),42)
680 $(error kBuild: Target inheritance loop! target=$(trg) $(trg)_EXTENDS_STATUS_=$($(trg)_EXTENDS_STATUS_))
[985]681 endif
682 endif
683endif
[984]684
[1413]685# Keyword inheritance.
[1496]686$(foreach prefix_keyword, $(join $(_KEYWORDS_PREFIX), $(addprefix :,$(_KEYWORDS_EXTENDS))), $(evalval def_inherit_keyword))
[985]687
[1413]688endef # def_inherit
[1399]689
690
[984]691#
[1672]692# Load global units before doing any inheriting so they can add new properties.
693#
694# This only applies to the guys listed in the global USES since there is
695# no reliable way to deal with things on a target level without first
696# applying templates. So, to avoid having USES mess up all targets,
697# we'll make the global and per-target USES property work differently:
698# The global USES does not apply to targets, just globally.
699#
700
701## Unit load function.
702# @param loading The unit name
703define def_unit_load_function
704ifndef UNIT_$(loading)
705 UNIT_$(loading)_KMK_FILE := $(firstword $(foreach path, $(KBUILD_UNIT_PATHS) $(KBUILD_PATH)/units $(KBUILD_DEFAULT_PATHS), $(wildcard $(path)/$(loading).kmk)))
706 ifeq ($(UNIT_$(loading)_KMK_FILE),)
707 $(error kBuild: Cannot find include file for the unit '$(loading)'! Searched: $(KBUILD_UNIT_PATHS) $(KBUILD_PATH)/units $(KBUILD_DEFAULT_PATHS))
708 endif
709 include $(UNIT_$(loading)_KMK_FILE)
710 ifndef UNIT_$(loading)
711 $(warning kBuild: UNIT_$(loading) was not defined by $(UNIT_$(loading)_KMK_FILE)!)
712 endif
713endif
714endef # def_unit_load_function
715
716$(foreach loading, \
717 $(USES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
718 $(USES.$(KBUILD_TARGET_CPU)) \
719 $(USES.$(KBUILD_TARGET_ARCH)) \
720 $(USES.$(KBUILD_TARGET)) \
721 $(USES.$(KBUILD_HOST).$(KBUILD_HOST_ARCH)) \
722 $(USES.$(KBUILD_HOST_CPU)) \
723 $(USES.$(KBUILD_HOST_ARCH)) \
724 $(USES.$(KBUILD_TARGET)) \
725 $(USES.$(KBUILD_TYPE)) \
726 $(USES),$(evalval def_unit_load_function))
727
728
729#
[985]730# Determin all the templates that is being used and make
[1415]731# sure they are present before we try collect keywords.
[72]732#
733_TEMPLATES := $(TEMPLATE)
734define def_templates
735ifdef $(target)_TEMPLATE
[985]736 ifneq ("$($(target)_TEMPLATE)","$(strip $($(target)_TEMPLATE))")
737 $$(error kBuild: The template name of target '$(target)' contains tabs ($($(target)_TEMPLATE))). Please remove them)
738 endif
739 _TEMPLATES += $($(target)_TEMPLATE)
[72]740endif
[985]741endef # def_templates
[984]742$(foreach target, $(_ALL_TARGETS), $(eval $(def_templates)))
[72]743_TEMPLATES := $(sort $(_TEMPLATES))
744
[1417]745## Template load function.
746# @param loading The template name. This is prefixed.
747define def_templates_load_function
748ifndef TEMPLATE_$(loading)
[1504]749 TEMPLATE_$(loading)_KMK_FILE := $(firstword $(foreach path, $(KBUILD_TEMPLATE_PATHS) $(KBUILD_PATH)/templates $(KBUILD_DEFAULT_PATHS), $(wildcard $(path)/$(loading).kmk)))
[1496]750 ifeq ($(TEMPLATE_$(loading)_KMK_FILE),)
[1504]751 $(error kBuild: Cannot find include file for the template '$(loading)'! Searched: $(KBUILD_TEMPLATE_PATHS) $(KBUILD_PATH)/templates $(KBUILD_DEFAULT_PATHS))
[985]752 endif
[1417]753 include $(TEMPLATE_$(loading)_KMK_FILE)
754 ifndef TEMPLATE_$(loading)
755 $(warning kBuild: TEMPLATE_$(loading) was not defined by $(TEMPLATE_$(loading)_KMK_FILE)!)
756 endif
[72]757endif
[1456]758endef # def_templates_load_function
[1496]759$(foreach loading, $(_TEMPLATES), $(evalval def_templates_load_function))
[72]760
[74]761
[72]762#
[1415]763# Determin the keywords required for correct inherting and setup keyword inheritance.
[412]764#
[1415]765# This means walking all the lists of immediate template and targets and
766# pick up all the BLD_T* keywords. Since templates that are referenced
767# indirectly in the inheritance hierarchy, the result from this exercise
768# might not be 100% accurate... :-/
[985]769#
[1504]770_BLD_TYPES := $(KBUILD_TYPE)
771_BLD_TARGETS := $(KBUILD_TARGET) $(KBUILD_HOSTS)
772_BLD_ARCHES := $(KBUILD_TARGET_ARCH) $(KBUILD_HOST_ARCH)
773_BLD_CPUS := $(KBUILD_TARGET_CPU) $(KBUILD_HOST_CPU)
[985]774
775define def_collect_bld_xyz
[1410]776ifdef $(src)_BLD_TYPE
777 ifn1of ($($(src)_BLD_TYPE), $(KBUILD_BLD_TYPES))
778 $(error kBuild: $(src)_BLD_TYPE=$($(src)_BLD_TYPE) not in KBUILD_BLD_TYPES={$(KBUILD_BLD_TYPES)}!)
779 endif
[1394]780 _BLD_TYPES += $($(src)_BLD_TYPE)
[412]781endif
[1410]782ifdef $(src)_BLD_TRG
783 ifn1of ($($(src)_BLD_TRG), $(KBUILD_OSES))
784 $(error kBuild: $(src)_BLD_TRG=$($(src)_BLD_TRG) not in KBUILD_OSES={$(KBUILD_OSES)}!)
785 endif
[985]786 _BLD_TARGETS += $($(src)_BLD_TRG)
787endif
[1410]788ifdef $(src)_BLD_TRG_ARCH
789 ifn1of ($($(src)_BLD_TRG_ARCH), $(KBUILD_ARCHES))
790 $(error kBuild: $(src)_BLD_TRG_ARCH=$($(src)_BLD_TRG_ARCH) not in KBUILD_ARCHES={$(KBUILD_ARCHES)}!)
791 endif
[985]792 _BLD_ARCHES += $($(src)_BLD_TRG_ARCH)
793endif
[1410]794ifdef $(src)_BLD_TRG_CPU
795 if1of ($($(src)_BLD_CPU), $(KBUILD_ARCHES) $(KBUILD_OSES) $(KBUILD_BLD_TYPES))
796 $(error kBuild: $(src)_BLD_TRG_CPU=$($(src)_BLD_TRG_CPU) found in KBUILD_ARCHES, KBUILD_OSES or KBUILD_BLD_TYPES!)
797 endif
[1394]798 _BLD_CPUS += $($(src)_BLD_TRG_CPU)
[985]799endif
800endef # def_collect_bld_xyz
[1410]801$(foreach src, $(addprefix TEMPLATE_, $(_TEMPLATES)) $(_ALL_TARGETS) \
[1496]802 ,$(evalval def_collect_bld_xyz))
[412]803
[1410]804# Drop duplicate values.
[1413]805# WARNING! These list might not include keywords only involved in inheritance.
[985]806_BLD_TYPES := $(sort $(_BLD_TYPES))
807_BLD_TARGETS := $(sort $(_BLD_TARGETS))
808_BLD_ARCHES := $(sort $(_BLD_ARCHES))
809_BLD_CPUS := $(sort $(_BLD_CPUS))
[552]810
[1413]811## Look for keywords which extends others and order them.
812# @param keyword
813# @param prefix
814# @param valid
[1410]815define def_keyword_ordering
[1413]816# Check for EXTENDS, fix and validate it if found.
[1496]817local src := $(strip $($(prefix)_$(keyword)_EXTENDS))
[1410]818ifneq ($(src),)
819 ifndef $(prefix)_$(keyword)_EXTENDS_STATUS_
820 ifn1of ($(src), $(valid))
821 $(error kBuild: $(keyword) tries to extend unknown keyword '$(src)'! (known = $(valid)))
822 endif
823
[1413]824 # Recursivly process the parent (src).
[1410]825 ifneq ($($(prefix)_$(src)_EXTENDS_STATUS_),42)
[1413]826 $(prefix)_$(keyword)_EXTENDS_STATUS_ := 0
827 # 'foreach' will create 'keyword' in a new variable context hiding
828 # out current variable. 'src' OTOH will be overwritten.
[1496]829 $(foreach keyword, $(src), $(evalval def_keyword_ordering))
830 local src := $(strip $($(prefix)_$(keyword)_EXTENDS))
[1410]831 endif
832
[1413]833 # Check and strip EXTENDS_BY.
[1496]834 local by = $(strip $($(prefix)_$(keyword)_EXTENDS_BY))
[1410]835 ifeq ($(by),)
[1496]836 local by = overriding
[1410]837 else ifn1of ($(by), overriding appending prepending)
838 $(error kBuild: Invalid EXTENDS_BY value '$(by)' on '$(keyword)'!)
839 endif
840
[1413]841 # Update the attributes with stripped
842 $(prefix)_$(keyword)_EXTENDS_BY := $(by)
843 $(prefix)_$(keyword)_EXTENDS := $(src)
844
[1410]845 # Add it to the list and mark it as done.
[1413]846 _KEYWORDS_EXTENDS += $(keyword)
847 _KEYWORDS_PREFIX += $(prefix)
[1410]848 $(prefix)_$(keyword)_EXTENDS_STATUS_ := 42
849 else
850 # Check for inheritance loops.
851 ifneq ($($(trg)_EXTENDS_STATUS_),42)
852 $(error kBuild: Keyword inheritance loop! keyword=$(keyword) $(prefix)_$(keyword)_EXTENDS_STATUS_=$($(prefix)_$(keyword)_EXTENDS_STATUS_))
853 endif
854 endif
[1413]855else
856 # Add it to the ordered list and mark it as done.
857 _KEYWORDS_ORDERED += $(keyword)
858 $(prefix)_$(src)_EXTENDS_STATUS_ := 42
[1410]859endif
[1413]860endef # def_keyword_ordering
[1936]861$(eval-opt-var def_keyword_ordering)
[1410]862
[1413]863# Look for keywords which extends others and their parents, and from this
864# construct two lists.
865_KEYWORDS_ORDERED :=
866_KEYWORDS_EXTENDS :=
867_KEYWORDS_PREFIX :=
[1410]868
869prefix := BLD_TYPE
870valid := $(KBUILD_BLD_TYPES)
[1496]871$(foreach keyword, $(_BLD_TYPES) , $(evalval def_keyword_ordering))
[1410]872
[1413]873prefix := BLD_TRG
874valid := $(KBUILD_OSES)
[1496]875$(foreach keyword, $(_BLD_TARGETS), $(evalval def_keyword_ordering))
[1413]876
[1410]877prefix := BLD_ARCH
878valid := $(KBUILD_ARCHES)
[1496]879$(foreach keyword, $(_BLD_ARCHES) , $(evalval def_keyword_ordering))
[1410]880
881prefix := BLD_CPU
882valid := $(KBUILD_CPUS)
[1496]883$(foreach keyword, $(_BLD_CPUS) , $(evalval def_keyword_ordering))
[1410]884
[1413]885## @todo Inherit bld_trg.bld_arch for too?
[1410]886
[1413]887# Construct all the possible keywords.
888_KEYWORDS := $(_KEYWORDS_ORDERED) $(_KEYWORDS_EXTENDS) \
889 $(foreach bld_trg,$(_BLD_TARGETS),$(addprefix $(bld_trg).,$(_BLD_ARCHES)))
890
[988]891ifdef KBUILD_PROFILE_SELF
[2008]892 $(evalcall def_profile_self, done keywords)
[988]893endif
[552]894
[988]895
[985]896#
897# Target inheritance.
898#
899# This has to be done on a per target list basis as to avoid adding
900# incorrect properties that will wast memory, time, and may confuse
901# later strictness checks. This also has to be done *before* templates
902# are applied to the targets. Since we're doing that part rather
903# early on, the target inheritance feature is a bit restricted at
904# the moment. However, this will be addressed in a little(?) while.
905#
[552]906
[985]907src_prefix :=
[1414]908load_function :=
[1407]909properties_deferred_l :=
910properties_deferred_r :=
911
[985]912# Fetches.
[1413]913properties := $(PROPS_FETCHES_SINGLE)
914properties_now_l := $(PROPS_FETCHES_ACCUMULATE_L)
915properties_now_r := $(PROPS_FETCHES_ACCUMULATE_R)
916properties_deferred := $(PROPS_FETCHES_DEFERRED)
[1496]917$(foreach trg, $(_ALL_FETCHES),$(evalval def_inherit))
[412]918
[985]919## Patches. - not implemented yet.
[1413]920#properties := $(PROPS_PATCHES_SINGLE)
921#properties_now_l := $(PROPS_PATCHES_ACCUMULATE_L)
922#properties_now_r := $(PROPS_PATCHES_ACCUMULATE_R)
923#properties_deferred := $(PROPS_PATCHES_DEFERRED)
[1496]924#$(foreach trg, $(_ALL_PATCHES),$(evalval def_inherit))
[412]925
[985]926# Programs and build programs.
[1413]927properties := $(PROPS_PROGRAMS_SINGLE)
928properties_now_l := $(PROPS_PROGRAMS_ACCUMULATE_L)
929properties_now_r := $(PROPS_PROGRAMS_ACCUMULATE_R)
930properties_deferred := $(PROPS_PROGRAMS_DEFERRED)
[1496]931$(foreach trg, $(_ALL_BLDPROGS) $(_ALL_PROGRAMS),$(evalval def_inherit))
[985]932
933# Libraries and import libraries.
[1413]934properties := $(PROPS_LIBRARIES_SINGLE)
935properties_now_l := $(PROPS_LIBRARIES_ACCUMULATE_L)
936properties_now_r := $(PROPS_LIBRARIES_ACCUMULATE_R)
937properties_deferred := $(PROPS_LIBRARIES_DEFERRED)
[1504]938if1of ($(KBUILD_TARGET), nt os2 win)
[1496]939 $(foreach trg, $(_ALL_LIBRARIES) $(_ALL_IMPORT_LIBS),$(evalval def_inherit))
[989]940else
[1496]941 $(foreach trg, $(_ALL_LIBRARIES),$(evalval def_inherit))
[989]942endif
[985]943
944# DLLs.
[1413]945properties := $(PROPS_DLLS_SINGLE)
946properties_now_l := $(PROPS_DLLS_ACCUMULATE_L)
947properties_now_r := $(PROPS_DLLS_ACCUMULATE_R)
948properties_deferred := $(PROPS_DLLS_DEFERRED)
[1504]949if1of ($(KBUILD_TARGET), nt os2 win)
[1496]950 $(foreach trg, $(_ALL_DLLS),$(evalval def_inherit))
[989]951else
[1496]952 $(foreach trg, $(_ALL_DLLS) $(_ALL_IMPORT_LIBS),$(evalval def_inherit))
[989]953endif
[985]954
[989]955# System modules.
[1413]956properties := $(PROPS_SYSMODS_SINGLE)
957properties_now_l := $(PROPS_SYSMODS_ACCUMULATE_L)
958properties_now_r := $(PROPS_SYSMODS_ACCUMULATE_R)
959properties_deferred := $(PROPS_SYSMODS_DEFERRED)
[1496]960$(foreach trg, $(_ALL_SYSMODS),$(evalval def_inherit))
[989]961
[2084]962# Misc binaries.
963properties := $(PROPS_MISCBINS_SINGLE)
964properties_now_l := $(PROPS_MISCBINS_ACCUMULATE_L)
965properties_now_r := $(PROPS_MISCBINS_ACCUMULATE_R)
966properties_deferred := $(PROPS_MISCBINS_DEFERRED)
967$(foreach trg, $(_ALL_MISCBINS),$(evalval def_inherit))
968
[985]969# Installs.
[1413]970properties := $(PROPS_INSTALLS_SINGLE)
971properties_now_l := $(PROPS_INSTALLS_ACCUMULATE_L)
972properties_now_r := $(PROPS_INSTALLS_ACCUMULATE_R)
973properties_deferred := $(PROPS_INSTALLS_DEFERRED)
[1496]974$(foreach trg, $(_ALL_INSTALLS),$(evalval def_inherit))
[985]975
[988]976ifdef KBUILD_PROFILE_SELF
[2008]977 $(evalcall def_profile_self, done target inheritance)
[988]978endif
[985]979
[988]980
[412]981#
[985]982# Template Inheritance.
983#
984# This is much the same as with target inheritance, except we cannot
[1370]985# restrict the properties involved since we haven't got a clue which
986# target platforms/archs are using them. But, we can drop the instance
987# expansion we're doing for targets since there won't be any more
988# changes to either the source nor the target templates beyond this
989# exercise.
[985]990#
991
992src_prefix := TEMPLATE_
[1417]993load_function := def_templates_load_function
[985]994properties :=
[1407]995properties_now_l :=
996properties_now_r :=
[1413]997properties_deferred := $(PROPS_SINGLE) $(PROPS_DEFERRED)
998properties_deferred_l := $(PROPS_ACCUMULATE_L)
999properties_deferred_r := $(PROPS_ACCUMULATE_R)
[1496]1000$(foreach trg, $(addprefix TEMPLATE_,$(_TEMPLATES)),$(evalval def_inherit))
[985]1001
[1407]1002# done inheriting.
1003src_prefix :=
[1414]1004load_function :=
[1407]1005properties :=
1006properties_now_l :=
1007properties_now_r :=
1008properties_deferred :=
1009properties_deferred_l :=
1010properties_deferred_r :=
1011
[1414]1012ifdef KBUILD_PROFILE_SELF
[2008]1013 $(evalcall def_profile_self, done template inheritance)
[1414]1014endif
[1407]1015
[1414]1016
1017
1018
[985]1019#
[1399]1020# Template/Target Expansion.
[72]1021#
[1399]1022# Extend all targets with the values from the template. Doing this up front
1023# allows more generic code and less mess down in the pass 2 target handling.
1024# However it does eat a good deal of memory.
1025#
[72]1026
[2429]1027define def_inherit_template_workaround_target
1028local _tmpl := $(firstword $($(target)_TEMPLATE) $(TEMPLATE))
[2432]1029local _bld_type := $(firstword $($(target)_BLD_TYPE) $(TEMPLATE_$(_tmpl)_BLD_TYPE) $(KBUILD_TYPE))
1030local _bld_trg := $(firstword $($(target)_BLD_TRG) $(TEMPLATE_$(_tmpl)_BLD_TRG) $(KBUILD_TARGET))
1031local _bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(TEMPLATE_$(_tmpl)_BLD_TRG_ARCH) $(KBUILD_TARGET_ARCH))
1032local _bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(TEMPLATE_$(_tmpl)_BLD_TRG_CPU) $(KBUILD_TARGET_CPU))
[2429]1033$(kb-exp-tmpl 1,$(target),$(_bld_trg),$(_bld_trg_arch),$(_bld_trg_cpu),$(_bld_type))
1034endef # def_inherit_template_workaround_target
1035#$(kb-exp-tmpl 1,$(_ALL_TARGET_TARGETS),$(KBUILD_TARGET),$(KBUILD_TARGET_ARCH),$(KBUILD_TARGET_CPU),$(KBUILD_TYPE))
1036$(foreach target,$(_ALL_TARGET_TARGETS),$(evalval def_inherit_template_workaround_target))
[2011]1037
[2429]1038define def_inherit_template_workaround_host
1039local _tmpl := $(firstword $($(target)_TEMPLATE) $(TEMPLATE))
[2432]1040local _bld_type := $(firstword $($(target)_BLD_TYPE) $(TEMPLATE_$(_tmpl)_BLD_TYPE) $(KBUILD_TYPE))
1041local _bld_trg := $(firstword $($(target)_BLD_TRG) $(TEMPLATE_$(_tmpl)_BLD_TRG) $(KBUILD_HOST))
1042local _bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(TEMPLATE_$(_tmpl)_BLD_TRG_ARCH) $(KBUILD_HOST_ARCH))
1043local _bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(TEMPLATE_$(_tmpl)_BLD_TRG_CPU) $(KBUILD_HOST_CPU))
[2429]1044$(kb-exp-tmpl 1,$(target),$(_bld_trg),$(_bld_trg_arch),$(_bld_trg_cpu),$(_bld_type))
1045endef # def_inherit_template_workaround_target
1046#$(kb-exp-tmpl 1,$(_ALL_HOST_TARGETS),$(KBUILD_HOST),$(KBUILD_HOST_ARCH),$(KBUILD_HOST_CPU),$(KBUILD_TYPE))
1047$(foreach target,$(_ALL_HOST_TARGETS),$(evalval def_inherit_template_workaround_host))
[2011]1048
[988]1049ifdef KBUILD_PROFILE_SELF
[2008]1050 $(evalcall def_profile_self, done template/target expansion)
[988]1051endif
[447]1052
[988]1053
[72]1054#
[1621]1055# Include tools, sdks and units.
[183]1056#
[985]1057# The first part of this exercise is to figure out which TOOLS and SDKS
1058# that should be included.
1059#
[1504]1060_TOOLS := $(TOOL.$(KBUILD_TARGET)) $(TOOL.$(KBUILD_TARGET_ARCH)) $(TOOL.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
1061 $(TOOL.$(KBUILD_HOST)) $(TOOL.$(KBUILD_HOST_ARCH)) $(TOOL.$(KBUILD_HOST).$(KBUILD_HOST_ARCH)) \
[592]1062 $(TOOL)
[1504]1063_SDKS := $(SDKS.$(KBUILD_TARGET)) $(SDKS.$(KBUILD_TARGET_ARCH)) $(SDKS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
1064 $(SDKS.$(KBUILD_HOST)) $(SDKS.$(KBUILD_HOST_ARCH)) $(SDKS.$(KBUILD_HOST).$(KBUILD_HOST_ARCH)) \
1065 $(SDKS.$(KBUILD_TYPE)) \
[592]1066 $(SDKS)
[1621]1067_USES := $(USES.$(KBUILD_TARGET)) $(USES.$(KBUILD_TARGET_ARCH)) $(USES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
1068 $(USES.$(KBUILD_HOST)) $(USES.$(KBUILD_HOST_ARCH)) $(USES.$(KBUILD_HOST).$(KBUILD_HOST_ARCH)) \
1069 $(USES.$(KBUILD_TYPE)) \
1070 $(USES)
[460]1071define def_tools_sdks_target_source
[353]1072$(eval _TOOLS += $(foreach prop, $(PROPS_TOOLS), \
[460]1073 $($(source)_$(prop).$(_bld_trg)) \
1074 $($(target)_$(source)_$(prop).$(_bld_trg)) \
[481]1075 $($(source)_$(prop).$(_bld_trg).$(_bld_trg_arch)) \
1076 $($(target)_$(source)_$(prop).$(_bld_trg).$(_bld_trg_arch)) \
[460]1077 $($(source)_$(prop).$(_bld_trg_arch)) \
1078 $($(target)_$(source)_$(prop).$(_bld_trg_arch)) \
[353]1079 $($(source)_$(prop)) \
1080 $($(target)_$(source)_$(prop))))
[460]1081$(eval _SDKS += \
1082 $($(source)_SDKS.$(_bld_trg)) \
1083 $($(target)_$(source)_SDKS.$(_bld_trg)) \
[481]1084 $($(source)_SDKS.$(_bld_trg).$(_bld_trg_arch)) \
1085 $($(target)_$(source)_SDKS.$(_bld_trg).$(_bld_trg_arch)) \
[460]1086 $($(source)_SDKS.$(_bld_trg_arch)) \
1087 $($(target)_$(source)_SDKS.$(_bld_trg_arch)) \
[1504]1088 $($(source)_SDKS.$(KBUILD_TYPE)) \
1089 $($(target)_$(source)_SDKS.$(KBUILD_TYPE)) \
[460]1090 $($(source)_SDKS) \
1091 $($(target)_$(source)_SDKS))
[1621]1092$(eval _USES += \
1093 $($(source)_USES.$(_bld_trg)) \
1094 $($(target)_$(source)_USES.$(_bld_trg)) \
1095 $($(source)_USES.$(_bld_trg).$(_bld_trg_arch)) \
1096 $($(target)_$(source)_USES.$(_bld_trg).$(_bld_trg_arch)) \
1097 $($(source)_USES.$(_bld_trg_arch)) \
1098 $($(target)_$(source)_USES.$(_bld_trg_arch)) \
1099 $($(source)_USES.$(KBUILD_TYPE)) \
1100 $($(target)_$(source)_USES.$(KBUILD_TYPE)) \
1101 $($(source)_USES) \
1102 $($(target)_$(source)_USES))
[985]1103endef # def_tools_sdks_target_source
[1936]1104$(eval-opt-var def_tools_sdks_target_source)
[353]1105
[460]1106define def_tools_sdks_target
[1504]1107local _bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
[1496]1108local _bld_trg := $(firstword $($(target)_BLD_TRG) $(bld_trg))
1109local _bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(bld_trg_arch))
1110local _bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(bld_trg_cpu))
[460]1111
[353]1112$(eval _TOOLS += $(foreach prop, $(PROPS_TOOLS), \
[460]1113 $($(target)_$(prop).$(_bld_trg)) \
1114 $($(target)_$(prop).$(_bld_trg_arch)) \
[481]1115 $($(target)_$(prop).$(_bld_trg).$(_bld_trg_arch)) \
[353]1116 $($(target)_$(prop))))
[460]1117$(eval _SDKS += \
1118 $($(target)_SDKS.$(_bld_trg)) \
1119 $($(target)_SDKS.$(_bld_trg_arch)) \
[481]1120 $($(target)_SDKS.$(_bld_trg).$(_bld_trg_arch)) \
[460]1121 $($(target)_SDKS))
[1621]1122$(eval _USES += \
1123 $($(target)_USES.$(_bld_trg)) \
1124 $($(target)_USES.$(_bld_trg_arch)) \
1125 $($(target)_USES.$(_bld_trg).$(_bld_trg_arch)) \
1126 $($(target)_USES))
[353]1127$(foreach source, \
[460]1128 $($(target)_SOURCES.$(_bld_trg)) \
1129 $($(target)_SOURCES.$(_bld_trg_arch)) \
[481]1130 $($(target)_SOURCES.$(_bld_trg).$(_bld_trg_arch)) \
[460]1131 $($(target)_SOURCES.$(_bld_trg_cpu)) \
[985]1132 $($(target)_SOURCES.$(_bld_type)) \
[353]1133 $($(target)_SOURCES) \
[1496]1134 , $(evalval def_tools_sdks_target_source))
[985]1135endef # def_tools_sdks_target
[1936]1136$(eval-opt-var def_tools_sdks_target)
[353]1137
[640]1138define def_tools_srcname_target
[1504]1139local _bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
[1496]1140local _bld_trg := $(firstword $($(target)_BLD_TRG) $(bld_trg))
1141local _bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(bld_trg_arch))
1142local _bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(bld_trg_cpu))
[640]1143
1144$(foreach source, $(notdir\
1145 $($(target)_SOURCES.$(_bld_trg)) \
1146 $($(target)_SOURCES.$(_bld_trg_arch)) \
1147 $($(target)_SOURCES.$(_bld_trg).$(_bld_trg_arch)) \
1148 $($(target)_SOURCES.$(_bld_trg_cpu)) \
[985]1149 $($(target)_SOURCES.$(_bld_type)) \
[640]1150 $($(target)_SOURCES) \
[1496]1151 ), $(evalval def_tools_sdks_target_source))
[985]1152endef # def_tools_srcname_target
[1936]1153$(eval-opt-var def_tools_srcname_target)
[640]1154
[1504]1155bld_trg := $(KBUILD_TARGET)
1156bld_trg_arch := $(KBUILD_TARGET_ARCH)
1157bld_trg_cpu := $(KBUILD_TARGET_CPU)
1158$(foreach target, $(_ALL_TARGET_TARGETS), $(evalval def_tools_sdks_target))
[1496]1159$(foreach target, $(_ALL_SRCNAME_TARGETS), $(evalval def_tools_srcname_target))
[72]1160
[1504]1161bld_trg := $(KBUILD_HOST)
1162bld_trg_arch := $(KBUILD_HOST_ARCH)
1163bld_trg_cpu := $(KBUILD_HOST_CPU)
1164$(foreach target, $(_ALL_HOST_TARGETS), $(evalval def_tools_sdks_target))
[460]1165
[1414]1166_TOOLS := $(sort $(_TOOLS))
1167_SDKS := $(sort $(_SDKS))
[460]1168
[1414]1169## Tool load function.
1170# @param loading The tool name
1171define def_tools_load_function
1172ifndef TOOL_$(loading)
[1504]1173 TOOL_$(loading)_KMK_FILE := $(firstword $(foreach path, $(KBUILD_TOOL_PATHS) $(KBUILD_PATH)/tools $(KBUILD_DEFAULT_PATHS), $(wildcard $(path)/$(loading).kmk)))
[1414]1174 ifeq ($(TOOL_$(loading)_KMK_FILE),)
[1504]1175 $(error kBuild: Cannot find include file for the tool '$(loading)'! Searched: $(KBUILD_TOOL_PATHS) $(KBUILD_PATH)/tools $(KBUILD_DEFAULT_PATHS))
[985]1176 endif
[1414]1177 include $(TOOL_$(loading)_KMK_FILE)
1178 ifndef TOOL_$(loading)
1179 $(warning kBuild: TOOL_$(loading) was not defined by $(TOOL_$(loading)_KMK_FILE)!)
[985]1180 endif
[72]1181endif
[985]1182endef # def_tools_include
[460]1183
[1414]1184## SDK load function.
1185# @param loading The tool name
1186define def_sdk_load_function
1187ifndef SDK_$(loading)
[1504]1188 SDK_$(loading)_KMK_FILE := $(firstword $(foreach path, $(KBUILD_SDK_PATHS) $(KBUILD_PATH)/sdks $(KBUILD_DEFAULT_PATHS), $(wildcard $(path)/$(loading).kmk)))
[1414]1189 ifeq ($(SDK_$(loading)_KMK_FILE),)
[1504]1190 $(error kBuild: Cannot find include file for the SDK '$(loading)'! Searched: $(KBUILD_SDK_PATHS) $(KBUILD_PATH)/sdks $(KBUILD_DEFAULT_PATHS))
[985]1191 endif
[1414]1192 include $(SDK_$(loading)_KMK_FILE)
1193 ifndef SDK_$(loading)
1194 $(warning kBuild: SDK_$(loading) was not defined by $(SDK_$(loading)_KMK_FILE)!)
[985]1195 endif
[72]1196endif
[1414]1197endef # def_sdk_load_function
[460]1198
[72]1199
[1414]1200properties :=
1201properties_now_l :=
1202properties_now_r :=
1203properties_deferred := $(PROPS_SINGLE) $(PROPS_DEFERRED)
1204properties_deferred_l := $(PROPS_ACCUMULATE_L)
1205properties_deferred_r := $(PROPS_ACCUMULATE_R)
[380]1206
[2274]1207src_prefix := SDK_
1208load_function := def_sdk_load_function
1209$(foreach trg, $(addprefix SDK_,$(_SDKS)), $(evalval def_inherit))
1210
1211properties_deferred := $(PROPS_SINGLE) $(PROPS_DEFERRED) $(PROPS_TOOLS_ONLY)
[1414]1212src_prefix := TOOL_
1213load_function := def_tools_load_function
[1654]1214$(foreach trg, $(addprefix TOOL_,$(_TOOLS)), $(evalval def_inherit))
[1414]1215
1216# done inheriting.
1217src_prefix :=
1218load_function :=
1219properties :=
1220properties_now_l :=
1221properties_now_r :=
1222properties_deferred :=
1223properties_deferred_l :=
1224properties_deferred_r :=
1225
[1621]1226# No inheriting for the uses, they're just global 'code'.
1227$(foreach loading, $(_USES), $(evalval def_unit_load_function))
[1414]1228
[1621]1229
[988]1230ifdef KBUILD_PROFILE_SELF
[2008]1231 $(evalcall def_profile_self, done tools + sdks + units)
[988]1232endif
[640]1233
[988]1234
[1414]1235
[828]1236#
1237#
1238# Target lists - Pass 1
1239#
1240# This pass is for defining variables that might be referenced in
1241# properties of other targets.
1242#
1243#
1244
1245# Don't do anything for fetch targets (yet).
1246
1247##
1248# Link prolog for Pass 1.
1249#
1250# @param $(target) Normalized target name.
1251# @param $(EXT) EXE,DLL,SYS,LIB.
1252# @param $(EXTPRE) HOST or nothing.
1253# @param $(definst) The default _INST value.
1254# @param $(tool_prefix) LD or AR.
1255# @param $(bld_trg_base_var) TARGET or PLATFORM.
1256define def_pass1_link_common
1257
[1504]1258local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
[1496]1259local bld_trg := $(firstword $($(target)_BLD_TRG) $(BUILD_$(bld_trg_base_var)))
1260local bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(BUILD_$(bld_trg_base_var)_ARCH))
1261local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(BUILD_$(bld_trg_base_var)_CPU))
[828]1262
[1496]1263local tool := $(call _TARGET_TOOL,$(target),$(tool_prefix))
1264local name := $(firstword\
[2433]1265 $($(target)_NAME.$(bld_trg).$(bld_trg_arch).$(bld_type))\
[889]1266 $($(target)_NAME.$(bld_trg).$(bld_trg_arch))\
[2433]1267 $($(target)_NAME.$(bld_trg).$(bld_type))\
[889]1268 $($(target)_NAME.$(bld_trg_arch))\
1269 $($(target)_NAME.$(bld_trg))\
1270 $($(target)_NAME.$(bld_type))\
1271 $($(target)_NAME)\
1272 $(target))
[1496]1273local outbase := $(call TARGET_BASE,$(name),$(target))
[2239]1274$(target)_0_OUTDIR:= $(patsubst %/,%,$(dir $(outbase)))
[2436]1275$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
1276
[2143]1277## @todo fix the fun at the last line (AR != LIB => mess).
1278local suff := $(firstword \
[828]1279 $($(target)_$(EXT)SUFF.$(bld_trg).$(bld_trg_arch))\
1280 $($(target)_$(EXT)SUFF.$(bld_trg))\
1281 $($(target)_$(EXT)SUFF)\
1282 $(TOOL_$(tool)_$(tool_prefix)$(EXT)SUFF.$(bld_trg).$(bld_trg_arch))\
1283 $(TOOL_$(tool)_$(tool_prefix)$(EXT)SUFF.$(bld_trg))\
1284 $(TOOL_$(tool)_$(tool_prefix)$(EXT)SUFF)\
[2143]1285 $(if $(eq $(tool_prefix),AR),$(SUFF_LIB),$($(EXTPRE)SUFF_$(EXT))) )
[1496]1286local out := $(outbase)$(suff)
[828]1287
[2475]1288# Object directory target variable.
[2238]1289$(target)_1_TARGET := $(out)
[2436]1290$(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
[828]1291
[2475]1292# Staging and install directory target variables.
1293local insttype := $(firstword \
1294 $($(target)_INSTTYPE) \
1295 $($(target)_INSTTYPE.$(bld_trg)) \
1296 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch)) \
1297 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
1298 $($(target)_INSTTYPE.$(bld_trg_arch)) \
1299 $($(target)_INSTTYPE.$(bld_trg_cpu)) \
1300 $($(target)_INSTTYPE.$(bld_type)) \
1301 )
1302ifeq ($(insttype),)
1303 ifneq ($(firstword \
1304 $($(target)_NOINST) \
1305 $($(target)_NOINST.$(bld_trg)) \
1306 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch)) \
1307 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
1308 $($(target)_NOINST.$(bld_trg_arch)) \
1309 $($(target)_NOINST.$(bld_trg_cpu)) \
1310 $($(target)_NOINST.$(bld_type)) ),)
1311 local insttype := none
[1697]1312 else
[2475]1313 local insttype := both
[1697]1314 endif
[2475]1315endif
1316ifn1of ($(insttype), none both stage)
1317 $(error kBuild: Unknown value '$(insttype)' for '$(target)_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
1318endif
1319$(target)_1_INSTTYPE := $(insttype)
[828]1320
[2475]1321if1of ($(insttype), stage both)
[2517]1322 local stage := $(strip $(firstdefined \
[2488]1323 $(target)_STAGE.$(bld_trg).$(bld_trg_arch).$(bld_type) \
1324 $(target)_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
1325 $(target)_STAGE.$(bld_trg).$(bld_trg_arch) \
1326 $(target)_INST.$(bld_trg).$(bld_trg_arch) \
1327 $(target)_STAGE.$(bld_trg).$(bld_type) \
1328 $(target)_INST.$(bld_trg).$(bld_type) \
1329 $(target)_STAGE.$(bld_trg_arch) \
1330 $(target)_INST.$(bld_trg_arch) \
1331 $(target)_STAGE.$(bld_trg) \
1332 $(target)_INST.$(bld_trg) \
1333 $(target)_STAGE.$(bld_type) \
1334 $(target)_INST.$(bld_type) \
1335 $(target)_STAGE \
1336 $(target)_INST \
[2517]1337 definst \
1338 ,value))
[2475]1339 $(target)_1_STAGE := $(stage)
[2511]1340 if "$(substr $(stage),-1,1)" == "/" # Multicast support requires addprefix/suffix.
[2510]1341 $(target)_1_STAGE_TARGET := $(addprefix $(PATH_STAGE)/,$(addsuffix $(notdir $(out)),$(stage)))
[2511]1342 else if "$(stage)" == ""
1343 $(target)_1_STAGE_TARGET := $(PATH_STAGE)/$(notdir $(out))
[2510]1344 else
1345 $(target)_1_STAGE_TARGET := $(addprefix $(PATH_STAGE)/,$(stage))
1346 endif
[2475]1347else
1348 $(target)_1_STAGE :=
1349 $(target)_1_STAGE_TARGET :=
1350endif
1351INSTARGET_$(target) := $($(target)_1_STAGE_TARGET)
[828]1352
[2475]1353if1of ($(insttype), both)
[2517]1354 local inst := $(strip $(firstdefined \
[2488]1355 $(target)_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
1356 $(target)_INST.$(bld_trg).$(bld_trg_arch) \
1357 $(target)_INST.$(bld_trg).$(bld_type) \
1358 $(target)_INST.$(bld_trg_arch) \
1359 $(target)_INST.$(bld_trg) \
1360 $(target)_INST.$(bld_type) \
1361 $(target)_INST \
[2517]1362 definst \
1363 ,value))
[2475]1364 $(target)_1_INST := $(inst)
[2511]1365 if "$(substr $(inst),-1,1)" == "/" # Multicast support requires addprefix/suffix.
[2510]1366 $(target)_1_INST_TARGET := $(addprefix $(PATH_INS)/,$(addsuffix $(notdir $(out)),$(inst)))
[2511]1367 else if "$(inst)" == ""
1368 $(target)_1_INST_TARGET := $(PATH_INS)/$(notdir $(out))
[2510]1369 else
1370 $(target)_1_INST_TARGET := $(addprefix $(PATH_INS)/,$(inst))
1371 endif
[2475]1372else
1373 $(target)_1_INST :=
1374 $(target)_1_INST_TARGET :=
1375endif
1376
1377endef # def_pass1_link_common
[1936]1378$(eval-opt-var def_pass1_link_common)
[828]1379
1380
1381#
1382# BLDPROGS (Pass 1)
1383#
1384define def_pass1_bldprog
1385# set NOINST if not forced installation before doing the usual stuff.
1386ifndef $(target)_INST
[2475]1387$(target)_INSTTYPE := none
[828]1388endif
[1496]1389$(evalval def_pass1_link_common)
[828]1390endef
1391
1392EXT := EXE
1393EXTPRE := HOST
[2475]1394definst := $(INST_BIN)
[828]1395tool_prefix := LD
1396bld_trg_base_var := PLATFORM
[1648]1397$(foreach target, $(_ALL_BLDPROGS), \
[1496]1398 $(evalval def_pass1_bldprog))
[828]1399
1400
1401#
1402# LIBRARIES (Pass 1)
1403#
1404EXT := LIB
1405EXTPRE :=
[2475]1406definst := $(INST_LIB)
[828]1407tool_prefix := AR
1408bld_trg_base_var := TARGET
[1648]1409$(foreach target, $(_ALL_LIBRARIES), \
[1496]1410 $(evalval def_pass1_link_common))
[828]1411
1412
1413#
1414# DLLS (Pass 1)
1415#
1416EXT := DLL
1417EXTPRE :=
[2475]1418definst := $(INST_DLL)
[828]1419tool_prefix := LD
1420bld_trg_base_var := TARGET
[1648]1421$(foreach target, $(_ALL_DLLS), \
[1496]1422 $(evalval def_pass1_link_common))
[828]1423
1424
1425#
1426# IMPORT LIBRARIES (Pass 1)
1427#
1428# - On OS/2 and windows these are libraries.
1429# - On other platforms they are fake DLLs.
1430#
[1504]1431if1of ($(KBUILD_TARGET), nt os2 win win64 win32)
[828]1432 EXT := LIB
1433 EXTPRE :=
[2475]1434 definst := $(INST_LIB)
[828]1435 tool_prefix := AR
1436 bld_trg_base_var := TARGET
[1648]1437 $(foreach target, $(_ALL_IMPORT_LIBS), \
[1496]1438 $(evalval def_pass1_link_common))
[828]1439else
1440 EXT := DLL
1441 EXTPRE :=
[2475]1442 definst := $(INST_DLL)
[828]1443 tool_prefix := LD
1444 bld_trg_base_var := TARGET
[1648]1445 $(foreach target, $(_ALL_IMPORT_LIBS), \
[1496]1446 $(evalval def_pass1_link_common))
[828]1447endif
1448
1449
1450#
1451# PROGRAMS (Pass 1)
1452#
1453EXT := EXE
1454EXTPRE :=
[2475]1455definst := $(INST_BIN)
[828]1456tool_prefix := LD
1457bld_trg_base_var := TARGET
[1648]1458$(foreach target, $(_ALL_PROGRAMS), \
[1496]1459 $(evalval def_pass1_link_common))
[828]1460
1461
1462#
1463# SYSMODS (Pass 1)
1464#
1465EXT := SYS
1466EXTPRE :=
[2475]1467definst := $(INST_SYS)
[828]1468tool_prefix := LD
1469bld_trg_base_var := TARGET
[1648]1470$(foreach target, $(_ALL_SYSMODS), \
[1496]1471 $(evalval def_pass1_link_common))
[828]1472
1473
1474#
[2084]1475# MISCBINS (Pass 1)
1476#
1477EXT := BIN
1478EXTPRE :=
[2475]1479definst := $(INST_BIN)
[2084]1480tool_prefix := LD
1481bld_trg_base_var := TARGET
1482$(foreach target, $(_ALL_MISCBINS), \
1483 $(evalval def_pass1_link_common))
1484
1485
1486#
[828]1487# INSTALLS (Pass 1)
1488# Note! INSTARGET_* for INSTALLS aren't available until later.
1489#
1490define def_pass1_install
[2241]1491local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
1492local bld_trg := $(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))
1493local bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(KBUILD_TARGET_ARCH))
1494local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(KBUILD_TARGET_CPU))
[2475]1495# _1_TARGET
[2241]1496$(target)_1_TARGET := $(PATH_TARGET)/$(target).ins
[2436]1497$(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
[2238]1498
[2475]1499# Determine and set 1_INSTTYPE.
1500local insttype := $(firstword \
1501 $($(target)_INSTTYPE) \
1502 $($(target)_INSTTYPE.$(bld_trg)) \
1503 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch)) \
1504 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
1505 $($(target)_INSTTYPE.$(bld_trg_arch)) \
1506 $($(target)_INSTTYPE.$(bld_trg_cpu)) \
1507 $($(target)_INSTTYPE.$(bld_type)) \
1508 )
1509ifeq ($(insttype),)
1510 ifneq ($(firstword \
1511 $($(target)_NOINST) \
1512 $($(target)_NOINST.$(bld_trg)) \
1513 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch)) \
1514 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
1515 $($(target)_NOINST.$(bld_trg_arch)) \
1516 $($(target)_NOINST.$(bld_trg_cpu)) \
1517 $($(target)_NOINST.$(bld_type)) ),)
1518 local insttype := none
1519 else
1520 local insttype := both
1521 endif
1522endif
1523ifn1of ($(insttype), none both stage)
1524 $(error kBuild: Unknown value '$(insttype)' for '$(target)_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
1525endif
1526$(target)_1_INSTTYPE := $(insttype)
1527
1528# Determine the actual INST and STAGE sub-dirs to use for this target.
1529if1of ($(insttype), stage both)
[2517]1530 local stage := $(strip $(firstdefined \
[2488]1531 $(target)_STAGE.$(bld_trg).$(bld_trg_arch).$(bld_type) \
1532 $(target)_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
1533 $(target)_STAGE.$(bld_trg).$(bld_trg_arch) \
1534 $(target)_INST.$(bld_trg).$(bld_trg_arch) \
1535 $(target)_STAGE.$(bld_trg).$(bld_type) \
1536 $(target)_INST.$(bld_trg).$(bld_type) \
1537 $(target)_STAGE.$(bld_trg_arch) \
1538 $(target)_INST.$(bld_trg_arch) \
1539 $(target)_STAGE.$(bld_trg) \
1540 $(target)_INST.$(bld_trg) \
1541 $(target)_STAGE.$(bld_type) \
1542 $(target)_INST.$(bld_type) \
1543 $(target)_STAGE \
1544 $(target)_INST \
[2517]1545 definst \
1546 ,value))
[2488]1547 if $(words $(stage)) > 1
1548 $(warning kBuild: The STAGE/INST property of install '$(target)' specifies multiple location, that is not supported.)
1549 local stage := $(word 1, $(stage))
1550 endif
[2475]1551 $(target)_1_STAGE := $(stage)
1552else
1553 $(target)_1_STAGE = $(error _1_STAGE not used)
1554endif
1555
1556if1of ($(insttype), both)
[2517]1557 local inst := $(strip $(firstdefined \
[2488]1558 $(target)_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
1559 $(target)_INST.$(bld_trg).$(bld_trg_arch) \
1560 $(target)_INST.$(bld_trg).$(bld_type) \
1561 $(target)_INST.$(bld_trg_arch) \
1562 $(target)_INST.$(bld_trg) \
1563 $(target)_INST.$(bld_type) \
1564 $(target)_INST \
[2517]1565 definst \
1566 ,value))
[2488]1567 if $(words $(inst)) > 1
1568 $(warning kBuild: The INST property of install '$(target)' specifies multiple location, that is not supported.)
1569 local inst := $(word 1, $(inst))
1570 endif
[2517]1571 ifneq ($(root $(stage)),)
[2518]1572 $(error kBuild: The effective INST property of install '$(target)' should not start with a root specification)
[2517]1573 endif
[2475]1574 $(target)_1_INST := $(inst)
1575else
1576 $(target)_1_INST = $(error _1_INST not used)
1577endif
1578
1579# Block properties that we put off setting until pass 2 for INSTALLS.
1580$(target)_1_STAGE_TARGET = $(error The '_1_STAGE_TARGET' property is not present on install targets. Use '_2_STAGE_TARGETS' instead (set by pass 2!).)
1581$(target)_1_INST_TARGET = $(error The '_1_INST_TARGET' property is not present on install targets. Use '_2_INST_TARGETS' instead (set by pass 2!).)
1582INSTARGET_$(target) = $(error The 'INSTARGET_' is deprecated and besides, it is being accessed to early. Consider '_2_STAGE_TARGETS' or '_2_INST_TARGETS'.)
1583
[828]1584# INSTARGET_ later.
[1754]1585# PATH_*
[2241]1586local outbase := $(call TARGET_BASE,$(target),$(target))
1587$(target)_0_OUTDIR := $(patsubst %/,%,$(dir $(outbase)))
[2436]1588$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
[1754]1589endef # def_pass1_install
[1936]1590$(eval-opt-var def_pass1_install)
[2475]1591
[1648]1592$(foreach target, $(_ALL_INSTALLS), \
[1496]1593 $(evalval def_pass1_install))
[828]1594
[988]1595ifdef KBUILD_PROFILE_SELF
[2008]1596 $(evalcall def_profile_self, done pass 1)
[988]1597endif
[828]1598
1599
1600
[988]1601
[828]1602#
1603#
1604# Target lists - Pass 2
1605#
1606#
1607
1608
[688]1609## @page pg_fetches Fetching Tools, Sources and Similar.
[73]1610#
[688]1611# The targets listed in the the FETCHES target list have the following attributes:
[2265]1612# SOURCES
1613# INST
1614# FETCHTOOL
1615# FETCHFLAGS
1616# FETCHDIR
1617# UNPACKTOOL
1618# UNPACKFLAGS
[640]1619#
[719]1620# As usual the target name is an alias for 'creating' the target. Other
[688]1621# aliases are:
[2265]1622# pass_fetches
1623# fetch
1624# unfetch
1625# download
1626# unpack
[688]1627#
1628# @remark
1629#
1630# This is a little bit complex because we must guarantee that if a source file
[719]1631# changes only sligtly we must refetch it and to a proper unpacking of it. It
1632# is also a desire that fetched archives and unpacked files can be deleted to
[688]1633# save space.
1634#
[719]1635# Thus, we must be able to cleanup what we've unpacked should any of the
[688]1636# sources be removed. We do this by maintaining a file listing the files
1637# and directories that was unpacked. This operation is named 'unfetch'.
1638#
[719]1639# We make use of the SIZE and MD5 attributes for each of the sources to
[689]1640# create a digest that is stored in the primary target file. Subsequent
1641# runswill compare their digest with it to decide if a refetch is required.
[719]1642# When a refetch is found necessary, an 'unfetch' is performed first to
[689]1643# clean out old files and directores. Note even changes in source order
[719]1644# will cause a refetch due to the way the digest is constructed and
[689]1645# evaluated.
[688]1646#
1647# By not depending directly on the archives (nor on any unpacked files)
1648# but on a goal made up from the archive name, size and md5, we allow
1649# the user to delete the archives. Naturally, this means we'll have to
1650# check and fetch missing archives before attempting to unpack them.
[689]1651#
1652# @remark
1653#
[719]1654# This feature will *NOT* work correctly with vanilla GNU make becuase
[689]1655# it makes use of includedep to avoid too many unnecessary files.
[719]1656#
[689]1657# @todo
[2265]1658# 0. Move the fetches out into a unit.
[1255]1659# 1. Download corruption / continuation.
1660# 2. It's quite possible that there is one too many indirect dependency now...
[688]1661#
1662
[640]1663## generates the fetch rule
1664define def_fetch_src_fetch_rule
1665# Indirect goal for downloading something.
[682]1666.PRECIOUS: $(out)
[2234]1667$(out) + $($(target)_$(srcname)_FETCH_2_OUTPUT) +| $($(target)_$(srcname)_FETCH_2_OUTPUT_MAYBE) : \
1668 | $($(target)_$(srcname)_FETCH_2_DEPORD)
[1496]1669 %$$(call MSG_FETCH_DL,$(target),$(source),$(out))
[696]1670 @## @todo do fancy stuff like download continuation.
[1599]1671 $$(QUIET)$$(RM) -f -- $(out)
[2234]1672 $(cmds)
[1255]1673 $$(QUIET)$(if $(md5),$$(MD5SUM_EXT) -b -C $(md5) $(out))
[640]1674
1675
[682]1676
[640]1677# Intermediate goal for making sure the md5 and size matches. it will (re) fetch the archive if necessary.
[2234]1678$(out).checked_$(md5)_$(size): $($(target)_$(srcname)_FETCH_2_DEPEND) | $($(target)_$(srcname)_FETCH_2_DEPORD)
[1496]1679 %$$(call MSG_FETCH_CHK,$(target),$(source),$(out))
[1599]1680 $$(QUIET)$$(RM) -f -- $$@
[688]1681 @# (re)fetch the file if it doesn't exist or if it doesn't matches the md5.
[696]1682 @## @todo do fancy stuff like download continuation.
[1255]1683 $$(QUIET)( test -f $(out) && $(if $(md5),$$(MD5SUM_EXT) -b -C $(md5) $(out), true) ) \
[696]1684 || ( $$(RM_EXT) -f $(out) \
1685 && $$(MAKE) $(out) -f $(MAKEFILE) --no-print-directory )
1686 $$(QUIET2)$$(APPEND) $$@
[640]1687
[719]1688_TARGET_$(target)_FETCHED += $(out) $(out).checked_$(md5)_$(size)
[640]1689
[688]1690# Just a little precaution.
1691.NOTPARALLEL: $(out) $(out).checked_$(md5)_$(size)
1692
[1936]1693endef # def_fetch_src_fetch_rule
1694$(eval-opt-var def_fetch_src_fetch_rule)
[640]1695
1696## generates the unpack rule
1697define def_fetch_src_unpack_rule
1698# This is the unpack rule. it has an order-only dependency on the download check.
[2234]1699$(out) + $($(target)_$(srcname)_UNPACK_2_OUTPUT) +| $($(target)_$(srcname)_UNPACK_2_OUTPUT_MAYBE) : \
1700 $($(target)_$(srcname)_UNPACK_2_DEPEND) \
1701 | $($(target)_$(srcname)_UNPACK_2_DEPORD) \
[2094]1702 $(archive).checked_$(md5)_$(size) \
1703 $(dir $(out))
[1496]1704 %$$(call MSG_FETCH_UP,$(target),$(archive),$(inst))
[1599]1705 $$(QUIET)$$(RM) -f -- $(out)
[2094]1706 $$(QUIET)$$(MKDIR) -p -- $(dir $(out))
1707 @# if the source archive doesn't exist fetch it (may have been deleted to save space).
[696]1708 $$(QUIET)test -f $(archive) \
1709 || ( $$(RM_EXT) -f $(archive).checked_$(md5)_$(size) \
1710 && $$(MAKE) $(archive).checked_$(md5)_$(size) -f $(MAKEFILE) --no-print-directory )
[2234]1711 $(cmds)
[696]1712 $$(QUIET2)$$(APPEND) $(out) $(notdir $(archive).checked_$(md5)_$(size))
1713 $$(QUIET2)$$(APPEND) $(out) $(notdir $(out))
[640]1714
1715$(eval _TARGET_$(target)_UNPACKED += $(out))
1716_TARGET_$(target)_DIGEST := $(_TARGET_$(target)_DIGEST)-$(srcname)_$(md5)_$(size)
1717
[688]1718.NOTPARALLEL: $(out)
1719
[1936]1720endef # def_fetch_src_unpack_rule
1721$(eval-opt-var def_fetch_src_unpack_rule)
[640]1722
1723## Processes a fetch source
1724#
1725define def_fetch_src
1726#$ (warning dbg: def_fetch_src: source='$(source)' target='$(target)')
1727
1728# common
[1496]1729local srcname := $(notdir $(source))
1730local inst := $(firstword \
[640]1731 $($(target)_$(source)_INST)\
1732 $($(target)_$(srcname)_INST)\
1733 $($(source)_INST)\
1734 $($(srcname)_INST)\
1735 $($(target)_INST)\
1736)
1737ifneq ($(patsubst %/,ok,$(inst)),ok)
1738$(error kBuild: Bad or missing INST property for source '$(source)' in target '$(target)': $(inst))
1739endif
[2475]1740## @todo Install-revamp: FIXME
[640]1741INSTARGET_$(target)_$(srcname) := $(inst)
[1496]1742local fetchdir := $(firstword \
[640]1743 $($(target)_$(source)_FETCHDIR)\
1744 $($(target)_$(srcname)_FETCHDIR)\
1745 $($(source)_FETCHDIR)\
1746 $($(srcname)_FETCHDIR)\
1747 $($(target)_FETCHDIR)\
1748 $(FETCHDIR)\
1749 $(PATH_TARGET)\
1750)
[1496]1751local deps := \
[640]1752 $($(target)_$(source)_DEPS)\
1753 $($(target)_$(srcname)_DEPS)\
1754 $($(source)_DEPS)\
1755 $($(srcname)_DEPS)\
1756 $($(target)_DEPS)
[1496]1757local orderdeps := \
[827]1758 $($(target)_$(source)_ORDERDEPS)\
1759 $($(target)_$(srcname)_ORDERDEPS)\
1760 $($(source)_ORDERDEPS)\
1761 $($(srcname)_ORDERDEPS)\
1762 $($(target)_ORDERDEPS)
[1496]1763local md5 := $(firstword \
[640]1764 $($(target)_$(source)_MD5)\
1765 $($(target)_$(srcname)_MD5)\
1766 $($(source)_MD5)\
1767 $($(srcname)_MD5)\
1768 $($(target)_MD5)\
1769)
[1496]1770local size := $(firstword \
[640]1771 $($(target)_$(source)_SIZE)\
1772 $($(target)_$(srcname)_SIZE)\
1773 $($(source)_SIZE)\
1774 $($(srcname)_SIZE)\
1775 $($(target)_SIZE)\
1776)
[1613]1777clean_files += \
1778 $($(target)_$(source)_CLEAN)\
1779 $($(target)_$(srcname)_CLEAN)\
1780 $($(source)_CLEAN)\
1781 $($(srcname)_CLEAN)
[1496]1782local dep := # not legal for fetch and unpack tools
[640]1783
1784
1785#
1786# The fetching.
1787#
[1496]1788local out := $(fetchdir)/$(srcname)
1789local archive := $(out)
[2238]1790$(target)_$(srcname)_1_TARGET = $(TARGET_$(target)_$(srcname))
[2436]1791$(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target)_$(srcname),$(TARGET_$(target)_$(srcname)),TARGET_$(target)_$(srcname))
1792
[1496]1793local dirdep := $(call DIRDEP,$(fetchdir))
1794local tool := $(firstword \
[640]1795 $($(target)_$(source)_FETCHTOOL)\
1796 $($(target)_$(srcname)_FETCHTOOL)\
1797 $($(target)_$(source)_TOOL)\
1798 $($(target)_$(srcname)_TOOL)\
1799 $($(source)_FETCHTOOL)\
1800 $($(srcname)_FETCHTOOL)\
1801 $($(source)_TOOL)\
1802 $($(srcname)_TOOL)\
1803 $($(target)_FETCHTOOL)\
1804 $($(target)_TOOL)\
1805 )
[1496]1806local flags :=\
[640]1807 $(TOOL_$(tool)_FETCHFLAGS)\
1808 $(FETCHFLAGS)\
1809 $($(target)_FETCHFLAGS)\
1810 $($(srcname)_FETCHFLAGS)\
1811 $($(source)_FETCHFLAGS)\
1812 $($(target)_$(srcname)_FETCHFLAGS)\
1813 $($(target)_$(source)_FETCHFLAGS)
1814
1815#$ (warning dbg: target=$(target) source=$(source) $(srcname)=$(srcname) tool=$(tool) out=$(out) flags=$(flags) dirdep=$(dirdep) fetchdir=$(fetchdir) md5=$(md5) size=$(size))
1816
1817ifndef TOOL_$(tool)_FETCH_CMDS
1818$(warning kBuild: tools: \
1819 1 $($(target)_$(source)_FETCHTOOL)\
1820 2 $($(target)_$(srcname)_FETCHTOOL)\
1821 3 $($(target)_$(source)_TOOL)\
1822 4 $($(target)_$(srcname)_TOOL)\
1823 5 $($(source)_FETCHTOOL)\
1824 6 $($(srcname)_FETCHTOOL)\
1825 7 $($(source)_TOOL)\
1826 8 $($(srcname)_TOOL)\
1827 9 $($(target)_FETCHTOOL)\
1828 10 $($(target)_TOOL) )
1829$(error kBuild: TOOL_$(tool)_FETCH_CMDS is not defined. source=$(source) target=$(target) )
1830endif
1831
1832# call the tool
[2234]1833local cmds := $(TOOL_$(tool)_FETCH_CMDS)
1834$(target)_$(srcname)_FETCH_2_OUTPUT := $(TOOL_$(tool)_FETCH_OUTPUT)
1835$(target)_$(srcname)_FETCH_2_OUTPUT_MAYBE := $(TOOL_$(tool)_FETCH_OUTPUT_MAYBE)
1836$(target)_$(srcname)_FETCH_2_DEPEND := $(TOOL_$(tool)_FETCH_DEPEND) $(deps)
1837$(target)_$(srcname)_FETCH_2_DEPORD := $(TOOL_$(tool)_FETCH_DEPORD) $(dirdep) $(orderdeps)
[640]1838
1839# generate the fetch rule.
1840$(eval $(def_fetch_src_fetch_rule))
1841
1842
1843#
1844# The unpacking / installing.
1845#
[1496]1846local out := $(inst)_kBuild_$(target)_$(srcname)_unpacked.lst
1847local dirdep := $(call DIRDEP,$(inst))
1848local tool := $(firstword \
[640]1849 $($(target)_$(source)_UNPACKTOOL)\
1850 $($(target)_$(srcname)_UNPACKTOOL)\
1851 $($(target)_$(source)_TOOL)\
1852 $($(target)_$(srcname)_TOOL)\
1853 $($(source)_UNPACKTOOL)\
1854 $($(srcname)_UNPACKTOOL)\
1855 $($(source)_TOOL)\
1856 $($(srcname)_TOOL)\
1857 $($(target)_UNPACKTOOL)\
1858 $($(target)_TOOL) \
1859 )
1860ifeq ($(tool),)
[1496]1861local tool := $(toupper $(subst .,,$(suffix $(subst tar.,TAR,$(srcname)))))
1862$(evalval def_tools_include)
[640]1863endif
[1496]1864local flags :=\
[640]1865 $(TOOL_$(tool)_UNPACKFLAGS)\
1866 $(UNPACKFLAGS)\
1867 $($(target)_UNPACKFLAGS)\
1868 $($(srcname)_UNPACKFLAGS)\
1869 $($(source)_UNPACKFLAGS)\
1870 $($(target)_$(srcname)_UNPACKFLAGS)\
1871 $($(target)_$(source)_UNPACKFLAGS)
1872
1873#$ (warning dbg: target=$(target) source=$(source) $(srcname)=$(srcname) tool=$(tool) out=$(out) flags=$(flags) dirdep=$(dirdep) inst=$(inst) md5=$(md5) size=$(size))
1874ifndef TOOL_$(tool)_UNPACK_CMDS
1875$(warning kBuild: tools: \
1876 1 $($(target)_$(source)_UNPACKTOOL)\
1877 2 $($(target)_$(srcname)_UNPACKTOOL)\
1878 3 $($(target)_$(source)_TOOL)\
1879 4 $($(target)_$(srcname)_TOOL)\
1880 5 $($(source)_UNPACKTOOL)\
1881 6 $($(srcname)_UNPACKTOOL)\
1882 7 $($(source)_TOOL)\
1883 8 $($(srcname)_TOOL)\
1884 9 $($(target)_UNPACKTOOL)\
1885 10 $($(target)_TOOL) \
1886 11 $(toupper $(subst tar.,TAR,$(ext $(srcname)))) \
1887 )
1888$(error kBuild: TOOL_$(tool)_UNPACK_CMDS is not defined. source=$(source) target=$(target) )
1889endif
1890
1891# call the tool
[2234]1892local cmds := $(TOOL_$(tool)_UNPACK_CMDS)
1893$(target)_$(srcname)_UNPACK_2_OUTPUT := $(TOOL_$(tool)_UNPACK_OUTPUT)
1894$(target)_$(srcname)_UNPACK_2_OUTPUT_MAYBE := $(TOOL_$(tool)_UNPACK_OUTPUT_MAYBE)
1895$(target)_$(srcname)_UNPACK_2_DEPEND := $(TOOL_$(tool)_UNPACK_DEPEND) $(deps)
1896$(target)_$(srcname)_UNPACK_2_DEPORD := $(TOOL_$(tool)_UNPACK_DEPORD) $(dirdep) $(orderdeps)
[640]1897
1898# generate the fetch rule.
1899$(eval $(def_fetch_src_unpack_rule))
1900
1901_DIRS += $(inst) $(fetchdir)
1902
[1936]1903endef # def_fetch_src
1904$(eval-opt-var def_fetch_src)
[640]1905
1906
1907##
1908# Define the target level rules for a fetch.
1909# @param target
1910# @param out
1911# @param inst
[688]1912# @param _TARGET_$(target)_UNPACKED
1913# @param _TARGET_$(target)_DIGEST
[640]1914# @param bld_trg
1915# @param bld_trg_arch
1916define def_fetch_rules
1917
[689]1918$(out).lst: $(_TARGET_$(target)_UNPACKED) | $(call DIRDEP,$(inst))
[1496]1919 %$$(call MSG_FETCH_OK,$(target))
[1599]1920 $$(QUIET)$$(RM) -f -- $$@ $$@.tmp
[1311]1921 $$(QUIET2)$$(APPEND) $$@.tmp '$(notdir $(out))'
[696]1922 $$(QUIET)$(if $(_TARGET_$(target)_UNPACKED),$$(CAT_EXT) $(_TARGET_$(target)_UNPACKED) >> $$@.tmp)
[1599]1923 $$(QUIET)$$(MV) -f -- $$@.tmp $$@
[640]1924
1925$(out)_unfetched:
[1496]1926 %$$(call MSG_UNFETCH,$(target))
[1599]1927 $$(QUIET)$$(RM) -f -- $$(addprefix $(inst),$$(shell $$(CAT_EXT) $(out).lst 2> /dev/null | $$(SED) -e '/\/$$$$/d'))
1928 $$(QUIET)$$(RMDIR) -p --ignore-fail-on-non-empty --ignore-fail-on-not-exist -- $$(dir $$@) \
[689]1929 $$(addprefix $(inst),$$(sort $$(dir $$(shell $$(CAT_EXT) $(out).lst 2> /dev/null))))
[1599]1930 $$(QUIET)$$(RM) -f -- $(out).lst $(out)
1931 $$(QUIET)$$(RMDIR) -p --ignore-fail-on-non-empty --ignore-fail-on-not-exist -- $$(dir $$@)
[640]1932
[689]1933$(out): $(comp-vars _TARGET_$(target)_DIGEST_PREV,_TARGET_$(target)_DIGEST,FORCE) | $(call DIRDEP,$(inst))
[1599]1934 $$(QUIET)$$(RM) -f -- $$@
[2095]1935 %$$(if $$(_TARGET_$(target)_DIGEST),$$(if $$(eq $$(file-size $(out).lst),-1)\
[776]1936 ,$$(call MSG_REFETCH,$(target)),$$(call MSG_FETCH,$(target))),$$(call MSG_UNFETCH,$(target)))
[2094]1937 $$(QUIET)$(TEST_EXT) -f $(out).lst -- $$(MAKE) -f $(MAKEFILE) --no-print-directory $(out)_unfetched
[1599]1938 $$(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]1939 $$(QUIET2)$$(if $$(_TARGET_$(target)_DIGEST),$$(APPEND) $$@ "_TARGET_$(target)_DIGEST_PREV := $(_TARGET_$(target)_DIGEST)")
[760]1940
[689]1941.NOTPARALLEL: $(out).lst $(out)_unfetched $(out)
[688]1942
[640]1943endef
1944
1945
1946##
1947# Deal with one fetch target.
1948# @param target
1949# @param bld_trg
1950# @param bld_trg_arch
1951define def_fetch
1952# common
[2475]1953## @todo Install-revamp: FIXME
[640]1954INSTARGET_$(target) := $($(target)_INST)
1955ifneq ($(patsubst %/,ok,$(INSTARGET_$(target))),ok)
[679]1956$(error kBuild: Bad or missing INST property for target '$(target)'. \
1957 $(target)_INST='$($(target)_INST)' ($(origin $(target)_INST)))
[640]1958endif
1959_TARGET_$(target)_FETCHED :=
1960_TARGET_$(target)_UNPACKED :=
1961_TARGET_$(target)_DIGEST :=
[1614]1962local clean_files := $($(target)_CLEAN) $($(target)_CLEAN.$(bld_trg)) $($(target)_CLEAN.$(bld_trg).$(bld_trg_arch)) $($(target)_CLEAN.$(bld_trg_arch)) $($(target)_CLEAN.$(KBUILD_TYPE))
[640]1963
1964# The 'sources'.
[1614]1965#$ (warning dbg fetch: target=$(target) sources=$($(target)_SOURCES) $($(target)_SOURCES.$(KBUILD_TYPE)) $($(target)_SOURCES.$(KBUILD_TARGET)) $($(target)_SOURCES.$(bld_trg_arch)) $($(target)_SOURCES.$(KBUILD_TARGET).$(bld_trg_arch)))
1966$(foreach source,$($(target)_SOURCES) $($(target)_SOURCES.$(KBUILD_TYPE)) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_trg_arch)) $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)),\
[1496]1967 $(evalval def_fetch_src))
[640]1968
1969# The target.
[1496]1970local inst := $(INSTARGET_$(target))
1971local out := $(inst)_kBuild_fetch_$(target)
[640]1972
[689]1973$(eval includedep $(out))
[690]1974
[640]1975$(eval $(def_fetch_rules))
1976
[690]1977# Define the aliases here (doesn't work if defined in def_fetch_rules, just like includedep).
[749]1978$(target): $(out)
1979$(target)_unfetch: $(out)_unfetched
[690]1980
[689]1981_FETCHES += $(out)
[640]1982_DOWNLOADS += $(_TARGET_$(target)_FETCHED)
1983_UNPACKS += $(_TARGET_$(target)_UNPACKED)
1984_UNFETCHES += $(out)_unfetched
1985_DIRS += $(inst)
[1613]1986_CLEAN_FILES += $(clean_files)
[640]1987
1988endef
[1936]1989$(eval-opt-var def_fetch)
[640]1990
1991# Walk the FETCH target lists.
[1504]1992bld_trg := $(KBUILD_TARGET)
1993bld_trg_arch := $(KBUILD_TARGET_ARCH)
[1648]1994$(foreach target, $(_ALL_FETCHES), \
[1613]1995 $(evalvalctx def_fetch))
[640]1996
1997# some aliases.
1998download: $(_DOWNLOADS)
[688]1999unpack: $(_UNPACKS)
2000fetch: $(_FETCHES)
2001unfetch: $(_UNFETCHES)
[640]2002
[988]2003ifdef KBUILD_PROFILE_SELF
[2008]2004 $(evalcall def_profile_self, done fetching targets)
[988]2005endif
[640]2006
2007
[988]2008
[640]2009##
2010## Patching.
2011##
2012##
[688]2013#define def_patch_src
[640]2014#
2015#endef
2016#
2017#
2018## Deal with one patch target.
2019#define def_patch
2020#
[1504]2021#$(foreach source,$($(target)_SOURCES) $($(target)_SOURCES.$(KBUILD_TYPE)) $($(target)_SOURCES.$(KBUILD_TARGET)) $($(target)_SOURCES.$(KBUILD_TARGET_ARCH)) $($(target)_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)),\
[1496]2022# $(evalval def_patch_src))
[640]2023#
[719]2024#_PATCHES +=
[640]2025#endef
2026#
[1648]2027#$(foreach target, $(_ALL_PATCHES), \
[1496]2028# $(evalval def_patch))
[640]2029#
2030
2031
2032#
[73]2033# Object processing.
2034#
[72]2035
[380]2036## wrapper the compile command dependency check.
2037ifndef NO_COMPILE_CMDS_DEPS
[2026]2038 if1of ($(KMK_FEATURES),dot-must-make)
2039 _DEP_COMPILE_CMDS =
2040 # for debugging: $$(warning MUST_MAKE=$$$$(comp-cmds-ex $$$$($(target)_$(subst :,_,$(source))_CMDS_PREV_), $$$$(commands $$@)) -> $$(comp-cmds-ex $$($(target)_$(subst :,_,$(source))_CMDS_PREV_),$$(commands $$@),FORCE))
2041 else
2042 _DEP_COMPILE_CMDS = $$(comp-cmds-ex $$($(target)_$(subst :,_,$(source))_CMDS_PREV_),$$(commands $(obj)),FORCE)
2043 endif
[380]2044else
[730]2045 _DEP_COMPILE_CMDS =
[380]2046endif
2047
[2026]2048
[749]2049## Generates the rules for building a specific object, and the aliases
[380]2050# for building a source file.
[353]2051# @param $(obj) The object file.
[380]2052define def_target_source_rule
[2026]2053ifndef NO_COMPILE_CMDS_DEPS
2054$(obj): .MUST_MAKE = $$(comp-cmds-ex $$($(target)_$(subst :,_,$(source))_CMDS_PREV_),$$(commands $$@),FORCE)
2055endif
[1012]2056ifdef TOOL_$(tool)_COMPILE_$(type)_USES_KOBJCACHE
[2196]2057_OUT_FILES += $(outbase).koc
[1030]2058$(outbase).koc +| $(obj) $($(target)_$(source)_OUTPUT_) $($(target)_$(source)_OUTPUT_MAYBE_) : \
[1007]2059 $($(target)_$(source)_DEPEND_) \
[1456]2060 $(value _DEP_COMPILE_CMDS) \
[1007]2061 | \
[1426]2062 $($(target)_$(source)_DEPORD_) \
[2355]2063 $$$$($(target)_INTERMEDIATES) \
2064 $$$$($(target)_INTERMEDIATES.$(bld_trg)) \
2065 $$$$($(target)_INTERMEDIATES.$(bld_trg).$(bld_trg_arch)) \
2066 $$$$($(target)_INTERMEDIATES.$(bld_trg_arch)) \
2067 $$$$($(target)_INTERMEDIATES.$(bld_trg_cpu)) \
2068 $$$$($(target)_INTERMEDIATES.$(bld_type))
[1496]2069 %$$(call MSG_COMPILE,$(target),$(source),$$@,$(type))
[1007]2070else
[1030]2071$(obj) + $($(target)_$(source)_OUTPUT_) +| $($(target)_$(source)_OUTPUT_MAYBE_) : \
[380]2072 $($(target)_$(source)_DEPEND_) \
[1456]2073 $(value _DEP_COMPILE_CMDS) \
[380]2074 | \
[1426]2075 $($(target)_$(source)_DEPORD_) \
[2355]2076 $$$$($(target)_INTERMEDIATES) \
2077 $$$$($(target)_INTERMEDIATES.$(bld_trg)) \
2078 $$$$($(target)_INTERMEDIATES.$(bld_trg).$(bld_trg_arch)) \
2079 $$$$($(target)_INTERMEDIATES.$(bld_trg_arch)) \
2080 $$$$($(target)_INTERMEDIATES.$(bld_trg_cpu)) \
2081 $$$$($(target)_INTERMEDIATES.$(bld_type))
[1496]2082 %$$(call MSG_COMPILE,$(target),$(source),$$@,$(type))
[1012]2083ifdef TOOL_$(tool)_COMPILE_$(type)_DONT_PURGE_OUTPUT
[1599]2084 $$(QUIET)$$(RM) -f -- $(dep) $(obj) $($(target)_$(source)_OUTPUT_) $($(target)_OUTPUT_MAYBE_)
[1007]2085endif
[1012]2086endif
[412]2087
[380]2088$($(target)_$(source)_CMDS_)
2089
2090ifndef NO_COMPILE_CMDS_DEPS
[1496]2091 %$$(QUIET2)$$(APPEND) '$(dep)'
[1520]2092 %$$(QUIET2)$$(APPEND) '$(dep)' 'define $(target)_$(subst :,_,$(source))_CMDS_PREV_'
[1496]2093 %$$(QUIET2)$$(APPEND) -c '$(dep)' '$(obj)'
2094 %$$(QUIET2)$$(APPEND) '$(dep)' 'endef'
[770]2095endif
[380]2096
[749]2097$(basename $(notdir $(obj))).o: $(obj)
2098$(basename $(notdir $(obj))).obj: $(obj)
[1496]2099
[2234]2100## @todo make this 'local cmds,output,output_maybe,depend and depord' in 0.2.x or when a new kb-src-one is added.
[1496]2101$(target)_$(source)_CMDS_ :=
[2234]2102$(target)_$(source)_OUTPUT_ :=
2103$(target)_$(source)_OUTPUT_MAYBE_ :=
2104$(target)_$(source)_DEPEND_ :=
2105$(target)_$(source)_DEPORD_ :=
[1936]2106endef # def_target_source_rule
2107$(eval-opt-var def_target_source_rule)
[205]2108
[353]2109
[380]2110## wrapper the link command dependency check.
[1502]2111ifndef NO_LINK_CMDS_DEPS
[2026]2112 if1of ($(KMK_FEATURES),dot-must-make)
2113 _DEP_LINK_CMDS =
2114 else
2115 _DEP_LINK_CMDS = $$(comp-cmds-ex $$($(target)_CMDS_PREV_),$$(commands $(out)),FORCE)
2116 endif
[380]2117else
[730]2118 _DEP_LINK_CMDS =
[380]2119endif
2120
2121## Generate the link rule for a target.
2122# @param $(target) The normalized target name.
2123# @param $(dirdep) Directories we depend upon begin created before linking.
2124# @param $(dep) The name of the dependency file.
2125# @param $(out)
[2234]2126# @param $($(target)_2_OUTPUT) Output files from the link.
2127# @param $($(target)_2_OUTPUT_MAYBE) Output files that the link may perhaps create.
2128# @param $($(target)_2_DEPEND) Dependencies.
2129# @param $($(target)_2_DEPORD) Dependencies which should only affect build order.
[1496]2130# @param $(cmds) The link commands.
[380]2131# @param $($(target)_CMDS_PREV_) The link commands from the previous run.
2132define def_link_rule
[2026]2133ifndef NO_LINK_CMDS_DEPS
2134$(out): .MUST_MAKE = $$(comp-cmds-ex $$($(target)_CMDS_PREV_),$$(commands $$@),FORCE)
2135endif
[2234]2136$(out) + $($(target)_2_OUTPUT) +| $($(target)_2_OUTPUT_MAYBE) : \
2137 $$$$($(target)_2_DEPEND) \
[1456]2138 $(value _DEP_LINK_CMDS) \
[380]2139 | \
[2234]2140 $$$$($(target)_2_DEPORD)
[1496]2141 %$$(call MSG_LINK,$(target),$$@,$(tool_do))
[2234]2142 $$(QUIET)$$(RM) -f -- $(dep) $(out) $($(target)_2_OUTPUT) $($(target)_2_OUTPUT_MAYBE)
[412]2143
[1496]2144$(cmds)
[380]2145
[524]2146ifndef NO_LINK_CMDS_DEPS
[1496]2147 %$$(QUIET2)$$(APPEND) '$(dep)' 'define $(target)_CMDS_PREV_'
2148 %$$(QUIET2)$$(APPEND) -c '$(dep)' '$(out)'
2149 %$$(QUIET2)$$(APPEND) '$(dep)' 'endef'
[770]2150endif
[380]2151
[1686]2152$(basename $(notdir $(out))):: $(out)
[719]2153
[1936]2154endef # def_link_rule
2155$(eval-opt-var def_link_rule)
[380]2156
2157
2158## Generate the link & lib install rule
[2475]2159# Implicit parameters: target, out, $(target)_1_STAGE_TARGET, mode,
2160# pre_install_cmds, post_install_cmds
[380]2161define def_link_install_rule
[2488]2162$($(target)_1_INST_TARGET): $(out) | $$$$(dir $$$$@)
[1496]2163 %$$(call MSG_INST_TRG,$(target),$(out),$$@)
[2475]2164 $(pre_install_cmds)
2165
[2225]2166 $$(QUIET)$$(INSTALL) $(if $(mode),-m $(mode)) $(if $(uid),-o $(uid)) $(if $(gid),-g $(gid)) -- $(out) $$@
[2475]2167 $(post_install_cmds)
[719]2168
[2475]2169endef
[380]2170
[2475]2171
2172## Generate the link & lib stage installation rule
2173# Implicit parameters: target, out, $(target)_1_STAGE_TARGET, mode,
2174# pre_install_cmds, post_install_cmds
2175define def_link_stage_rule
[2488]2176$($(target)_1_STAGE_TARGET): $(out) | $$$$(dir $$$$@)
[2475]2177 %$$(call MSG_INST_TRG,$(target),$(out),$$@)
2178 $(pre_install_cmds)
2179
[2479]2180 $$(QUIET)$$(INSTALL_STAGING) $(if $(mode),-m $(mode)) $(if $(uid),-o $(uid)) $(if $(gid),-g $(gid)) -- $(out) $$@
[2475]2181 $(post_install_cmds)
2182
2183
2184$(basename $(notdir $(out))):: $($(target)_1_STAGE_TARGET)
2185
2186endef
2187
2188
[1424]2189## def_src_handler_*
2190#
2191# @{
2192define def_src_handler_c
[1496]2193local type := C
[1795]2194 $(kb-src-one 2)
[1424]2195endef
[73]2196
[1424]2197define def_src_handler_cxx
[1496]2198local type := CXX
[1795]2199 $(kb-src-one 2)
[1424]2200endef
[73]2201
[1424]2202define def_src_handler_objc
[1496]2203local type := OBJC
[1795]2204 $(kb-src-one 2)
[1424]2205endef
[1256]2206
[2356]2207define def_src_handler_objcxx
[2359]2208local type := OBJCXX
[2356]2209 $(kb-src-one 2)
2210endef
2211
[1424]2212define def_src_handler_asm
[1496]2213local type := AS
[1795]2214 $(kb-src-one 2)
[1424]2215endef
[353]2216
[1424]2217define def_src_handler_rc
[1496]2218local type := RC
[1795]2219 $(kb-src-one 2)
[1424]2220endef
[641]2221
[1424]2222define def_src_handler_obj
[1434]2223ifeq ($(defpath),)
[2080]2224 $(target)_2_OBJS += $(source)
2225else
2226 $(target)_2_OBJS += $(abspathex $(source), $(defpath))
2227endif
2228endef
[1424]2229## @}
[73]2230
[1424]2231## Handle one source.
2232# .
2233define def_src_handler_one
[1496]2234local suff := $(suffix $(source))
2235local src_handler := $(firstword $(filter $(suff):%, $($(target)_$(source)_SRC_HANDLERS) $($(source)_SRC_HANDLERS) $(target_src_handlers) ))
2236local handler := $(patsubst $(suff):%,%,$(src_handler))
[1424]2237ifneq ($(handler),)
[1625]2238 $(evalvalctx $(handler))
[1424]2239else
[1434]2240 othersrc += $(source)
[1424]2241endif
[2475]2242endef # def_src_handler_one
[73]2243
[1424]2244## Generic macro for processing all target sources.
2245# @param $(target) Normalized target name.
2246# @param $(defpath)
2247# @param much-more...
[2236]2248# @returns othersrc, $(target)_2_OBJS, ++
[1424]2249define def_target_sources
[1496]2250local target_src_handlers := $($(target)_SRC_HANDLERS) $(KBUILD_SRC_HANDLERS)
[1424]2251$(foreach source,\
[1429]2252 $($(target)_SOURCES)\
2253 $($(target)_SOURCES.$(bld_trg))\
[2433]2254 $($(target)_SOURCES.$(bld_trg).$(bld_type))\
[1429]2255 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch))\
[2433]2256 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch).$(bld_type))\
[1429]2257 $($(target)_SOURCES.$(bld_trg_arch))\
2258 $($(target)_SOURCES.$(bld_trg_cpu))\
2259 $($(target)_SOURCES.$(bld_type))\
[1496]2260 ,$(evalval def_src_handler_one) )
[1621]2261
2262$(foreach source,\
2263 $($(target)_GEN_SOURCES_)\
2264 $($(target)_GEN_SOURCES_.$(bld_trg))\
[2433]2265 $($(target)_GEN_SOURCES_.$(bld_trg).$(bld_type))\
[1621]2266 $($(target)_GEN_SOURCES_.$(bld_trg).$(bld_trg_arch))\
[2433]2267 $($(target)_GEN_SOURCES_.$(bld_trg).$(bld_trg_arch).$(bld_type))\
[1621]2268 $($(target)_GEN_SOURCES_.$(bld_trg_arch))\
2269 $($(target)_GEN_SOURCES_.$(bld_trg_cpu))\
2270 $($(target)_GEN_SOURCES_.$(bld_type))\
2271 ,$(evalval def_src_handler_one) )
[1936]2272endef # def_target_sources
2273$(eval-opt-var def_target_sources)
[1424]2274
2275
[2475]2276##
2277# Function for getting the first defined propert value.
2278#
2279# @param 1 The property name.
2280# @note Implicit parameters: target, bld_trg, bld_trg_arch, bld_trg_cpu, bld_type.
2281# @returns Expanded property value.
2282#
2283## @todo bld_trg_cpu is missing here.
2284define def_fn_prop_get_first_defined
2285ifdef $(target)_$(1).$(bld_trg).$(bld_trg_arch).$(bld_type)
2286 local .RETURN := $($(target)_$(1).$(bld_trg).$(bld_trg_arch).$(bld_type))
2287else ifdef $(target)_$(1).$(bld_trg).$(bld_trg_arch)
2288 local .RETURN := $($(target)_$(1).$(bld_trg).$(bld_trg_arch))
2289else ifdef $(target)_$(1).$(bld_trg).$(bld_type)
2290 local .RETURN := $($(target)_$(1).$(bld_trg).$(bld_type))
2291else ifdef $(target)_$(1).$(bld_trg_arch)
2292 local .RETURN := $($(target)_$(1).$(bld_trg_arch))
2293else ifdef $(target)_$(1).$(bld_trg)
2294 local .RETURN := $($(target)_$(1).$(bld_trg))
2295else ifdef $(target)_$(1).$(bld_type)
2296 local .RETURN := $($(target)_$(1).$(bld_type))
2297else ifdef $(target)_$(1)
2298 local .RETURN := $($(target)_$(1))
2299else ifdef $(1).$(bld_trg).$(bld_trg_arch).$(bld_type)
2300 local .RETURN := $($(1).$(bld_trg).$(bld_trg_arch).$(bld_type))
2301else ifdef $(1).$(bld_trg).$(bld_trg_arch)
2302 local .RETURN := $($(1).$(bld_trg).$(bld_trg_arch))
2303else ifdef $(1).$(bld_trg).$(bld_type)
2304 local .RETURN := $($(1).$(bld_trg).$(bld_type))
2305else ifdef $(1).$(bld_trg_arch)
2306 local .RETURN := $($(1).$(bld_trg_arch))
2307else ifdef $(1).$(bld_trg)
2308 local .RETURN := $($(1).$(bld_trg))
2309else ifdef $(1).$(bld_type)
2310 local .RETURN := $($(1).$(bld_type))
2311else
2312 local .RETURN := $($(1))
2313endif
2314endef # def_fn_prop_get_first_defined
[1424]2315
[2475]2316
2317## Generic macro for generating the install rule(s) for a target.
[219]2318#
[353]2319# @param $(target) Normalized target name.
2320# @param $(out) The output file.
2321# @param $(typevar) The name of the variable with all the root targets of its type.
[2481]2322# @param $(target_type_mode) The default file mode implied by the target type.
[2475]2323define def_target_install_only
2324ifneq ($($(target)_1_INSTTYPE),none)
[2225]2325 local mode := $(firstword \
2326 $($(target)_MODE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2327 $($(target)_MODE.$(bld_trg).$(bld_trg_arch)) \
2328 $($(target)_MODE.$(bld_trg).$(bld_type)) \
2329 $($(target)_MODE.$(bld_trg_arch)) \
2330 $($(target)_MODE.$(bld_trg)) \
2331 $($(target)_MODE.$(bld_type)) \
[2483]2332 $($(target)_MODE) \
2333 $(target_type_mode) )
[2225]2334 local uid := $(firstword \
2335 $($(target)_UID.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2336 $($(target)_UID.$(bld_trg).$(bld_trg_arch)) \
2337 $($(target)_UID.$(bld_trg).$(bld_type)) \
2338 $($(target)_UID.$(bld_trg_arch)) \
2339 $($(target)_UID.$(bld_trg)) \
2340 $($(target)_UID.$(bld_type)) \
2341 $($(target)_UID) )
2342 local gid := $(firstword \
2343 $($(target)_GID.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2344 $($(target)_GID.$(bld_trg).$(bld_trg_arch)) \
2345 $($(target)_GID.$(bld_trg).$(bld_type)) \
2346 $($(target)_GID.$(bld_trg_arch)) \
2347 $($(target)_GID.$(bld_trg)) \
2348 $($(target)_GID.$(bld_type)) \
2349 $($(target)_GID) )
[2475]2350 local pre_install_cmds := $(evalcall def_fn_prop_get_first_defined,PRE_INST_CMDS)
2351 local post_install_cmds := $(evalcall def_fn_prop_get_first_defined,POST_INST_CMDS)
[219]2352
[2475]2353 # Generate the rules
2354 ifeq ($($(target)_1_INSTTYPE),both)
[353]2355$(eval $(def_link_install_rule))
[2475]2356 _INSTALLS_FILES += $($(target)_1_INST_TARGET)
[1697]2357 endif
[2475]2358$(eval $(def_link_stage_rule))
2359 _STAGE_FILES += $($(target)_1_STAGE_TARGET)
2360 $(typevar) += $($(target)_1_STAGE_TARGET)
2361else # INSTTYPE == none
[1697]2362 $(typevar) += $(out)
[2475]2363endif # INSTTYPE == none
[353]2364
[2475]2365endef # def_target_install_only
[353]2366
[219]2367
2368
2369#
[72]2370# LIBRARIES
[73]2371#
[72]2372
2373## Library (one).
[74]2374# @param $(target) Normalized library (target) name.
[72]2375define def_lib
[145]2376# library basics
[222]2377## @todo prefix
[1504]2378local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
2379local bld_trg := $(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))
2380local bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(KBUILD_TARGET_ARCH))
2381local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(KBUILD_TARGET_CPU))
[1496]2382local tool := $(call _TARGET_TOOL,$(target),AR)
[78]2383ifeq ($(tool),)
[353]2384$(error kBuild: Library target $(target) does not have a tool defined!)
[78]2385endif
[1496]2386local name := $(firstword\
[2433]2387 $($(target)_NAME.$(bld_trg).$(bld_trg_arch).$(bld_type))\
[889]2388 $($(target)_NAME.$(bld_trg).$(bld_trg_arch))\
[2433]2389 $($(target)_NAME.$(bld_trg).$(bld_type))\
[889]2390 $($(target)_NAME.$(bld_trg_arch))\
2391 $($(target)_NAME.$(bld_trg))\
2392 $($(target)_NAME.$(bld_type))\
2393 $($(target)_NAME)\
2394 $(target))
[1496]2395local outbase := $(call TARGET_BASE,$(name),$(target))
[2239]2396$(target)_0_OUTDIR:= $(patsubst %/,%,$(dir $(outbase)))
[2436]2397$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
[1496]2398local suff := $(firstword\
[481]2399 $($(target)_LIBSUFF.$(bld_trg).$(bld_trg_arch))\
[221]2400 $($(target)_LIBSUFF.$(bld_trg))\
[126]2401 $($(target)_LIBSUFF)\
[481]2402 $(TOOL_$(tool)_ARLIBSUFF.$(bld_trg).$(bld_trg_arch))\
[221]2403 $(TOOL_$(tool)_ARLIBSUFF.$(bld_trg))\
[126]2404 $(TOOL_$(tool)_ARLIBSUFF)\
[353]2405 $(SUFF_LIB))
[1496]2406local out := $(outbase)$(suff)
[2434]2407local defpath := $($(target)_DEFPATH)
2408ifeq ($(defpath),)
2409 local defpath := $($(target)_PATH)
2410endif
[2238]2411$(target)_1_TARGET:= $(out)
[2436]2412$(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
[1496]2413# no local here - must be writable across some foreachs.
2414othersrc :=
[2236]2415$(target)_2_OBJS :=
[145]2416
[1672]2417# Do units pre source callouts.
2418local units := \
2419 $($(target)_USES.$(bld_trg).$(bld_trg_arch))\
2420 $($(target)_USES.$(bld_trg_arch))\
2421 $($(target)_USES.$(bld_trg))\
2422 $($(target)_USES.$(bld_type))\
2423 $($(target)_USES)
2424$(foreach unit,$(units),$(evalval def_unit_$(unit)_target_pre))
2425
[145]2426# source -> object
[1496]2427$(evalval def_target_sources)
[145]2428
2429# library linking
[1496]2430local tool := $(call _TARGET_TOOL,$(target),AR)
2431local name := $(firstword\
[2433]2432 $($(target)_NAME.$(bld_trg).$(bld_trg_arch).$(bld_type))\
[889]2433 $($(target)_NAME.$(bld_trg).$(bld_trg_arch))\
[2433]2434 $($(target)_NAME.$(bld_trg).$(bld_type))\
[889]2435 $($(target)_NAME.$(bld_trg_arch))\
2436 $($(target)_NAME.$(bld_trg))\
2437 $($(target)_NAME.$(bld_type))\
2438 $($(target)_NAME)\
2439 $(target))
[1496]2440local outbase := $(call TARGET_BASE,$(name),$(target))
2441local flags :=\
[74]2442 $(TOOL_$(tool)_ARFLAGS)\
[221]2443 $(TOOL_$(tool)_ARFLAGS.$(bld_type))\
[74]2444 $(ARFLAGS)\
[221]2445 $(ARFLAGS.$(bld_type))\
[74]2446 $($(target)_ARFLAGS)\
[481]2447 $($(target)_ARFLAGS.$(bld_type)) \
2448 $($(target)_ARFLAGS.$(bld_trg)) \
2449 $($(target)_ARFLAGS.$(bld_trg_arch)) \
2450 $($(target)_ARFLAGS.$(bld_trg).$(bld_trg_arch)) \
2451 $($(target)_ARFLAGS.$(bld_trg_cpu))
[1496]2452local dirdep := $(call DIRDEP,$(dir $(out)))
[1702]2453local deps := \
2454 $($(target)_DEPS.$(bld_trg_cpu)) \
2455 $($(target)_DEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2456 $($(target)_DEPS.$(bld_trg).$(bld_trg_arch)) \
2457 $($(target)_DEPS.$(bld_trg).$(bld_type)) \
2458 $($(target)_DEPS.$(bld_trg_arch)) \
2459 $($(target)_DEPS.$(bld_trg)) \
2460 $($(target)_DEPS.$(bld_type)) \
2461 $($(target)_DEPS) \
2462 $($(target)_LNK_DEPS.$(bld_trg_cpu)) \
2463 $($(target)_LNK_DEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2464 $($(target)_LNK_DEPS.$(bld_trg).$(bld_trg_arch)) \
2465 $($(target)_LNK_DEPS.$(bld_trg).$(bld_type)) \
2466 $($(target)_LNK_DEPS.$(bld_trg_arch)) \
2467 $($(target)_LNK_DEPS.$(bld_trg)) \
2468 $($(target)_LNK_DEPS.$(bld_type)) \
2469 $($(target)_LNK_DEPS)
2470local orderdeps := \
2471 $($(target)_ORDERDEPS.$(bld_trg_cpu)) \
2472 $($(target)_ORDERDEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2473 $($(target)_ORDERDEPS.$(bld_trg).$(bld_trg_arch)) \
2474 $($(target)_ORDERDEPS.$(bld_trg).$(bld_type)) \
2475 $($(target)_ORDERDEPS.$(bld_trg_arch)) \
2476 $($(target)_ORDERDEPS.$(bld_trg)) \
2477 $($(target)_ORDERDEPS.$(bld_type)) \
2478 $($(target)_ORDERDEPS) \
2479 $($(target)_LNK_ORDERDEPS.$(bld_trg_cpu)) \
2480 $($(target)_LNK_ORDERDEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2481 $($(target)_LNK_ORDERDEPS.$(bld_trg).$(bld_trg_arch)) \
2482 $($(target)_LNK_ORDERDEPS.$(bld_trg).$(bld_type)) \
2483 $($(target)_LNK_ORDERDEPS.$(bld_trg_arch)) \
2484 $($(target)_LNK_ORDERDEPS.$(bld_trg)) \
2485 $($(target)_LNK_ORDERDEPS.$(bld_type)) \
2486 $($(target)_LNK_ORDERDEPS)
[72]2487
[725]2488# Adjust paths if we got a default path.
2489ifneq ($(defpath),)
[1496]2490 local deps := $(abspathex $(deps),$(defpath))
2491 local orderdeps := $(abspathex $(orderdeps),$(defpath))
[1472]2492 othersrc := $(abspathex $(othersrc),$(defpath))
[725]2493endif
2494
[859]2495
2496# Custom pre-link actions.
[2475]2497local pre_cmds := $(evalcall def_fn_prop_get_first_defined,PRE_CMDS)
2498local post_cmds := $(evalcall def_fn_prop_get_first_defined,POST_CMDS)
[859]2499
[1424]2500# eliminate this guy?
[2236]2501local objs = $($(target)_2_OBJS)
[1424]2502
[380]2503# dependency file
[1496]2504local dep := $(out)$(SUFF_DEP)
[524]2505ifndef NO_LINK_CMDS_DEPS
[1798]2506 _DEPFILES_INCLUDED += $(dep)
2507 ifdef KB_HAVE_INCLUDEDEP_QUEUE
2508 includedep-queue $(dep)
[1795]2509 else
[1798]2510 includedep $(dep)
[1795]2511 endif
[380]2512endif
[72]2513
[380]2514# check that the tool is defined.
2515ifndef TOOL_$(tool)_LINK_LIBRARY_CMDS
2516$(warning kBuild: tools: \
[481]2517 1 $($(target)_$(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
2518 2 $($(target)_$(source)TOOL.$(bld_trg)) \
2519 3 $($(target)_$(source)TOOL) \
2520 4 $($(target)_TOOL.$(bld_trg).$(bld_trg_arch)) \
2521 5 $($(target)_TOOL.$(bld_trg)) \
2522 6 $($(target)_TOOL) \
2523 7 $($(source)TOOL) \
2524 8 $($(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
2525 9 $($(source)TOOL.$(bld_trg)) \
2526 10 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
2527 11 $(TOOL.$(bld_trg)) \
2528 12 $(TOOL) )
[380]2529$(error kBuild: TOOL_$(tool)_LINK_LIBRARY_CMDS isn't defined! target=$(target) )
2530endif
2531
2532# call the tool
[1496]2533local cmds := $(TOOL_$(tool)_LINK_LIBRARY_CMDS)
[859]2534ifneq ($(pre_cmds),)
[1496]2535 local cmds := $(TAB)$(pre_cmds)$(NL)$(TAB)$(cmds)
[859]2536endif
2537ifneq ($(post_cmds),)
[1496]2538 local cmds := $(cmds)$(NL)$(TAB)$(post_cmds)
[859]2539endif
[2234]2540$(target)_2_OUTPUT := $(TOOL_$(tool)_LINK_LIBRARY_OUTPUT)
2541$(target)_2_OUTPUT_MAYBE := $(TOOL_$(tool)_LINK_LIBRARY_OUTPUT_MAYBE)
[2236]2542$(target)_2_DEPEND := $(TOOL_$(tool)_LINK_LIBRARY_DEPEND) $(deps) $($(target)_2_OBJS)
[2234]2543$(target)_2_DEPORD := $(TOOL_$(tool)_LINK_LIBRARY_DEPORD) $(dirdep) $(orderdeps)
[380]2544
[412]2545# generate the link rule.
[380]2546$(eval $(def_link_rule))
2547
[2475]2548# installing and globals.
[2483]2549local target_type_mode := a+r,u+w
[2475]2550$(evalval def_target_install_only)
2551
2552_OUT_FILES += $($(target)_2_OUTPUT) $($(target)_2_OUTPUT_MAYBE) $(out)
2553_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))
2554_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))
2555_OBJS += $($(target)_2_OBJS)
2556
2557endef # def_lib
[1936]2558$(eval-opt-var def_lib)
[72]2559
2560# Process libraries
[859]2561typevar := _LIBS
[776]2562tool_do := LINK_LIBRARY
[380]2563mode := 0644
[1648]2564$(foreach target, $(_ALL_LIBRARIES), $(evalval def_lib))
[72]2565
[988]2566ifdef KBUILD_PROFILE_SELF
[2008]2567 $(evalcall def_profile_self, done library targets)
[988]2568endif
[72]2569
[988]2570
[72]2571#
[353]2572# Link operations.
[72]2573#
2574
[353]2575##
2576# Link prolog
2577#
2578# @param $(target) Normalized target name.
2579# @param $(EXT) EXE,DLL,SYS.
2580# @param $(typevar) The name of the variable with all the root targets of its type.
[380]2581define def_link_common
[353]2582# basics
[1504]2583local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
[1496]2584local bld_trg := $(firstword $($(target)_BLD_TRG) $(BUILD_$(bld_trg_base_var)))
2585local bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(BUILD_$(bld_trg_base_var)_ARCH))
2586local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(BUILD_$(bld_trg_base_var)_CPU))
[145]2587
[1496]2588local tool := $(call _TARGET_TOOL,$(target),LD)
2589local name := $(firstword\
[2433]2590 $($(target)_NAME.$(bld_trg).$(bld_trg_arch).$(bld_type))\
[889]2591 $($(target)_NAME.$(bld_trg).$(bld_trg_arch))\
[2433]2592 $($(target)_NAME.$(bld_trg).$(bld_type))\
[889]2593 $($(target)_NAME.$(bld_trg_arch))\
2594 $($(target)_NAME.$(bld_trg))\
2595 $($(target)_NAME.$(bld_type))\
2596 $($(target)_NAME)\
2597 $(target))
[1496]2598local outbase := $(call TARGET_BASE,$(name),$(target))
[2239]2599$(target)_0_OUTDIR:= $(patsubst %/,%,$(dir $(outbase)))
[2436]2600$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
[2143]2601local suff := $(firstword \
2602 $($(target)_$(EXT)SUFF.$(bld_trg).$(bld_trg_arch))\
2603 $($(target)_$(EXT)SUFF.$(bld_trg))\
2604 $($(target)_$(EXT)SUFF)\
2605 $(TOOL_$(tool)_LD$(EXT)SUFF.$(bld_trg).$(bld_trg_arch))\
2606 $(TOOL_$(tool)_LD$(EXT)SUFF.$(bld_trg))\
2607 $(TOOL_$(tool)_LD$(EXT)SUFF)\
2608 $($(EXTPRE)SUFF_$(EXT)) )
[1496]2609local out := $(outbase)$(suff)
[2238]2610$(target)_1_TARGET:= $(out)
[2436]2611$(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
[2434]2612local defpath := $($(target)_DEFPATH)
2613ifeq ($(defpath),)
2614 local defpath := $($(target)_PATH)
2615endif
[1496]2616# no local here - must be writable across some foreachs.
2617othersrc :=
[2236]2618$(target)_2_OBJS :=
[353]2619
[1672]2620# Do units pre source callouts.
2621local units := \
2622 $($(target)_USES.$(bld_trg).$(bld_trg_arch))\
2623 $($(target)_USES.$(bld_trg_arch))\
2624 $($(target)_USES.$(bld_trg))\
2625 $($(target)_USES.$(bld_type))\
2626 $($(target)_USES)
2627$(foreach unit,$(units),$(evalval def_unit_$(unit)_target_pre))
2628
[145]2629# source -> object
[1496]2630$(evalval def_target_sources)
[145]2631
[744]2632# more link stuff.
[1496]2633local tool := $(call _TARGET_TOOL,$(target),LD)
2634local name := $(firstword\
[2433]2635 $($(target)_NAME.$(bld_trg).$(bld_trg_arch).$(bld_type))\
[889]2636 $($(target)_NAME.$(bld_trg).$(bld_trg_arch))\
[2433]2637 $($(target)_NAME.$(bld_trg).$(bld_type))\
[889]2638 $($(target)_NAME.$(bld_trg_arch))\
2639 $($(target)_NAME.$(bld_trg))\
2640 $($(target)_NAME.$(bld_type))\
2641 $($(target)_NAME)\
2642 $(target))
[1496]2643local outbase := $(call TARGET_BASE,$(name),$(target))
2644local flags :=\
[74]2645 $(TOOL_$(tool)_LDFLAGS)\
[221]2646 $(TOOL_$(tool)_LDFLAGS.$(bld_type))\
2647 $(TOOL_$(tool)_LDFLAGS.$(bld_trg))\
2648 $(TOOL_$(tool)_LDFLAGS.$(bld_trg_arch))\
[481]2649 $(TOOL_$(tool)_LDFLAGS.$(bld_trg).$(bld_trg_arch))\
[221]2650 $(TOOL_$(tool)_LDFLAGS.$(bld_trg_cpu))\
[1242]2651 $(foreach sdk, $(SDKS) \
2652 $(SDKS.$(bld_type)) \
2653 $(SDKS.$(bld_trg)) \
2654 $(SDKS.$(bld_trg_arch)) \
2655 $(SDKS.$(bld_trg).$(bld_trg_arch)),\
2656 $(SDK_$(sdk)_LDFLAGS)\
2657 $(SDK_$(sdk)_LDFLAGS.$(bld_type))\
2658 $(SDK_$(sdk)_LDFLAGS.$(bld_trg))\
2659 $(SDK_$(sdk)_LDFLAGS.$(bld_trg_arch))\
2660 $(SDK_$(sdk)_LDFLAGS.$(bld_trg).$(bld_trg_arch))\
2661 $(SDK_$(sdk)_LDFLAGS.$(bld_trg_cpu)))\
[74]2662 $(LDFLAGS)\
[221]2663 $(LDFLAGS.$(bld_type))\
2664 $(LDFLAGS.$(bld_trg))\
2665 $(LDFLAGS.$(bld_trg_arch))\
[481]2666 $(LDFLAGS.$(bld_trg).$(bld_trg_arch))\
[221]2667 $(LDFLAGS.$(bld_trg_cpu))\
[1242]2668 $(foreach sdk, $($(target)_SDKS) \
2669 $($(target)_SDKS.$(bld_type)) \
2670 $($(target)_SDKS.$(bld_trg)) \
2671 $($(target)_SDKS.$(bld_trg_arch)) \
2672 $($(target)_SDKS.$(bld_trg).$(bld_trg_arch)),\
2673 $(SDK_$(sdk)_LDFLAGS)\
2674 $(SDK_$(sdk)_LDFLAGS.$(bld_type))\
2675 $(SDK_$(sdk)_LDFLAGS.$(bld_trg))\
2676 $(SDK_$(sdk)_LDFLAGS.$(bld_trg_arch))\
2677 $(SDK_$(sdk)_LDFLAGS.$(bld_trg).$(bld_trg_arch))\
2678 $(SDK_$(sdk)_LDFLAGS.$(bld_trg_cpu)))\
[74]2679 $($(target)_LDFLAGS)\
[221]2680 $($(target)_LDFLAGS.$(bld_type))\
2681 $($(target)_LDFLAGS.$(bld_trg))\
2682 $($(target)_LDFLAGS.$(bld_trg_arch))\
[481]2683 $($(target)_LDFLAGS.$(bld_trg).$(bld_trg_arch))\
[353]2684 $($(target)_LDFLAGS.$(bld_trg_cpu))
[1496]2685local libs :=\
[221]2686 $($(target)_LIBS.$(bld_trg_cpu))\
[481]2687 $($(target)_LIBS.$(bld_trg).$(bld_trg_arch))\
[221]2688 $($(target)_LIBS.$(bld_trg_arch))\
2689 $($(target)_LIBS.$(bld_trg))\
2690 $($(target)_LIBS.$(bld_type))\
[74]2691 $($(target)_LIBS)\
[592]2692 $(foreach sdk, $($(target)_SDKS.$(bld_trg).$(bld_trg_arch)) \
2693 $($(target)_SDKS.$(bld_trg_arch)) \
2694 $($(target)_SDKS.$(bld_trg)) \
2695 $($(target)_SDKS.$(bld_type)) \
2696 $($(target)_SDKS),\
[353]2697 $(SDK_$(sdk)_LIBS.$(bld_trg_cpu))\
[481]2698 $(SDK_$(sdk)_LIBS.$(bld_trg).$(bld_trg_arch))\
[353]2699 $(SDK_$(sdk)_LIBS.$(bld_trg_arch))\
2700 $(SDK_$(sdk)_LIBS.$(bld_trg))\
2701 $(SDK_$(sdk)_LIBS.$(bld_type))\
2702 $(SDK_$(sdk)_LIBS))\
[221]2703 $(LIBS.$(bld_trg_cpu))\
[481]2704 $(LIBS.$(bld_trg).$(bld_trg_arch))\
[221]2705 $(LIBS.$(bld_trg_arch))\
2706 $(LIBS.$(bld_trg))\
2707 $(LIBS.$(bld_type))\
[74]2708 $(LIBS)\
[592]2709 $(foreach sdk, $(SDKS.$(bld_trg).$(bld_trg_arch)) \
2710 $(SDKS.$(bld_trg_arch)) \
2711 $(SDKS.$(bld_trg)) \
2712 $(SDKS.$(bld_type)) \
2713 $(SDKS),\
[353]2714 $(SDK_$(sdk)_LIBS.$(bld_trg_cpu))\
[481]2715 $(SDK_$(sdk)_LIBS.$(bld_trg).$(bld_trg_arch))\
[353]2716 $(SDK_$(sdk)_LIBS.$(bld_trg_arch))\
2717 $(SDK_$(sdk)_LIBS.$(bld_trg))\
2718 $(SDK_$(sdk)_LIBS.$(bld_type))\
2719 $(SDK_$(sdk)_LIBS))\
[221]2720 $(TOOL_$(tool)_LIBS.$(bld_trg_cpu))\
[481]2721 $(TOOL_$(tool)_LIBS.$(bld_trg).$(bld_trg_arch))\
[221]2722 $(TOOL_$(tool)_LIBS.$(bld_trg_arch))\
2723 $(TOOL_$(tool)_LIBS.$(bld_trg))\
2724 $(TOOL_$(tool)_LIBS.$(bld_type))\
[353]2725 $(TOOL_$(tool)_LIBS)
[1496]2726local libpath :=\
[221]2727 $($(target)_LIBPATH.$(bld_trg_cpu))\
[481]2728 $($(target)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
[221]2729 $($(target)_LIBPATH.$(bld_trg_arch))\
2730 $($(target)_LIBPATH.$(bld_trg))\
2731 $($(target)_LIBPATH.$(bld_type))\
[74]2732 $($(target)_LIBPATH)\
[592]2733 $(foreach sdk, $($(target)_SDKS.$(bld_trg).$(bld_trg_arch)) \
2734 $($(target)_SDKS.$(bld_trg_arch)) \
2735 $($(target)_SDKS.$(bld_trg)) \
2736 $($(target)_SDKS.$(bld_type)) \
2737 $($(target)_SDKS),\
[353]2738 $(SDK_$(sdk)_LIBPATH.$(bld_trg_cpu))\
[481]2739 $(SDK_$(sdk)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
[353]2740 $(SDK_$(sdk)_LIBPATH.$(bld_trg_arch))\
2741 $(SDK_$(sdk)_LIBPATH.$(bld_trg))\
2742 $(SDK_$(sdk)_LIBPATH.$(bld_type))\
2743 $(SDK_$(sdk)_LIBPATH))\
[221]2744 $(LIBPATH.$(bld_trg_cpu))\
[481]2745 $(LIBPATH.$(bld_trg).$(bld_trg_arch))\
[221]2746 $(LIBPATH.$(bld_trg_arch))\
2747 $(LIBPATH.$(bld_trg))\
2748 $(LIBPATH.$(bld_type))\
[74]2749 $(LIBPATH)\
[592]2750 $(foreach sdk, $(SDKS.$(bld_trg).$(bld_trg_arch)) \
2751 $(SDKS.$(bld_trg_arch)) \
2752 $(SDKS.$(bld_trg)) \
2753 $(SDKS.$(bld_type)) \
2754 $(SDKS),\
[353]2755 $(SDK_$(sdk)_LIBPATH.$(bld_trg_cpu))\
[481]2756 $(SDK_$(sdk)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
[353]2757 $(SDK_$(sdk)_LIBPATH.$(bld_trg_arch))\
2758 $(SDK_$(sdk)_LIBPATH.$(bld_trg))\
2759 $(SDK_$(sdk)_LIBPATH.$(bld_type))\
2760 $(SDK_$(sdk)_LIBPATH))\
[221]2761 $(TOOL_$(tool)_LIBPATH.$(bld_trg_cpu))\
[481]2762 $(TOOL_$(tool)_LIBPATH.$(bld_trg).$(bld_trg_arch))\
[221]2763 $(TOOL_$(tool)_LIBPATH.$(bld_trg_arch))\
2764 $(TOOL_$(tool)_LIBPATH.$(bld_trg))\
2765 $(TOOL_$(tool)_LIBPATH.$(bld_type))\
[353]2766 $(TOOL_$(tool)_LIBPATH)
[1496]2767local dirdep := $(call DIRDEP,$(dir $(out)))
[1702]2768local deps := \
2769 $($(target)_DEPS.$(bld_trg_cpu)) \
2770 $($(target)_DEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2771 $($(target)_DEPS.$(bld_trg).$(bld_trg_arch)) \
2772 $($(target)_DEPS.$(bld_trg).$(bld_type)) \
2773 $($(target)_DEPS.$(bld_trg_arch)) \
2774 $($(target)_DEPS.$(bld_trg)) \
2775 $($(target)_DEPS.$(bld_type)) \
2776 $($(target)_DEPS) \
2777 $($(target)_LNK_DEPS.$(bld_trg_cpu)) \
2778 $($(target)_LNK_DEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2779 $($(target)_LNK_DEPS.$(bld_trg).$(bld_trg_arch)) \
2780 $($(target)_LNK_DEPS.$(bld_trg).$(bld_type)) \
2781 $($(target)_LNK_DEPS.$(bld_trg_arch)) \
2782 $($(target)_LNK_DEPS.$(bld_trg)) \
2783 $($(target)_LNK_DEPS.$(bld_type)) \
2784 $($(target)_LNK_DEPS)
2785local orderdeps := \
2786 $($(target)_ORDERDEPS.$(bld_trg_cpu)) \
2787 $($(target)_ORDERDEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2788 $($(target)_ORDERDEPS.$(bld_trg).$(bld_trg_arch)) \
2789 $($(target)_ORDERDEPS.$(bld_trg).$(bld_type)) \
2790 $($(target)_ORDERDEPS.$(bld_trg_arch)) \
2791 $($(target)_ORDERDEPS.$(bld_trg)) \
2792 $($(target)_ORDERDEPS.$(bld_type)) \
2793 $($(target)_ORDERDEPS) \
2794 $($(target)_LNK_ORDERDEPS.$(bld_trg_cpu)) \
2795 $($(target)_LNK_ORDERDEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
2796 $($(target)_LNK_ORDERDEPS.$(bld_trg).$(bld_trg_arch)) \
2797 $($(target)_LNK_ORDERDEPS.$(bld_trg).$(bld_type)) \
2798 $($(target)_LNK_ORDERDEPS.$(bld_trg_arch)) \
2799 $($(target)_LNK_ORDERDEPS.$(bld_trg)) \
2800 $($(target)_LNK_ORDERDEPS.$(bld_type)) \
2801 $($(target)_LNK_ORDERDEPS)
[353]2802
[725]2803# Adjust paths if we got a default path.
2804ifneq ($(defpath),)
[1496]2805 local libpath := $(abspathex $(libpath),$(defpath))
2806 local deps := $(abspathex $(deps),$(defpath))
2807 local orderdeps := $(abspathex $(orderdeps),$(defpath))
[1472]2808 othersrc := $(abspathex $(othersrc),$(defpath))
[1755]2809 # libs are not subject to this because of the the -l<lib> stuff. Use $(<target>_DEFPATH)/lib if relative to current dir!
[725]2810endif
2811
[2475]2812# Custom pre/post-link actions.
2813local pre_cmds := $(evalcall def_fn_prop_get_first_defined,PRE_CMDS)
2814local post_cmds := $(evalcall def_fn_prop_get_first_defined,POST_CMDS)
[72]2815
[1424]2816# eliminate this guy?
[2236]2817local objs = $($(target)_2_OBJS)
[1424]2818
[353]2819# installation targets
[2481]2820local target_type_mode :=
[2475]2821$(evalval def_target_install_only)
[2225]2822
[380]2823# dependency file
[1496]2824local dep := $(outbase)$(SUFF_DEP)
[524]2825ifndef NO_LINK_CMDS_DEPS
[2188]2826 _DEPFILES_INCLUDED += $(dep)
[1798]2827 ifdef KB_HAVE_INCLUDEDEP_QUEUE
2828 includedep-queue $(dep)
[1795]2829 else
[1798]2830 includedep $(dep)
[1795]2831 endif
[380]2832endif
[353]2833
[380]2834# check that the tool is defined.
2835ifndef TOOL_$(tool)_$(tool_do)_CMDS
2836$(warning kBuild: tools: \
[481]2837 1 $($(target)_$(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
2838 2 $($(target)_$(source)TOOL.$(bld_trg)) \
2839 3 $($(target)_$(source)TOOL) \
2840 4 $($(target)_TOOL.$(bld_trg).$(bld_trg_arch)) \
2841 5 $($(target)_TOOL.$(bld_trg)) \
2842 6 $($(target)_TOOL) \
2843 7 $($(source)TOOL.$(bld_trg).$(bld_trg_arch)) \
2844 8 $($(source)TOOL.$(bld_trg)) \
2845 9 $($(source)TOOL) \
2846 10 $(TOOL.$(bld_trg).$(bld_trg_arch)) \
2847 11 $(TOOL.$(bld_trg)) \
2848 12 $(TOOL) )
[380]2849$(error kBuild: TOOL_$(tool)_$(tool_do)_CMDS isn't defined! target=$(target) )
2850endif
[353]2851
[380]2852# call the tool
[1496]2853local cmds := $(TOOL_$(tool)_$(tool_do)_CMDS)
[859]2854ifneq ($(pre_cmds),)
[1496]2855 local cmds := $(TAB)$(pre_cmds)$(NL)$(TAB)$(cmds)
[859]2856endif
2857ifneq ($(post_cmds),)
[1496]2858 local cmds := $(cmds)$(NL)$(TAB)$(post_cmds)
[859]2859endif
[2234]2860$(target)_2_OUTPUT := $(TOOL_$(tool)_$(tool_do)_OUTPUT)
2861$(target)_2_OUTPUT_MAYBE := $(TOOL_$(tool)_$(tool_do)_OUTPUT_MAYBE)
[2236]2862$(target)_2_DEPEND := $(TOOL_$(tool)_$(tool_do)_DEPEND) $(deps) $($(target)_2_OBJS)
[2234]2863$(target)_2_DEPORD := $(TOOL_$(tool)_$(tool_do)_DEPORD) $(dirdep) $(orderdeps)
[353]2864
[412]2865# generate the link rule.
[380]2866$(eval $(def_link_rule))
2867
[412]2868
[380]2869# Update globals.
[2236]2870_OBJS += $($(target)_2_OBJS)
[2234]2871_OUT_FILES += $($(target)_2_OUTPUT) $($(target)_2_OUTPUT_MAYBE) $(out)
[905]2872_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))
2873_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]2874_INSTALLS_FILES += $(INSTARGET_$(target))
[353]2875
[1936]2876endef # def_link_common
2877$(eval-opt-var def_link_common)
[353]2878
2879
2880#
2881# BLDPROGS
2882#
2883
2884# Process build programs.
2885EXT := EXE
2886EXTPRE := HOST
[380]2887tool_do := LINK_PROGRAM
[353]2888typevar := _BLDPROGS
[380]2889mode := 0755
[353]2890bld_trg_base_var := PLATFORM
[2475]2891$(foreach target, $(_ALL_BLDPROGS), $(evalval def_link_common))
[353]2892
[988]2893ifdef KBUILD_PROFILE_SELF
[2008]2894 $(evalcall def_profile_self, done build program targets)
[988]2895endif
[353]2896
2897
2898#
2899# DLLS
2900#
2901
[189]2902# Process dlls
[353]2903EXT := DLL
2904EXTPRE :=
[380]2905tool_do := LINK_DLL
[353]2906typevar := _DLLS
[830]2907mode := 0644
[353]2908bld_trg_base_var := TARGET
[1648]2909$(foreach target, $(_ALL_DLLS), $(evalval def_link_common))
[74]2910
[988]2911ifdef KBUILD_PROFILE_SELF
[2008]2912 $(evalcall def_profile_self, done dll targets)
[988]2913endif
[74]2914
[988]2915
[72]2916#
[830]2917# IMPORT LIBRARIES
[72]2918#
[219]2919# - On OS/2 and windows these are libraries.
[189]2920# - On other platforms they are fake DLLs.
[830]2921#
2922EXTPRE :=
2923typevar := _IMPORT_LIBS
2924mode := 0644
2925bld_trg_base_var := TARGET
[1504]2926ifeq ($(filter-out nt os2 win win64 win32,$(KBUILD_TARGET)),)
[830]2927 EXT := LIB
2928 tool_do := LINK_LIBRARY
[1648]2929 $(foreach target, $(_ALL_IMPORT_LIBS), $(evalval def_lib))
[189]2930else
[830]2931 EXT := DLL
2932 tool_do := LINK_DLL
[1648]2933 $(foreach target, $(_ALL_IMPORT_LIBS), $(evalval def_link_common))
[189]2934endif
[72]2935
[988]2936ifdef KBUILD_PROFILE_SELF
[2008]2937 $(evalcall def_profile_self, done import library targets)
[988]2938endif
[189]2939
[988]2940
[189]2941#
2942# PROGRAMS
2943#
2944
[353]2945# Process programs
2946EXT := EXE
2947EXTPRE :=
[380]2948tool_do := LINK_PROGRAM
[353]2949typevar := _PROGRAMS
[380]2950mode := 0755
[353]2951bld_trg_base_var := TARGET
[1648]2952$(foreach target, $(_ALL_PROGRAMS), $(evalval def_link_common))
[130]2953
[988]2954ifdef KBUILD_PROFILE_SELF
[2008]2955 $(evalcall def_profile_self, done program targets)
[988]2956endif
[130]2957
[189]2958
[72]2959#
[83]2960# SYSMODS
[72]2961#
2962
[130]2963# Process sysmods
[353]2964EXT := SYS
2965EXTPRE :=
[380]2966tool_do := LINK_SYSMOD
[353]2967typevar := _SYSMODS
[380]2968mode := 0644
[353]2969bld_trg_base_var := TARGET
[1648]2970$(foreach target, $(_ALL_SYSMODS), $(evalval def_link_common))
[83]2971
[988]2972ifdef KBUILD_PROFILE_SELF
[2008]2973 $(evalcall def_profile_self, done sysmod targets)
[988]2974endif
[83]2975
[988]2976
[72]2977#
[2084]2978# MISCBINS
2979#
2980
2981# Process MISCBINS
2982EXT := BIN
2983EXTPRE :=
2984tool_do := LINK_MISCBIN
2985typevar := _MISCBINS
2986mode := 0644
2987bld_trg_base_var := TARGET
2988$(foreach target, $(_ALL_MISCBINS), $(evalval def_link_common))
2989
2990ifdef KBUILD_PROFILE_SELF
2991 $(evalcall def_profile_self, done misc binary targets)
2992endif
2993
2994
2995#
[72]2996# OTHERS
2997#
[1504]2998_OTHERS = $(OTHERS) $(OTHERS.$(KBUILD_TARGET)) $(OTHERS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
[72]2999
3000
[353]3001#
3002# INSTALLS
3003#
[72]3004
[2475]3005##
3006# Generate the staging rules.
3007#
3008define def_install_src_rule_staging
3009$(stagedst) : $(srcsrc) | $(dir $(stagedst))
3010 %$$(call MSG_INST_FILE,$(srcsrc),$(stagedst))
3011 $$(QUIET)$(stagecmd)
[353]3012endef
[2475]3013$(eval-opt-var def_install_src_rule_staging)
[353]3014
[2475]3015define def_install_src_rule_installing
3016$(instdst) : $(srcsrc) | $(dir $(instdst))
3017 %$$(call MSG_INST_FILE,$(srcsrc),$(instdst))
3018 $$(QUIET)$(instcmd)
3019endef
3020$(eval-opt-var def_install_src_rule_installing)
3021
3022##
3023# Install one file.
3024#
[353]3025define def_install_src
3026
3027# deal with '=>' in the source file name.
[2220]3028ifeq ($(src),=>)
3029 $(error kBuild: Install target '$(target)' has a bad source specifier containing '=>' without any file names)
3030endif
3031ifeq ($(substr $(src),1,2),=>)
3032 $(warning kBuild: Install target '$(target)' has a bad source specifier: $(src))
3033endif
3034ifeq ($(substr $(src),-2),=>)
3035 $(warning kBuild: Install target '$(target)' has a bad source specifier: $(src))
3036endif
[2475]3037local srcdst := $(subst =>, ,$(src))
3038local srcsrc := $(firstword $(srcdst))
[1496]3039local srcdstdir := $(dir $(word 2,$(srcdst)))
[2475]3040local srcdst := $(word $(words $(srcdst)),$(srcdst))
[353]3041
[2518]3042# instfun, mode, uid and gid.
[353]3043ifdef $(srcsrc)_INSTFUN
[1496]3044 local instfun := $(srcsrc)_INSTFUN
[353]3045else
[2475]3046 local instfun := $(top_instfun)
[353]3047endif
[1496]3048local mode := $(firstword \
[2483]3049 $($(target)_$(srcsrc)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
3050 $($(target)_$(srcsrc)$(source_type_prefix)_MODE.$(bld_trg)) \
3051 $($(target)_$(srcsrc)$(source_type_prefix)_MODE) \
3052 $($(target)_$(srcdst)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
3053 $($(target)_$(srcdst)$(source_type_prefix)_MODE.$(bld_trg)) \
3054 $($(target)_$(srcdst)$(source_type_prefix)_MODE) \
3055 $($(srcsrc)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
3056 $($(srcsrc)$(source_type_prefix)_MODE.$(bld_trg)) \
3057 $($(srcsrc)$(source_type_prefix)_MODE) \
3058 $($(srcdst)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
3059 $($(srcdst)$(source_type_prefix)_MODE.$(bld_trg)) \
3060 $($(srcdst)$(source_type_prefix)_MODE) \
3061 $(source_type_mode))
[1496]3062local uid := $(firstword \
[481]3063 $($(target)_$(srcsrc)_UID.$(bld_trg).$(bld_trg_arch)) \
[414]3064 $($(target)_$(srcsrc)_UID.$(bld_trg)) \
3065 $($(target)_$(srcsrc)_UID) \
[481]3066 $($(target)_$(srcdst)_UID.$(bld_trg).$(bld_trg_arch)) \
[414]3067 $($(target)_$(srcdst)_UID.$(bld_trg)) \
3068 $($(target)_$(srcdst)_UID) \
[481]3069 $($(srcsrc)_UID.$(bld_trg).$(bld_trg_arch)) \
[414]3070 $($(srcsrc)_UID.$(bld_trg)) \
3071 $($(srcsrc)_UID) \
[481]3072 $($(srcdst)_UID.$(bld_trg).$(bld_trg_arch)) \
[414]3073 $($(srcdst)_UID.$(bld_trg)) \
3074 $($(srcdst)_UID) \
[2475]3075 $(top_uid))
[1496]3076local gid := $(firstword \
[481]3077 $($(target)_$(srcsrc)_GID.$(bld_trg).$(bld_trg_arch)) \
[414]3078 $($(target)_$(srcsrc)_GID.$(bld_trg)) \
3079 $($(target)_$(srcsrc)_GID) \
[481]3080 $($(target)_$(srcdst)_GID.$(bld_trg).$(bld_trg_arch)) \
[414]3081 $($(target)_$(srcdst)_GID.$(bld_trg)) \
3082 $($(target)_$(srcdst)_GID) \
[481]3083 $($(srcsrc)_GID.$(bld_trg).$(bld_trg_arch)) \
[414]3084 $($(srcsrc)_GID.$(bld_trg)) \
3085 $($(srcsrc)_GID) \
[481]3086 $($(srcdst)_GID.$(bld_trg).$(bld_trg_arch)) \
[414]3087 $($(srcdst)_GID.$(bld_trg)) \
3088 $($(srcdst)_GID) \
[2475]3089 $(top_gid))
[1496]3090local flags := \
[2475]3091 $(top_ifflags) \
[2483]3092 $($(srcdst)$(source_type_prefix)_IFFLAGS) \
3093 $($(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
3094 $($(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch)) \
3095 $($(srcsrc)$(source_type_prefix)_IFFLAGS) \
3096 $($(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
3097 $($(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch)) \
3098 $($(target)_$(srcdst)$(source_type_prefix)_IFFLAGS) \
3099 $($(target)_$(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
3100 $($(target)_$(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch)) \
3101 $($(target)_$(srcsrc)$(source_type_prefix)_IFFLAGS) \
3102 $($(target)_$(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
3103 $($(target)_$(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch))
[1614]3104clean_files += \
3105 $($(srcdst)_CLEAN) \
3106 $($(srcdst)_CLEAN.$(bld_trg)) \
3107 $($(srcdst)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
3108 $($(srcsrc)_CLEAN) \
3109 $($(srcsrc)_CLEAN.$(bld_trg)) \
3110 $($(srcsrc)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
3111 $($(target)_$(srcdst)_CLEAN) \
3112 $($(target)_$(srcdst)_CLEAN.$(bld_trg)) \
3113 $($(target)_$(srcdst)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
3114 $($(target)_$(srcsrc)_CLEAN) \
3115 $($(target)_$(srcsrc)_CLEAN.$(bld_trg)) \
3116 $($(target)_$(srcsrc)_CLEAN.$(bld_trg).$(bld_trg_arch))
[414]3117
[725]3118
3119# Adjust the source if we got a default PATH. (This must be done this late!)
[2477]3120ifdef $(target)_DEFPATH
3121local defpath := $($(target)_DEFPATH)
3122else ifdef $(target)_PATH
3123local defpath := $($(target)_PATH)
3124else
3125local defpath :=
3126endif
[1755]3127ifneq ($(defpath),)
3128 local srcsrc := $(abspathex $(srcsrc),$(defpath))
[725]3129endif
3130
[2479]3131# Generate the staging rule (requires double evaluation).
[2517]3132local stage := $(strip $(firstdefined $(srcsrc)_STAGE $(srcsrc)_INST $(target)_1_STAGE,value))
3133if "$(substr $(stage),-1)" != "/" && "$(stage)" != ""
3134 $(warning kBuild: File $(srcsrc) in install target $(target) has a STAGE/INST property without a trailing slash: '$(stage)')
3135 local stage := $(stage)/
3136endif
3137local stage := $(stage)$(dir $(srcdstdir))
3138ifeq ($(root $(stage)),)
3139 local stagedst := $(call $(instfun),$(srcdst),$(target),$(stage),$(PATH_STAGE))
3140else
[2518]3141 local stage := $(abspath $(stage))/
[2517]3142 ifeq ($(pos $(PATH_OBJ),$(stage)),1)
[2518]3143 local stage := $(substr $(stage), $(expr $(length-var PATH_OBJ) + 2))
[2517]3144 local stagedst := $(call $(instfun),$(srcdst),$(target),$(stage),$(PATH_OBJ))
3145 else
3146 $(error kBuild: File $(srcsrc) in install target $(target) has a STAGE/INST property with an absolute path outside PATH_OBJ: '$(stage)')
3147 endif
3148endif
[353]3149ifdef $(srcsrc)_INSTALLER
[2479]3150 local stagecmd := $(call $(srcsrc)_INSTALLER,$(srcsrc),$(stagedst),$(target),$(flags),stage)
[830]3151else ifdef $(target)_INSTALLER
[2479]3152 local stagecmd := $(call $(target)_INSTALLER,$(srcsrc),$(stagedst),$(target),$(flags),stage)
[353]3153else
[2479]3154 local stagecmd := $$(INSTALL_STAGING)\
[414]3155 $(if $(uid),-o $(uid))\
3156 $(if $(gid),-g $(gid))\
3157 $(if $(mode),-m $(mode))\
[1599]3158 $(flags) -- \
[2475]3159 $(srcsrc) $(stagedst)
[353]3160endif
[2475]3161$(eval $(def_install_src_rule_staging))
3162$(target)_2_STAGE_TARGETS += $(stagedst)
[353]3163
[2475]3164# Generate the install rule
3165ifeq ($(insttype),both)
[2517]3166 local inst := $(strip $(firstdefined $(srcsrc)_INST $(target)_1_INST,value))
3167 if "$(substr $(inst),-1)" != "/" && "$(inst)" != ""
3168 $(warning kBuild: File $(srcsrc) in install target $(target) has a INST property without a trailing slash: '$(inst)')
3169 local inst := $(inst)/
3170 endif
3171 local inst := $(inst)$(dir $(srcdstdir))
3172 ifneq ($(root $(inst)),)
3173 $(error kBuild: File $(srcsrc) in install target $(target) has a INST property with an absolute path: '$(inst)')
3174 endif
3175 local instdst := $(call $(instfun),$(srcdst),$(target),$(inst),$(PATH_INS))
3176
[2479]3177 ifdef $(srcsrc)_INSTALLER
[2517]3178 local instcmd := $(call $(srcsrc)_INSTALLER,$(srcsrc),$(instdst),$(target),$(flags),install)
[2479]3179 else ifdef $(target)_INSTALLER
[2517]3180 local instcmd := $(call $(target)_INSTALLER,$(srcsrc),$(instdst),$(target),$(flags),install)
[2479]3181 else
3182 local instcmd := $$(INSTALL)\
3183 $(if $(uid),-o $(uid))\
3184 $(if $(gid),-g $(gid))\
3185 $(if $(mode),-m $(mode))\
3186 $(flags) -- \
3187 $(srcsrc) $(instdst)
3188 endif
[2475]3189 $(eval $(def_install_src_rule_installing))
3190 $(target)_2_INST_TARGETS += $(instdst)
3191endif
3192
[2517]3193#$(warning instfun=$(instfun) srcdst=$(srcdst) target=$(target) inst=$(inst) => instdst=$(instdst); stage=$(stage) => stagedst=$(stagedst))
[1936]3194endef # def_install_src
3195$(eval-opt-var def_install_src)
[353]3196
3197
[2475]3198##
3199# Generate the symlink rules.
3200#
3201define def_install_symlink_rule_staging
3202$(stagedst) : | $(dir $(stagedst))
3203 %$$(call MSG_INST_SYM,$(stagedst),$(symdst))
[1599]3204 $$(QUIET)$$(RM) -f -- $$@
[2475]3205 $$(QUIET)$$(LN_SYMLINK) $(symdst) $(stagedst)
3206endef
3207$(eval-opt-var def_install_symlink_rule_staging)
[353]3208
[2475]3209define def_install_symlink_rule_installing
3210$(instdst) : | $(dir $(instdst))
3211 %$$(call MSG_INST_SYM,$(instdst),$(symdst))
3212 $$(QUIET)$$(RM) -f -- $$@
3213 $$(QUIET)$$(LN_SYMLINK) $(symdst) $(instdst)
3214endef
3215$(eval-opt-var def_install_symlink_rule_installing)
3216
3217
3218##
3219# Create one symlink.
3220#
[353]3221define def_install_symlink
3222
3223# deal with '=>' in the source file name.
[1496]3224local symdst := $(subst =>, ,$(src))
3225local symlnk := $(firstword $(symdst))
3226local symdst := $(word $(words $(symdst)),$(symdst))
[353]3227
[2517]3228# Figure which install function to use below.
[380]3229ifdef $(symlnk)_INSTFUN
[1496]3230 local instfun := $(symlnk)_INSTFUN
[353]3231else
[2475]3232 local instfun := $(top_instfun)
[353]3233endif
3234
[2517]3235# Calc stage destination and generate the rule (requires double evaluation).
3236local stage := $(strip $(firstdefined $(symlnk)_STAGE $(symlnk)_INST $(target)_1_STAGE,value))
3237if "$(substr $(stage),-1)" != "/" && "$(stage)" != ""
3238 $(warning kBuild: Symlink $(symlnk) in install target $(target) has a STAGE/INST property without a trailing slash: '$(stage)')
3239 local stage := $(stage)/
[353]3240endif
[2517]3241local stage := $(stage)$(dir $(srcdstdir))
3242ifeq ($(root $(stage)),)
3243 local stagedst := $(call $(instfun),$(symlnk),$(target),$(stage),$(PATH_STAGE))
3244else
[2518]3245 local stage := $(abspath $(stage))/
[2517]3246 ifeq ($(pos $(PATH_OBJ),$(stage)),1)
[2518]3247 local stage := $(substr $(stage), $(expr $(length-var PATH_OBJ) + 2))
[2517]3248 local stagedst := $(call $(instfun),$(symlnk),$(target),$(stage),$(PATH_OBJ))
3249 else
3250 $(error kBuild: Symlink $(symlnk) in install target $(target) has a STAGE/INST property with an absolute path outside PATH_OBJ: '$(stage)')
3251 endif
[2475]3252endif
[353]3253
[2475]3254$(eval $(def_install_symlink_rule_staging))
3255$(target)_2_STAGE_TARGETS += $(stagedst)
[353]3256
[2517]3257# Calcuate the install destiation and generate the rule (if necessary).
[2475]3258ifeq ($(instmode),both)
[2517]3259 local inst := $(strip $(firstdefined $(symlnk)_INST $(target)_1_INST,value))
3260 if "$(substr $(inst),-1)" != "/" && "$(inst)" != ""
3261 $(warning kBuild: Symlink $(symlnk) in install target $(target) has a INST property without a trailing slash: '$(inst)')
3262 local inst := $(inst)/
3263 endif
3264 ifneq ($(root $(inst)),)
3265 $(error kBuild: Symlink $(symlnk) in install target $(target) has a INST property with an absolute path: '$(inst)')
3266 endif
3267 local inst := $(inst)$(dir $(srcdstdir))
3268 local instdst := $(call $(instfun),$(symlnk),$(target),$(inst),$(PATH_INS))
[2475]3269 $(eval $(def_install_symlink_rule_installing))
3270 $(target)_2_INST_TARGETS += $(instdst)
3271endif
3272
[2517]3273#$(warning symlnk=$(symlnk) symdst=$(symdst) instdst=$(instdst) stagedst=$(stagedst) instfun=$(instfun) inst=$(inst) stage='$(stage)')
[1936]3274endef # def_install_symlink
3275$(optmize def_install_symlink)
[353]3276
[412]3277
[2475]3278##
3279# Generate an directory installtion rule.
3280# Note. Used both for staging and real install rules.
3281#
[380]3282define def_install_directory_rule
3283# the install rule
3284$(insdst):
[1496]3285 %$$(call MSG_INST_DIR,$(insdst))
[696]3286 $$(QUIET)$$(INSTALL) -d \
[380]3287 $(if $(uid),-o $(uid))\
3288 $(if $(gid),-g $(gid))\
3289 $(if $(mode),-m $(mode))\
[1599]3290 $(flags) -- \
[380]3291 $(insdst)
[412]3292
3293.NOTPARALLEL: $(insdst)
[1936]3294endef # def_install_directory_rule
3295$(eval-opt-var def_install_directory_rule)
[380]3296
[2475]3297##
3298# Create one directory.
3299#
[380]3300define def_install_directory
3301
[2475]3302# gather common properties.
[1496]3303local mode := $(firstword \
[481]3304 $($(target)_$(directory)_MODE.$(bld_trg).$(bld_trg_arch)) \
[380]3305 $($(target)_$(directory)_MODE.$(bld_trg)) \
3306 $($(target)_$(directory)_MODE) \
[481]3307 $($(directory)_MODE.$(bld_trg).$(bld_trg_arch)) \
[380]3308 $($(directory)_MODE.$(bld_trg)) \
3309 $($(directory)_MODE) \
[2475]3310 $(top_mode) )
[1496]3311local uid := $(firstword \
[481]3312 $($(target)_$(directory)_UID.$(bld_trg).$(bld_trg_arch)) \
[380]3313 $($(target)_$(directory)_UID.$(bld_trg)) \
3314 $($(target)_$(directory)_UID) \
[481]3315 $($(directory)_UID.$(bld_trg).$(bld_trg_arch)) \
[380]3316 $($(directory)_UID.$(bld_trg)) \
3317 $($(directory)_UID) \
[2475]3318 $(top_uid) )
[1496]3319local gid := $(firstword \
[481]3320 $($(target)_$(directory)_GID.$(bld_trg).$(bld_trg_arch)) \
[380]3321 $($(target)_$(directory)_GID.$(bld_trg)) \
3322 $($(target)_$(directory)_GID) \
[481]3323 $($(directory)_GID.$(bld_trg).$(bld_trg_arch)) \
[380]3324 $($(directory)_GID.$(bld_trg)) \
3325 $($(directory)_GID) \
[2475]3326 $(top_gid) )
[1496]3327local flags := \
[2475]3328 $(top_idflags) \
[830]3329 $($(directory)_IDFLAGS) \
3330 $($(directory)_IDFLAGS.$(bld_trg)) \
3331 $($(directory)_IDFLAGS.$(bld_trg).$(bld_trg_arch)) \
3332 $($(target)_$(directory)_IDFLAGS) \
3333 $($(target)_$(directory)_IDFLAGS.$(bld_trg)) \
[2475]3334 $($(target)_$(directory)_IDFLAGS.$(bld_trg).$(bld_trg_arch)) \
[380]3335
[2475]3336# The staging rule (requires double evaluation).
[2517]3337local stage := $(strip $(firstdefined $(directory)_STAGE $(directory)_INST $(target)_1_STAGE,value))
3338if "$(substr $(stage),-1)" != "/" && "$(stage)" != ""
3339 $(warning kBuild: Directory $(directory) in install target $(target) has a STAGE/INST property without a trailing slash: '$(stage)')
3340 local stage := $(stage)/
3341endif
3342ifeq ($(root $(stage)),)
3343 local insdst := $(PATH_STAGE)/$(stage)$(directory)/
3344else
[2518]3345 local stage := $(abspath $(stage))/
[2517]3346 ifeq ($(pos $(PATH_OBJ),$(stage)),1)
3347 local insdst := $(stage)$(directory)/
3348 else
3349 $(error kBuild: Directory $(directory) in install target $(target) has a STAGE/INST property with an absolute path outside PATH_OBJ: '$(stage)')
3350 endif
3351endif
3352
[2475]3353$(target)_2_STAGE_DIR_TARGETS += $(insdst)
[380]3354$(eval $(def_install_directory_rule))
3355
[2475]3356# The install rule.
3357ifeq ($(insttype),both)
[2517]3358 local inst := $(strip $(firstdefined $(directory)_INST $(target)_1_INST,value))
3359 ifneq ($(substr $(inst),-1),/)
3360 $(warning kBuild: Directory $(directory) in install target $(target) has a INST property without a trailing slash: '$(inst)')
3361 local inst := $(inst)/
3362 endif
[2519]3363 ifneq ($(root $(stage)),)
3364 $(error kBuild: Directory $(directory) in install target $(target) has a INST property with an absolute path: '$(inst)')
[2517]3365 endif
[2514]3366 local insdst := $(PATH_INS)/$(inst)$(directory)/
[2475]3367 $(target)_2_INST_DIR_TARGETS += $(insdst)
3368 $(eval $(def_install_directory_rule))
3369endif
3370
[2517]3371#$(warning directory=$(directory) inst=$(inst) stage=$(stage) mode=$(mode) gid=$(gid) uid=$(uid))
[1936]3372endef # def_install_directory
3373$(eval-opt-var def_install_directory)
[380]3374
3375
[2475]3376##
3377# Process one install target.
3378#
[353]3379define def_install
[744]3380# the basics.
[2475]3381local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
3382local bld_trg := $(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))
3383local bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(KBUILD_TARGET_ARCH))
3384local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(KBUILD_TARGET_CPU))
3385local insttype := $($(target)_1_INSTTYPE)
[353]3386
[2475]3387ifneq ($(insttype),none)
3388 $(target)_2_STAGE_TARGETS := $($(target)_GOALS) $($(target)_STAGE_ONLY_GOALS)
3389else
3390 $(target)_2_STAGE_TARGETS :=
3391endif
3392$(target)_2_STAGE_DIR_TARGETS :=
3393
3394ifeq ($(insttype),both)
3395 $(target)_2_INST_TARGETS := $($(target)_GOALS) $($(target)_INST_ONLY_GOALS)
3396else
3397 $(target)_2_INST_TARGETS :=
3398endif
3399$(target)_2_INST_DIR_TARGETS :=
3400
3401
3402local outbase := $(call TARGET_BASE,$(target),$(target))
[2239]3403$(target)_0_OUTDIR := $(patsubst %/,%,$(dir $(outbase)))
[2436]3404$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
[380]3405
[2475]3406ifneq ($(insttype),none)
3407 # cache top level target properties.
3408 local top_mode := $(firstword \
3409 $($(target)_MODE.$(bld_trg).$(bld_trg_arch)) \
3410 $($(target)_MODE.$(bld_trg)) \
3411 $($(target)_MODE) )
[2483]3412 local top_exec_mode := $(firstword \
3413 $($(target)_EXEC_MODE.$(bld_trg).$(bld_trg_arch)) \
3414 $($(target)_EXEC_MODE.$(bld_trg)) \
3415 $($(target)_EXEC_MODE) )
[2475]3416 local top_uid := $(firstword \
3417 $($(target)_UID.$(bld_trg).$(bld_trg_arch)) \
3418 $($(target)_UID.$(bld_trg)) \
3419 $($(target)_UID) )
3420 local top_gid := $(firstword \
3421 $($(target)_GID.$(bld_trg).$(bld_trg_arch)) \
3422 $($(target)_GID.$(bld_trg)) \
3423 $($(target)_GID) )
3424 local top_ifflags := \
3425 $($(target)_IFFLAGS) \
3426 $($(target)_IFFLAGS.$(bld_trg)) \
[2477]3427 $($(target)_IFFLAGS.$(bld_trg).$(bld_trg_arch))
[2475]3428 local top_idflags := \
3429 $($(target)_IDFLAGS) \
3430 $($(target)_IDFLAGS.$(bld_trg)) \
3431 $($(target)_IDFLAGS.$(bld_trg).$(bld_trg_arch))
3432 ifdef $(target)_INSTFUN
3433 local top_instfun := $(target)_INSTFUN
3434 else
3435 local top_instfun := _INSTALL_FILE
3436 endif
[1614]3437
[2475]3438 $(foreach directory, \
3439 $($(target)_DIRS) \
3440 $($(target)_DIRS.$(bld_trg)) \
3441 $($(target)_DIRS.$(bld_trg).$(bld_trg_arch)) \
3442 $($(target)_DIRS.$(bld_trg_arch)) \
3443 $($(target)_DIRS.$(bld_trg_cpu)) \
3444 $($(target)_DIRS.$(bld_type)), \
3445 $(evalval def_install_directory))
[380]3446
[2475]3447 local clean_files := \
3448 $($(target)_CLEAN) \
3449 $($(target)_CLEAN.$(bld_trg)) \
3450 $($(target)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
3451 $($(target)_CLEAN.$(bld_trg_arch)) \
3452 $($(target)_CLEAN.$(bld_trg_cpu)) \
3453 $($(target)_CLEAN.$(bld_type))
[353]3454
[2483]3455 local source_type_prefix :=
3456 local source_type_mode := $(firstword $(top_mode) a+r,u+w)
[2475]3457 $(foreach src,\
3458 $($(target)_SOURCES) \
3459 $($(target)_SOURCES.$(bld_trg)) \
3460 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) \
3461 $($(target)_SOURCES.$(bld_trg_arch)) \
3462 $($(target)_SOURCES.$(bld_trg_cpu)) \
3463 $($(target)_SOURCES.$(bld_type)), \
3464 $(evalval def_install_src))
[353]3465
[2483]3466 local source_type_prefix := EXEC_
3467 local source_type_mode := $(firstword $(top_exec_mode) a+xr,u+w)
[2475]3468 $(foreach src,\
[2483]3469 $($(target)_EXEC_SOURCES) \
3470 $($(target)_EXEC_SOURCES.$(bld_trg)) \
3471 $($(target)_EXEC_SOURCES.$(bld_trg).$(bld_trg_arch)) \
3472 $($(target)_EXEC_SOURCES.$(bld_trg_arch)) \
3473 $($(target)_EXEC_SOURCES.$(bld_trg_cpu)) \
3474 $($(target)_EXEC_SOURCES.$(bld_type)), \
3475 $(evalval def_install_src))
3476
3477 $(foreach src,\
[2475]3478 $($(target)_SYMLINKS) \
3479 $($(target)_SYMLINKS.$(bld_trg)) \
3480 $($(target)_SYMLINKS.$(bld_trg).$(bld_trg_arch)) \
3481 $($(target)_SYMLINKS.$(bld_trg_arch)) \
3482 $($(target)_SYMLINKS.$(bld_trg_cpu)) \
3483 $($(target)_SYMLINKS.$(bld_type)), \
3484 $(evalval def_install_symlink))
3485else # none
3486 local clean_files :=
3487endif
3488
3489# The collection targets (staging only).
3490local clean_files += $($(target)_1_TARGET)
3491$($(target)_1_TARGET): $$($(target)_2_STAGE_TARGETS) | $$($(target)_2_STAGE_DIR_TARGETS) $$(dir $$@)
[827]3492 @$(QUIET2)$(APPEND) $@
3493
[2238]3494$(target): $$($(target)_1_TARGET)
[827]3495
[2475]3496# Update Global lists.
3497_INSTALLS += $($(target)_1_TARGET)
3498_STAGE_FILES += $($(target)_2_STAGE_TARGETS)
3499_STAGE_DIRS += $($(target)_2_STAGE_DIR_TARGETS)
3500_INSTALLS_FILES += $($(target)_2_INST_TARGETS)
3501_INSTALLS_DIRS += $($(target)_2_INST_DIR_TARGETS)
3502_CLEAN_FILES += $(clean_files)
3503_DIRS += \
3504 $($(target)_0_OUTDIR) \
3505 $($(target)_BLDDIRS) \
3506 $($(target)_BLDDIRS.$(bld_trg)) \
3507 $($(target)_BLDDIRS.$(bld_trg).$(bld_trg_arch)) \
3508 $($(target)_BLDDIRS.$(bld_trg_arch)) \
3509 $($(target)_BLDDIRS.$(bld_trg_cpu)) \
3510 $($(target)_BLDDIRS.$(bld_type))
3511
3512# Deprecated properties.
3513INSTARGET_$(target) := $($(target)_2_STAGE_TARGETS)
3514INSTARGET_DIRS_$(target) := $($(target)_2_STAGE_DIR_TARGETS)
3515
[1936]3516endef # def_install
3517$(eval-opt-var def_install)
[353]3518
[2479]3519## Do pass 1 on the implicit targets and add them to the list.
3520$(foreach target, $(_ALL_INSTALLS_IMPLICIT), \
3521 $(evalval def_pass1_install))
3522_ALL_INSTALLS += $(_ALL_INSTALLS_IMPLICIT)
3523
3524## Do pass 2 on all install targets.
[1648]3525$(foreach target, $(_ALL_INSTALLS), \
[1614]3526 $(evalvalctx def_install))
[353]3527
[988]3528ifdef KBUILD_PROFILE_SELF
[2008]3529 $(evalcall def_profile_self, done install targets)
[988]3530endif
[353]3531
[2475]3532#
[2227]3533# Some introspection targets that can be useful for package maintainers.
[2475]3534#
[2227]3535.PHONY: kbuild-show-install-files kbuild-show-install-dirs
3536kbuild-show-install-files::
3537 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_INS)/,,$(_INSTALLS_FILES)))
3538
3539kbuild-show-install-dirs::
3540 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_INS)/,,$(_INSTALLS_DIRS)))
3541
[2475]3542kbuild-show-stage-files::
3543 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_STAGE)/,,$(_STAGE_FILES)))
[2227]3544
[2475]3545kbuild-show-stage-dirs::
3546 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_STAGE)/,,$(_STAGE_DIRS)))
3547
3548
[1646]3549#
3550# TESTING
3551#
[2475]3552_TESTING += $(TESTING) \
3553 $(TESTING.$(KBUILD_TARGET)) \
3554 $(TESTING.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
3555 $(TESTING.$(KBUILD_TARGET_ARCH)) \
3556 $(TESTING.$(KBUILD_TARGET_CPU))
[988]3557
[1646]3558
[72]3559#
[417]3560# PACKING
3561#
[2475]3562_PACKING += $(PACKING) \
3563 $(PACKING.$(KBUILD_TARGET)) \
3564 $(PACKING.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
3565 $(PACKING.$(KBUILD_TARGET_ARCH)) \
3566 $(PACKING.$(KBUILD_TARGET_CPU))
[417]3567
3568
3569#
[72]3570# DOCS
3571#
3572
3573
3574#
[353]3575# DIRECTORIES
3576#
[2475]3577_DIR_ALL := $(sort $(addsuffix /,$(patsubst %/,%,$(_DIRS))) $(dir $(_OUT_FILES) $(_OBJS) $(_INSTALLS_FILES) $(_STAGE_FILES)))
3578$(foreach directory,$(_INSTALLS_DIRS) $(_STAGE_DIRS), $(eval _DIR_ALL := $(filter-out $(directory),$(_DIR_ALL))))
[353]3579
[380]3580
[353]3581define def_mkdir_rule
3582$(directory):
[1496]3583 %$$(call MSG_MKDIR,$$@)
[1599]3584 $$(QUIET)$$(MKDIR) -p -- $$@
[72]3585endef
3586
[353]3587$(foreach directory,$(_DIR_ALL),$(eval $(def_mkdir_rule)))
[72]3588
[988]3589ifdef KBUILD_PROFILE_SELF
[2008]3590 $(evalcall def_profile_self, done directories)
[988]3591endif
[183]3592
[988]3593
[72]3594#
[353]3595# NOTHING
[72]3596#
[353]3597do-nothing:
[2008]3598 %$(call MSG_NOTHING)
[988]3599ifdef KBUILD_PROFILE_SELF
[2008]3600 @$(ECHO) 'prof: $(call _KBUILD_FMT_ELAPSED_EX, $(nanots ), $(_KBUILD_TS_HEADER_START)) - $(call _KBUILD_FMT_ELAPSED_EX, $(nanots ), $(_KBUILD_TS_PREV)) - executing $@'
3601 ifeq ($(KBUILD_PROFILE_SELF),2)
[1456]3602 @$(ECHO) 'stat: $(make-stats )'
[2008]3603 endif
[988]3604endif
[72]3605
[183]3606
[75]3607#
[353]3608# CLEAN UP
[75]3609#
[353]3610do-clean:
[1496]3611 %$(call MSG_CLEAN)
[2475]3612 $(QUIET)$(RM) -f -- \
3613 $(_OUT_FILES) \
3614 $(_OBJS) \
3615 $(_DEPFILES) \
3616 $(_DEPFILES_INCLUDED) \
3617 $(_CLEAN_FILES) \
3618 $(OTHER_CLEAN) \
3619 $(_STAGE_FILES)
3620 $(QUIET)$(RMDIR) -p --ignore-fail-on-non-empty --ignore-fail-on-not-exist -- \
3621 $(rsort $(dir $(_OUT_FILES) \
3622 $(_OBJS) \
3623 $(_DEPFILES) \
3624 $(_DEPFILES_INCLUDED) \
3625 $(_CLEAN_FILES) \
3626 $(OTHER_CLEAN))\
3627 $(_STAGE_DIRS) )
[72]3628
[98]3629
[897]3630
[353]3631#
3632# PASSES (including directory and makefile walking)
3633#
[221]3634
[1667]3635#
3636# First, check whether we need to order the passes explicitly or not.
3637# This depends on whether we're a leaf makefile or not. A leaf will
3638# know all its dependencies, while a recursive one relies on the
3639# order sub-directories and other makefiles are executed it.
3640#
3641
3642## Setup a pass and check for optimizations.
3643# @param $(PASS) Uppercase pass name.
3644define def_pass_setup_and_optimize
3645
3646# The setup. ## @todo This is looks a bit weird...
3647ifndef SUBDIRS_$(PASS)
[2389]3648 SUBDIRS_$(PASS) := $(SUBDIRS) $(SUBDIRS.$(KBUILD_TARGET)) $(SUBDIRS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
[1667]3649endif
3650ifndef SUBDIRS_AFTER_$(PASS)
3651 SUBDIRS_AFTER_$(PASS) := $(SUBDIRS_AFTER) $(SUBDIRS_AFTER.$(KBUILD_TARGET)) $(SUBDIRS_AFTER.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
3652endif
3653ifndef MAKEFILES_BEFORE_$(PASS)
3654 MAKEFILES_BEFORE_$(PASS) := $(MAKEFILES_BEFORE) $(MAKEFILES_BEFORE.$(KBUILD_TARGET)) $(MAKEFILES_BEFORE.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
3655endif
3656ifndef MAKEFILES_AFTER_$(PASS)
3657 MAKEFILES_AFTER_$(PASS) := $(MAKEFILES_AFTER) $(MAKEFILES_AFTER.$(KBUILD_TARGET)) $(MAKEFILES_AFTER.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
3658endif
3659
3660# The check.
3661ifeq ($(_KBUILD_STRICT_PASS_ORDER),nonstrict)
3662 ifneq ($(strip \
3663 $(SUBDIRS_$(PASS)) $(SUBDIRS_$(PASS).$(KBUILD_TARGET)) $(SUBDIRS_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
3664 $(MAKEFILES_BEFORE_$(PASS)) $(MAKEFILES_BEFORE_$(PASS).$(KBUILD_TARGET)) $(MAKEFILES_BEFORE_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
3665 $(SUBDIRS_AFTER_$(PASS)) $(SUBDIRS_AFTER_$(PASS).$(KBUILD_TARGET)) $(SUBDIRS_AFTER_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
3666 $(MAKEFILES_AFTER_$(PASS)) $(MAKEFILES_AFTER_$(PASS).$(KBUILD_TARGET)) $(MAKEFILES_AFTER_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
3667 ),)
3668 _KBUILD_STRICT_PASS_ORDER := strict
3669 endif
3670endif # _KBUILD_STRICT_PASS_ORDER == nonstrict
3671endef # def_pass_setup_and_optimize
[1936]3672$(eval-opt-var def_pass_setup_and_optimize)
[1667]3673
3674## PASS: Setup & optimization.
3675# Check if we can apply the non-strict pass order optimzation (no SUBDIRS_* and MAKEFILES_*),
3676# and set up the pass specific variables as we go along.
3677_KBUILD_STRICT_PASS_ORDER := nonstrict
3678$(foreach PASS, $(PASSES), $(evalval def_pass_setup_and_optimize))
3679#$ (error _KBUILD_STRICT_PASS_ORDER=$(_KBUILD_STRICT_PASS_ORDER))
3680
[2058]3681ifeq ($(_KBUILD_STRICT_PASS_ORDER),strict)
[2059]3682 if !defined(KBUILD_SAFE_PARALLEL) || "$(KMK_OPT_JOBS)" == "1"
[2058]3683_KBUILD_STRICT_PASS_ORDER := strict_unsafe
3684 endif
3685endif
[1667]3686
[2058]3687
[75]3688## Subdir
3689# @param $(pass) Lowercase pass name.
3690# @param $(PASS) Uppercase pass name.
3691# @param $(subdir) Subdirectory
3692# @param $(tag) tag to attach to the rule name.
3693define def_pass_subdir
[219]3694pass_$(pass)$(tag):: $(dep)
[696]3695 + $$(QUIET)$$(MAKE) -C $(subdir) -f $$(notdir $$(firstword $$(wildcard $$(addprefix $(subdir)/,$$(DEFAULT_MAKEFILE))))) pass_$(pass)
[75]3696endef
[72]3697
[75]3698## Submakefile
3699# @param $(pass) Lowercase pass name.
3700# @param $(PASS) Uppercase pass name.
[1667]3701# @param $(makefile) Makefile.
[75]3702# @param $(tag) tag to attach to the rule name.
3703define def_pass_makefile
[219]3704pass_$(pass)$(tag):: $(dep)
[696]3705 + $$(QUIET)$$(MAKE) -C $(patsubst %/,%,$(dir $(makefile))) -f $(notdir $(makefile)) pass_$(pass)
[75]3706endef
[73]3707
[1667]3708## Execute a pass, strict order.
[75]3709# @param $(pass) Lowercase pass name.
3710# @param $(PASS) Uppercase pass name.
[1667]3711define def_pass_strict
[75]3712$(eval tag:=_before)
[2058]3713$(eval dep:= )
[1667]3714$(foreach subdir, $(SUBDIRS_$(PASS)) $(SUBDIRS_$(PASS).$(KBUILD_TARGET)) $(SUBDIRS_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
[1504]3715$(foreach makefile,$(MAKEFILES_BEFORE_$(PASS)) $(MAKEFILES_BEFORE_$(PASS).$(KBUILD_TARGET)) $(MAKEFILES_BEFORE_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)),$(eval $(def_pass_makefile)))
[75]3716
[353]3717$(eval tag:=_after)
3718$(eval dep:=pass_$(pass)_doit)
[1667]3719$(foreach subdir, $(SUBDIRS_AFTER_$(PASS)) $(SUBDIRS_AFTER_$(PASS).$(KBUILD_TARGET)) $(SUBDIRS_AFTER_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
[1504]3720$(foreach makefile,$(MAKEFILES_AFTER_$(PASS)) $(MAKEFILES_AFTER_$(PASS).$(KBUILD_TARGET)) $(MAKEFILES_AFTER_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) ,$(eval $(def_pass_makefile)))
[75]3721
[353]3722.NOTPARALLEL: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_this
3723.PHONY: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_this pass_$(pass)_doit
[2058]3724pass_$(pass)_doit: $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$($(var)))
[353]3725pass_$(pass)_this: pass_$(pass)_before
[696]3726 + $$(QUIET)$$(MAKE) -f $$(MAKEFILE) pass_$(pass)_doit
[353]3727pass_$(pass)_after:: pass_$(pass)_this
3728pass_$(pass): pass_$(pass)_after
[2058]3729#$ (warning pass=$(pass) PASS=$(PASS): $(PASS_$(PASS)_trgs) $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$($(var))))
3730endef # def_pass_strict
3731$(eval-opt-var def_pass_strict)
3732
3733## Execute a pass, strict order.
3734# @param $(pass) Lowercase pass name.
3735# @param $(PASS) Uppercase pass name.
3736define def_pass_strict_unsafe
3737$(eval tag:=_before)
3738$(eval dep:= )
3739$(foreach subdir, $(SUBDIRS_$(PASS)) $(SUBDIRS_$(PASS).$(KBUILD_TARGET)) $(SUBDIRS_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
3740$(foreach makefile,$(MAKEFILES_BEFORE_$(PASS)) $(MAKEFILES_BEFORE_$(PASS).$(KBUILD_TARGET)) $(MAKEFILES_BEFORE_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)),$(eval $(def_pass_makefile)))
3741
3742$(eval tag:=_after)
3743$(eval dep:=pass_$(pass)_doit)
3744$(foreach subdir, $(SUBDIRS_AFTER_$(PASS)) $(SUBDIRS_AFTER_$(PASS).$(KBUILD_TARGET)) $(SUBDIRS_AFTER_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) ,$(eval $(def_pass_subdir)))
3745$(foreach makefile,$(MAKEFILES_AFTER_$(PASS)) $(MAKEFILES_AFTER_$(PASS).$(KBUILD_TARGET)) $(MAKEFILES_AFTER_$(PASS).$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) ,$(eval $(def_pass_makefile)))
3746
[1667]3747.PHONY: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_doit
[388]3748.NOTPARALLEL: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_doit
[353]3749pass_$(pass)_doit: pass_$(pass)_before \
3750 $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$($(var)))
3751pass_$(pass): \
3752 pass_$(pass)_before \
3753 pass_$(pass)_doit \
[1667]3754 pass_$(pass)_after
[353]3755#$ (warning pass=$(pass) PASS=$(PASS): $(PASS_$(PASS)_trgs) $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$($(var))))
[2058]3756endef # def_pass_strict_unsafe
3757$(eval-opt-var def_pass_strict_unsafe)
[75]3758
[1667]3759## Execute a pass, non-strict pass ordering.
3760# @param $(pass) Lowercase pass name.
3761# @param $(PASS) Uppercase pass name.
3762define def_pass_nonstrict
3763.PHONY: pass_$(pass) pass_$(pass)_before pass_$(pass)_after pass_$(pass)_doit
[1919]3764pass_$(pass)_doit: $(PASS_$(PASS)_trgs) $(foreach var,$(PASS_$(PASS)_vars),$$$$($(var)))
[1667]3765pass_$(pass): pass_$(pass)_doit
3766endef # def_pass_nonstrict
3767
3768## PASS: rules
3769# Generate the rules for the defined passes.
[353]3770$(foreach PASS, $(PASSES), \
3771 $(eval pass := $(PASS_$(PASS)_pass)) \
[1667]3772 $(eval $(def_pass_$(_KBUILD_STRICT_PASS_ORDER))))
[75]3773
[1667]3774
3775## Pass order, strict.
[219]3776# @param $(pass) Current pass name.
3777# @param $(prev_pass) The previous pass name.
[1667]3778define def_pass_order_strict
3779.PHONY: pass_$(pass)_order
[353]3780.NOTPARALLEL: pass_$(pass)_order
[219]3781pass_$(pass)_order: $(pass_prev)
[1496]3782 %$$(call MSG_PASS,$$(if $$(PASS_$(PASS)),$$(PASS_$(PASS)),$(pass)))
[696]3783 + $$(QUIET)$$(MAKE) -f $$(MAKEFILE) pass_$(pass)
[2058]3784$(eval pass_prev := pass_$(pass)_order)
3785endef # def_pass_order_strict
3786$(eval-opt-var def_pass_order_strict)
3787
3788## Pass order, strict unsafe.
3789# @param $(pass) Current pass name.
3790# @param $(prev_pass) The previous pass name.
3791define def_pass_order_strict_unsafe
[353]3792.NOTPARALLEL: pass_$(pass)_order pass_$(pass)_banner
[388]3793.PHONY: pass_$(pass)_order pass_$(pass)_banner
[2058]3794pass_$(pass)_banner: $(pass_prev)
[1496]3795 %$$(call MSG_PASS,$$(if $$(PASS_$(PASS)),$$(PASS_$(PASS)),$(pass)))
[2058]3796pass_$(pass)_order: $(pass_prev) \
[353]3797 pass_$(pass)_banner \
3798 pass_$(pass)
[219]3799$(eval pass_prev := pass_$(pass)_order)
[2058]3800endef # def_pass_order_strict_unsafe
3801$(eval-opt-var def_pass_order_strict_unsafe)
[183]3802
[1667]3803## Pass order, non-strict.
3804# @param $(pass) Current pass name.
3805# @param $(prev_pass) The previous pass name.
3806define def_pass_order_nonstrict
3807.PHONY: pass_$(pass)_order pass_$(pass)_banner
3808pass_$(pass)_banner:
3809 %$$(call MSG_PASS,$$(if $$(PASS_$(PASS)),$$(PASS_$(PASS)),$(pass)))
3810pass_$(pass)_order: \
3811 $(pass_prev) \
3812 pass_$(pass)_banner \
3813 pass_$(pass)
3814$(eval pass_prev := pass_$(pass)_order)
3815endef # def_pass_order_nonstrict
[1936]3816$(eval-opt-var def_pass_order_nonstrict)
[1667]3817
[219]3818## PASS: order
3819# Use dependencies to ensure correct pass order.
3820pass_prev :=
[353]3821$(foreach PASS,$(DEFAULT_PASSES),\
3822 $(eval pass := $(PASS_$(PASS)_pass)) \
[1667]3823 $(eval $(def_pass_order_$(_KBUILD_STRICT_PASS_ORDER))))
[219]3824
[988]3825ifdef KBUILD_PROFILE_SELF
[2008]3826 $(evalcall def_profile_self, done passes)
[988]3827endif
[272]3828
[2107]3829# Some common pass aliases
3830ifndef KBUILD_NO_PASS_ALIASES
3831.PHONY: clean
3832clean: pass_clean
[897]3833
[2107]3834.PHONY: nothing
3835nothing: pass_nothing
3836
[2475]3837.PHONY: staging
3838staging: pass_staging
3839
[2107]3840.PHONY: packing
3841packing: pass_packing
3842
[2222]3843 ifndef KBUILD_NO_TESTING_PASS_ALIASES
[2107]3844.PHONY: check
3845check:: pass_testing
3846
3847.PHONY: test
3848test:: pass_testing
[2222]3849 endif # KBUILD_NO_TESTING_PASS_ALIASES
3850endif # KBUILD_NO_PASS_ALIASES
[2107]3851
3852
[75]3853#
3854# THE MAIN RULES
3855#
[219]3856all_recursive: $(pass_prev)
[75]3857
[130]3858rebuild: clean
[219]3859 + $(MAKE) -f $(firstword $(MAKEFILE_LIST)) all_recursive
[78]3860
[412]3861# @todo make this a non-default pass!
[2106]3862uninstall::
[1599]3863 $(RM) -f -- $(_INSTALLS_FILES)
[412]3864
[2106]3865install:: pass_installs
[78]3866
[1919]3867# misc shortcuts (use secondary expansion here to save strcache[file] space).
[2084]3868targets: bldprogs libraries dlls programs sysmods miscbins others installs
[1919]3869objects: $$(_OBJS)
3870bldprogs: $$(_BLDPROGS)
3871libraries: $$(_LIBS) $$(_IMPORT_LIBS) $$(_OTHER_LIBRARIES)
3872dlls: $$(_DLLS)
3873programs: $$(_PROGRAMS)
3874sysmods: $$(_SYSMODS)
[2084]3875miscbins: $$(_MISCBINS)
[1919]3876others: $$(_OTHERS)
[2475]3877stagings: $$(_INSTALLS) $$(_STAGE_DIRS) $$(_STAGE_FILES)
3878installs: $$(_INSTALLS_DIRS) $$(_INSTALLS_FILES)
[75]3879
3880
[897]3881
[353]3882#
3883# kBuild debugging stuff.
3884#
[1667]3885## @todo this doesn't work. Move to a debug unit and expand it.
[353]3886show_targets:
[984]3887 @$(foreach target, $(_ALL_TARGETS),\
[353]3888 @$(ECHO) "target: $(target)" $(NLTAB)\
[2239]3889 @$(ECHO) " $(target)_0_OUTDIR=$($(target)_0_OUTDIR)" $(NLTAB)\
[2238]3890 @$(ECHO) " $(target)_1_TARGET=$($(target)_1_TARGET)" $(NLTAB)\
[353]3891 @$(ECHO) " INSTARGET_$(target)=$(INSTARGET_$(target))" $(NLTAB)\
[2236]3892$(foreach prop,$(PROPS_SINGLE) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R) 2_OBJS CLEAN, \
[1504]3893 $(eval _tmp:=$(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))) \
[353]3894 $(if $($(target)_$(prop).$(_tmp)),\
3895 @$(ECHO) " $(target)_$(prop).$(_tmp)=$($(target)_$(prop).$(_tmp))" $(NLTAB)) \
3896 $(if $($(target)_$(prop)), $(NLTAB)@$(ECHO) " $(target)_$(prop)=$($(target)_$(prop))" $(NLTAB)) \
3897)\
3898$(foreach prop,$(PROPS_DEFERRED), \
[1504]3899 $(eval _tmp:=$(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))) \
[353]3900 $(if $(value $(target)_$(prop).$(_tmp)),\
3901 @$(ECHO) ' $(target)_$(prop).$(_tmp)=$(value $(TARGET)_$(prop).$(_tmp))' $(NLTAB)) \
3902 $(if $(value $(target)_$(prop)), $(NLTAB)@$(ECHO) ' $(target)_$(prop)=$(value $(target)_$(prop))' $(NLTAB)) \
3903))
3904
3905
3906
3907#
3908# Include dependency files.
3909#
[1798]3910ifdef _DEPFILES
3911 # TODO: first works the second doesn't, provided _KB_INCLUDE_DEPS is undefined:
3912 # if "$(_KB_INCLUDE_DEPS)" == "1"
3913 # if $(_KB_INCLUDE_DEPS) == "1"
3914
3915 ifdef KB_HAVE_INCLUDEDEP_QUEUE
3916 includedep-queue $(_DEPFILES)
3917 else
3918 $(foreach dep, $(_DEPFILES), $(eval includedep $(dep)))
3919 endif
[893]3920endif
[353]3921
3922
[988]3923ifdef KBUILD_PROFILE_SELF
[2008]3924 $(evalcall def_profile_self, end of footer.kmk)
3925 _KBUILD_TS_FOOTER_END := $(_KBUILD_TS_PREV)
3926
3927 ifneq ($(KBUILD_PROFILE_SELF),0)
3928 $(info prof: ALL=$(words $(_ALL_TARGETS)) BLDPROGS=$(words $(_ALL_BLDPROGS)) LIBRARIES=$(words $(_ALL_LIBRARIES)) IMPORT_LIBS=$(words $(IMPORT_LIBS)) DLLS=$(words $(DLLS)) PROGRAMS=$(words $(_ALL_PROGRAMS)) )
[2084]3929 $(info prof: SYSMODS=$(words $(_ALL_SYSMODS)) MISCBINS=$(words $(_ALL_MISCBINS)) OTHERS=$(words $(_ALL_OTHERS)) INSTALLS=$(words $(_ALL_INSTALLS)) FETCHES=$(words $(_ALL_FETCHES)) PACKING=$(words $(_PACKING)) TESTING=$(words $(TESTING)) )
[2008]3930 $(info prof: DIRS=$(words $(_DIR_ALL)) TOOLS=$(words $(_TOOLS)) SDKS=$(words $(_SDKS)) USES=$(words $(_USES)) OUT_FILES=$(words $(_OUT_FILES)) OBJS=$(words $(_OBJS)) CLEAN_FILES=$(words $(CLEAN_FILES) $(OTHER_CLEAN)) )
3931 $(info prof: DEPFILES_INCLUDED=$(words $(_DEPFILES_INCLUDED)) DEPFILES=$(words $(_DEPFILES)) MAKEFILES=$(words $(MAKEFILE_LIST)) )
3932 endif
[988]3933endif
3934
[1781]3935
[72]3936# end-of-file-content
[106]3937__footer_kmk__ := target
[2475]3938endif # !defined(__footer_kmk__)
[438]3939
Note: See TracBrowser for help on using the repository browser.