source: trunk/kBuild/footer-pass1.kmk@ 2557

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

footer: Allow INSTTYPE=none and DEBUG_INSTTYPE!=none.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.6 KB
Line 
1# $Id: footer-pass1.kmk 2551 2011-11-09 13:28:02Z bird $
2## @file
3# kBuild - Footer - Target lists - Pass 1.
4#
5# This pass is for defining variables that might be referenced in
6# properties of other targets.
7#
8
9#
10# Copyright (c) 2004-2011 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
11#
12# This file is part of kBuild.
13#
14# kBuild is free software; you can redistribute it and/or modify
15# it under the terms of the GNU General Public License as published by
16# the Free Software Foundation; either version source of the License, or
17# (at your option) any later version.
18#
19# kBuild is distributed in the hope that it will be useful,
20# but WITHOUT ANY WARRANTY; without even the implied warranty of
21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22# GNU General Public License for more details.
23#
24# You should have received a copy of the GNU General Public License
25# along with kBuild; if not, write to the Free Software
26# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27#
28#
29# As a special exception you are granted permission to include this file, via
30# the kmk include directive, as you wish without this in itself causing the
31# resulting makefile, program or whatever to be covered by the GPL license.
32# This exception does not however invalidate any other reasons why the makefile,
33# program, whatever should not be covered the GPL.
34#
35#
36
37
38# Don't do anything for fetch targets (yet).
39
40##
41# Link prolog for Pass 1.
42#
43# @param $(target) Normalized target name.
44# @param $(EXT) EXE,DLL,SYS,LIB.
45# @param $(EXTPRE) HOST or nothing.
46# @param $(definst) The default _INST value.
47# @param $(tool_prefix) LD or AR.
48# @param $(bld_trg_base_var) TARGET or PLATFORM.
49define def_pass1_link_common
50
51local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
52local bld_trg := $(firstword $($(target)_BLD_TRG) $(BUILD_$(bld_trg_base_var)))
53local bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(BUILD_$(bld_trg_base_var)_ARCH))
54local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(BUILD_$(bld_trg_base_var)_CPU))
55
56local tool := $(call _TARGET_TOOL,$(target),$(tool_prefix))
57local name := $(firstword\
58 $($(target)_NAME.$(bld_trg).$(bld_trg_arch).$(bld_type))\
59 $($(target)_NAME.$(bld_trg).$(bld_trg_arch))\
60 $($(target)_NAME.$(bld_trg).$(bld_type))\
61 $($(target)_NAME.$(bld_trg_arch))\
62 $($(target)_NAME.$(bld_trg))\
63 $($(target)_NAME.$(bld_type))\
64 $($(target)_NAME)\
65 $(target))
66local outbase := $(call TARGET_BASE,$(name),$(target))
67$(target)_0_OUTDIR:= $(patsubst %/,%,$(dir $(outbase)))
68$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
69
70## @todo fix the fun at the last line (AR != LIB => mess).
71local suff := $(firstword \
72 $($(target)_$(EXT)SUFF.$(bld_trg).$(bld_trg_arch))\
73 $($(target)_$(EXT)SUFF.$(bld_trg))\
74 $($(target)_$(EXT)SUFF)\
75 $(TOOL_$(tool)_$(tool_prefix)$(EXT)SUFF.$(bld_trg).$(bld_trg_arch))\
76 $(TOOL_$(tool)_$(tool_prefix)$(EXT)SUFF.$(bld_trg))\
77 $(TOOL_$(tool)_$(tool_prefix)$(EXT)SUFF)\
78 $(if $(eq $(tool_prefix),AR),$(SUFF_LIB),$($(EXTPRE)SUFF_$(EXT))) )
79local out := $(outbase)$(suff)
80
81# Object directory target variable.
82$(target)_1_TARGET := $(out)
83$(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
84
85# Staging and install directory target variables.
86local insttype := $(firstword \
87 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
88 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch)) \
89 $($(target)_INSTTYPE.$(bld_trg).$(bld_type)) \
90 $($(target)_INSTTYPE.$(bld_trg_arch)) \
91 $($(target)_INSTTYPE.$(bld_trg_cpu)) \
92 $($(target)_INSTTYPE.$(bld_trg)) \
93 $($(target)_INSTTYPE.$(bld_type)) \
94 $($(target)_INSTTYPE) \
95 )
96ifeq ($(insttype),)
97 ifneq ($(firstword \
98 $($(target)_NOINST) \
99 $($(target)_NOINST.$(bld_trg)) \
100 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch)) \
101 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
102 $($(target)_NOINST.$(bld_trg_arch)) \
103 $($(target)_NOINST.$(bld_trg_cpu)) \
104 $($(target)_NOINST.$(bld_type)) ),)
105 local insttype := none
106 else
107 local insttype := both
108 endif
109endif
110ifn1of ($(insttype), none both stage)
111 $(error kBuild: Unknown value '$(insttype)' for '$(target)_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
112endif
113$(target)_1_INSTTYPE := $(insttype)
114
115if1of ($(insttype), stage both)
116 local inst := $(strip $(firstdefined \
117 $(target)_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
118 $(target)_INST.$(bld_trg).$(bld_trg_arch) \
119 $(target)_INST.$(bld_trg).$(bld_type) \
120 $(target)_INST.$(bld_trg_arch) \
121 $(target)_INST.$(bld_trg_cpu) \
122 $(target)_INST.$(bld_trg) \
123 $(target)_INST.$(bld_type) \
124 $(target)_INST \
125 definst \
126 ,value))
127 local stage := $(strip $(firstdefined \
128 $(target)_STAGE.$(bld_trg).$(bld_trg_arch).$(bld_type) \
129 $(target)_STAGE.$(bld_trg).$(bld_trg_arch) \
130 $(target)_STAGE.$(bld_trg).$(bld_type) \
131 $(target)_STAGE.$(bld_trg_arch) \
132 $(target)_STAGE.$(bld_trg_cpu) \
133 $(target)_STAGE.$(bld_trg) \
134 $(target)_STAGE.$(bld_type) \
135 $(target)_STAGE \
136 inst \
137 ,value))
138 $(target)_1_STAGE := $(stage)
139 if "$(substr $(stage),-1,1)" == "/" # Multicast support requires addprefix/suffix.
140 $(target)_1_STAGE_TARGET := $(addprefix $(PATH_STAGE)/,$(addsuffix $(notdir $(out)),$(stage)))
141 else if "$(stage)" == ""
142 $(target)_1_STAGE_TARGET := $(PATH_STAGE)/$(notdir $(out))
143 else
144 $(target)_1_STAGE_TARGET := $(addprefix $(PATH_STAGE)/,$(stage))
145 endif
146else
147 $(target)_1_STAGE :=
148 $(target)_1_STAGE_TARGET :=
149endif
150INSTARGET_$(target) := $($(target)_1_STAGE_TARGET)
151
152if1of ($(insttype), both)
153 $(target)_1_INST := $(inst)
154 if "$(substr $(inst),-1,1)" == "/" # Multicast support requires addprefix/suffix.
155 $(target)_1_INST_TARGET := $(addprefix $(PATH_INS)/,$(addsuffix $(notdir $(out)),$(inst)))
156 else if "$(inst)" == ""
157 $(target)_1_INST_TARGET := $(PATH_INS)/$(notdir $(out))
158 else
159 $(target)_1_INST_TARGET := $(addprefix $(PATH_INS)/,$(inst))
160 endif
161else
162 $(target)_1_INST :=
163 $(target)_1_INST_TARGET :=
164endif
165
166# Debug info related stuff.
167local debug_insttype := $(firstword \
168 $($(target)_DEBUG_INSTTYPE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
169 $($(target)_DEBUG_INSTTYPE.$(bld_trg).$(bld_trg_arch)) \
170 $($(target)_DEBUG_INSTTYPE.$(bld_trg).$(bld_type)) \
171 $($(target)_DEBUG_INSTTYPE.$(bld_trg_arch)) \
172 $($(target)_DEBUG_INSTTYPE.$(bld_trg_cpu)) \
173 $($(target)_DEBUG_INSTTYPE.$(bld_trg)) \
174 $($(target)_DEBUG_INSTTYPE.$(bld_type)) \
175 $($(target)_DEBUG_INSTTYPE) \
176 $(insttype) )
177ifn1of ($(debug_insttype), none both stage)
178 $(error kBuild: Unknown value '$(debug_insttype)' for '$(target)_DEBUG_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
179endif
180$(target)_1_DEBUG_INSTTYPE := $(debug_insttype)
181
182if1of ($(debug_insttype), stage both)
183 local debug_stage := $(firstdefined \
184 $(target)_DEBUG_STAGE.$(bld_trg).$(bld_trg_arch).$(bld_type) \
185 $(target)_DEBUG_STAGE.$(bld_trg).$(bld_trg_arch) \
186 $(target)_DEBUG_STAGE.$(bld_trg).$(bld_type) \
187 $(target)_DEBUG_STAGE.$(bld_trg_arch) \
188 $(target)_DEBUG_STAGE.$(bld_trg_cpu) \
189 $(target)_DEBUG_STAGE.$(bld_trg) \
190 $(target)_DEBUG_STAGE.$(bld_type) \
191 $(target)_DEBUG_STAGE \
192 $(target)_DEBUG_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
193 $(target)_DEBUG_INST.$(bld_trg).$(bld_trg_arch) \
194 $(target)_DEBUG_INST.$(bld_trg).$(bld_type) \
195 $(target)_DEBUG_INST.$(bld_trg_arch) \
196 $(target)_DEBUG_INST.$(bld_trg_cpu) \
197 $(target)_DEBUG_INST.$(bld_trg) \
198 $(target)_DEBUG_INST.$(bld_type) \
199 $(target)_DEBUG_INST)
200 ifneq ($(debug_stage),)
201 $(target)_1_DEBUG_STAGE := $($(debug_stage))
202 else
203 $(target)_1_DEBUG_STAGE := $(addprefix $(STAGE_DEBUG),$(stage))
204 endif
205 ifndef $(target)_1_DEBUG_STAGE
206 $(target)_1_DEBUG_STAGE := ./
207 endif
208else
209 $(target)_1_DEBUG_STAGE :=
210endif
211
212if1of ($(debug_insttype), both)
213 local debug_inst := $(firstdefined \
214 $(target)_DEBUG_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
215 $(target)_DEBUG_INST.$(bld_trg).$(bld_trg_arch) \
216 $(target)_DEBUG_INST.$(bld_trg).$(bld_type) \
217 $(target)_DEBUG_INST.$(bld_trg_arch) \
218 $(target)_DEBUG_INST.$(bld_trg_cpu) \
219 $(target)_DEBUG_INST.$(bld_trg) \
220 $(target)_DEBUG_INST.$(bld_type) \
221 $(target)_DEBUG_INST)
222 ifneq ($(debug_inst),)
223 $(target)_1_DEBUG_INST := $($(debug_inst))
224 else
225 $(target)_1_DEBUG_INST := $(addprefix $(INST_DEBUG),$(inst))
226 endif
227 ifndef $(target)_1_DEBUG_INST
228 $(target)_1_DEBUG_INST := ./
229 endif
230else
231 $(target)_1_DEBUG_INST :=
232endif
233#$(warning $(NLTAB)$(target)_1_DEBUG_INST=$($(target)_1_DEBUG_INST)$(NLTAB)$(target)_1_DEBUG_STAGE=$($(target)_1_DEBUG_STAGE)$(NLTAB)insttype=$(insttype)$(NLTAB)debug_insttype=$(debug_insttype))
234
235endef # def_pass1_link_common
236$(eval-opt-var def_pass1_link_common)
237
238
239#
240# BLDPROGS (Pass 1)
241#
242define def_pass1_bldprog
243# set NOINST if not forced installation before doing the usual stuff.
244ifndef $(target)_INST
245$(target)_INSTTYPE := none
246endif
247$(evalval def_pass1_link_common)
248endef
249
250EXT := EXE
251EXTPRE := HOST
252definst := $(INST_BIN)
253tool_prefix := LD
254bld_trg_base_var := PLATFORM
255$(foreach target, $(_ALL_BLDPROGS), \
256 $(evalval def_pass1_bldprog))
257
258
259#
260# LIBRARIES (Pass 1)
261#
262EXT := LIB
263EXTPRE :=
264definst := $(INST_LIB)
265tool_prefix := AR
266bld_trg_base_var := TARGET
267$(foreach target, $(_ALL_LIBRARIES), \
268 $(evalval def_pass1_link_common))
269
270
271#
272# DLLS (Pass 1)
273#
274EXT := DLL
275EXTPRE :=
276definst := $(INST_DLL)
277tool_prefix := LD
278bld_trg_base_var := TARGET
279$(foreach target, $(_ALL_DLLS), \
280 $(evalval def_pass1_link_common))
281
282
283#
284# IMPORT LIBRARIES (Pass 1)
285#
286# - On OS/2 and windows these are libraries.
287# - On other platforms they are fake DLLs.
288#
289if1of ($(KBUILD_TARGET), nt os2 win win64 win32)
290 EXT := LIB
291 EXTPRE :=
292 definst := $(INST_LIB)
293 tool_prefix := AR
294 bld_trg_base_var := TARGET
295 $(foreach target, $(_ALL_IMPORT_LIBS), \
296 $(evalval def_pass1_link_common))
297else
298 EXT := DLL
299 EXTPRE :=
300 definst := $(INST_DLL)
301 tool_prefix := LD
302 bld_trg_base_var := TARGET
303 $(foreach target, $(_ALL_IMPORT_LIBS), \
304 $(evalval def_pass1_link_common))
305endif
306
307
308#
309# PROGRAMS (Pass 1)
310#
311EXT := EXE
312EXTPRE :=
313definst := $(INST_BIN)
314tool_prefix := LD
315bld_trg_base_var := TARGET
316$(foreach target, $(_ALL_PROGRAMS), \
317 $(evalval def_pass1_link_common))
318
319
320#
321# SYSMODS (Pass 1)
322#
323EXT := SYS
324EXTPRE :=
325definst := $(INST_SYS)
326tool_prefix := LD
327bld_trg_base_var := TARGET
328$(foreach target, $(_ALL_SYSMODS), \
329 $(evalval def_pass1_link_common))
330
331
332#
333# MISCBINS (Pass 1)
334#
335EXT := BIN
336EXTPRE :=
337definst := $(INST_BIN)
338tool_prefix := LD
339bld_trg_base_var := TARGET
340$(foreach target, $(_ALL_MISCBINS), \
341 $(evalval def_pass1_link_common))
342
343
344#
345# INSTALLS (Pass 1)
346# Note! INSTARGET_* for INSTALLS aren't available until later.
347#
348define def_pass1_install
349local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
350local bld_trg := $(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))
351local bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(KBUILD_TARGET_ARCH))
352local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(KBUILD_TARGET_CPU))
353# _1_TARGET
354$(target)_1_TARGET := $(PATH_TARGET)/$(target).ins
355$(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
356
357# Determine and set 1_INSTTYPE.
358local insttype := $(firstword \
359 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
360 $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch)) \
361 $($(target)_INSTTYPE.$(bld_trg).$(bld_type)) \
362 $($(target)_INSTTYPE.$(bld_trg_arch)) \
363 $($(target)_INSTTYPE.$(bld_trg_cpu)) \
364 $($(target)_INSTTYPE.$(bld_trg)) \
365 $($(target)_INSTTYPE.$(bld_type)) \
366 $($(target)_INSTTYPE) \
367 )
368ifeq ($(insttype),)
369 ifneq ($(firstword \
370 $($(target)_NOINST) \
371 $($(target)_NOINST.$(bld_trg)) \
372 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch)) \
373 $($(target)_NOINST.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
374 $($(target)_NOINST.$(bld_trg_arch)) \
375 $($(target)_NOINST.$(bld_trg_cpu)) \
376 $($(target)_NOINST.$(bld_type)) ),)
377 local insttype := none
378 else
379 local insttype := both
380 endif
381endif
382ifn1of ($(insttype), none both stage)
383 $(error kBuild: Unknown value '$(insttype)' for '$(target)_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
384endif
385$(target)_1_INSTTYPE := $(insttype)
386
387# Determine the actual INST and STAGE sub-dirs to use for this target.
388if1of ($(insttype), stage both)
389 local stage := $(strip $(firstdefined \
390 $(target)_STAGE.$(bld_trg).$(bld_trg_arch).$(bld_type) \
391 $(target)_STAGE.$(bld_trg).$(bld_trg_arch) \
392 $(target)_STAGE.$(bld_trg).$(bld_type) \
393 $(target)_STAGE.$(bld_trg_arch) \
394 $(target)_STAGE.$(bld_trg_cpu) \
395 $(target)_STAGE.$(bld_trg) \
396 $(target)_STAGE.$(bld_type) \
397 $(target)_STAGE \
398 $(target)_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
399 $(target)_INST.$(bld_trg).$(bld_trg_arch) \
400 $(target)_INST.$(bld_trg).$(bld_type) \
401 $(target)_INST.$(bld_trg_arch) \
402 $(target)_INST.$(bld_trg_cpu) \
403 $(target)_INST.$(bld_trg) \
404 $(target)_INST.$(bld_type) \
405 $(target)_INST \
406 definst \
407 ,value))
408 if $(words $(stage)) > 1
409 $(warning kBuild: The STAGE/INST property of install '$(target)' specifies multiple location, that is not supported.)
410 local stage := $(word 1, $(stage))
411 endif
412 $(target)_1_STAGE := $(stage)
413else
414 $(target)_1_STAGE = $(error _1_STAGE not used)
415endif
416
417if1of ($(insttype), both)
418 local inst := $(strip $(firstdefined \
419 $(target)_INST.$(bld_trg).$(bld_trg_arch).$(bld_type) \
420 $(target)_INST.$(bld_trg).$(bld_trg_arch) \
421 $(target)_INST.$(bld_trg).$(bld_type) \
422 $(target)_INST.$(bld_trg_arch) \
423 $(target)_INST.$(bld_trg_cpu) \
424 $(target)_INST.$(bld_trg) \
425 $(target)_INST.$(bld_type) \
426 $(target)_INST \
427 definst \
428 ,value))
429 if $(words $(inst)) > 1
430 $(warning kBuild: The INST property of install '$(target)' specifies multiple location, that is not supported.)
431 local inst := $(word 1, $(inst))
432 endif
433 ifneq ($(root $(stage)),)
434 $(error kBuild: The effective INST property of install '$(target)' should not start with a root specification)
435 endif
436 $(target)_1_INST := $(inst)
437else
438 $(target)_1_INST = $(error _1_INST not used)
439endif
440
441# Block properties that we put off setting until pass 2 for INSTALLS.
442$(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!).)
443$(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!).)
444INSTARGET_$(target) = $(error The 'INSTARGET_' is deprecated and besides, it is being accessed to early. Consider '_2_STAGE_TARGETS' or '_2_INST_TARGETS'.)
445
446# INSTARGET_ later.
447# PATH_*
448local outbase := $(call TARGET_BASE,$(target),$(target))
449$(target)_0_OUTDIR := $(patsubst %/,%,$(dir $(outbase)))
450$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
451endef # def_pass1_install
452$(eval-opt-var def_pass1_install)
453
454$(foreach target, $(_ALL_INSTALLS), \
455 $(evalval def_pass1_install))
456
457ifdef KBUILD_PROFILE_SELF
458 $(evalcall def_profile_self, done pass 1)
459endif
460
461
Note: See TracBrowser for help on using the repository browser.