[72] | 1 | # $Id: footer-pass1.kmk 2551 2011-11-09 13:28:02Z bird $
|
---|
| 2 | ## @file
|
---|
[2521] | 3 | # kBuild - Footer - Target lists - Pass 1.
|
---|
[72] | 4 | #
|
---|
[2521] | 5 | # This pass is for defining variables that might be referenced in
|
---|
| 6 | # properties of other targets.
|
---|
| 7 | #
|
---|
[1547] | 8 |
|
---|
| 9 | #
|
---|
[2521] | 10 | # Copyright (c) 2004-2011 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
|
---|
[72] | 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
|
---|
[106] | 16 | # the Free Software Foundation; either version source of the License, or
|
---|
[72] | 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
|
---|
[353] | 26 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
[72] | 27 | #
|
---|
| 28 | #
|
---|
[1547] | 29 | # As a special exception you are granted permission to include this file, via
|
---|
[1599] | 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.
|
---|
[1547] | 32 | # This exception does not however invalidate any other reasons why the makefile,
|
---|
| 33 | # program, whatever should not be covered the GPL.
|
---|
| 34 | #
|
---|
| 35 | #
|
---|
[72] | 36 |
|
---|
| 37 |
|
---|
[828] | 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.
|
---|
| 49 | define def_pass1_link_common
|
---|
| 50 |
|
---|
[1504] | 51 | local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
|
---|
[1496] | 52 | local bld_trg := $(firstword $($(target)_BLD_TRG) $(BUILD_$(bld_trg_base_var)))
|
---|
| 53 | local bld_trg_arch:= $(firstword $($(target)_BLD_TRG_ARCH) $(BUILD_$(bld_trg_base_var)_ARCH))
|
---|
| 54 | local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(BUILD_$(bld_trg_base_var)_CPU))
|
---|
[828] | 55 |
|
---|
[1496] | 56 | local tool := $(call _TARGET_TOOL,$(target),$(tool_prefix))
|
---|
| 57 | local name := $(firstword\
|
---|
[2433] | 58 | $($(target)_NAME.$(bld_trg).$(bld_trg_arch).$(bld_type))\
|
---|
[889] | 59 | $($(target)_NAME.$(bld_trg).$(bld_trg_arch))\
|
---|
[2433] | 60 | $($(target)_NAME.$(bld_trg).$(bld_type))\
|
---|
[889] | 61 | $($(target)_NAME.$(bld_trg_arch))\
|
---|
| 62 | $($(target)_NAME.$(bld_trg))\
|
---|
| 63 | $($(target)_NAME.$(bld_type))\
|
---|
| 64 | $($(target)_NAME)\
|
---|
| 65 | $(target))
|
---|
[1496] | 66 | local outbase := $(call TARGET_BASE,$(name),$(target))
|
---|
[2239] | 67 | $(target)_0_OUTDIR:= $(patsubst %/,%,$(dir $(outbase)))
|
---|
[2436] | 68 | $(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
|
---|
| 69 |
|
---|
[2143] | 70 | ## @todo fix the fun at the last line (AR != LIB => mess).
|
---|
| 71 | local suff := $(firstword \
|
---|
[828] | 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)\
|
---|
[2143] | 78 | $(if $(eq $(tool_prefix),AR),$(SUFF_LIB),$($(EXTPRE)SUFF_$(EXT))) )
|
---|
[1496] | 79 | local out := $(outbase)$(suff)
|
---|
[828] | 80 |
|
---|
[2475] | 81 | # Object directory target variable.
|
---|
[2238] | 82 | $(target)_1_TARGET := $(out)
|
---|
[2436] | 83 | $(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
|
---|
[828] | 84 |
|
---|
[2475] | 85 | # Staging and install directory target variables.
|
---|
| 86 | local insttype := $(firstword \
|
---|
[2523] | 87 | $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
|
---|
[2475] | 88 | $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch)) \
|
---|
[2523] | 89 | $($(target)_INSTTYPE.$(bld_trg).$(bld_type)) \
|
---|
[2475] | 90 | $($(target)_INSTTYPE.$(bld_trg_arch)) \
|
---|
| 91 | $($(target)_INSTTYPE.$(bld_trg_cpu)) \
|
---|
[2523] | 92 | $($(target)_INSTTYPE.$(bld_trg)) \
|
---|
[2475] | 93 | $($(target)_INSTTYPE.$(bld_type)) \
|
---|
[2523] | 94 | $($(target)_INSTTYPE) \
|
---|
[2475] | 95 | )
|
---|
| 96 | ifeq ($(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
|
---|
[1697] | 106 | else
|
---|
[2475] | 107 | local insttype := both
|
---|
[1697] | 108 | endif
|
---|
[2475] | 109 | endif
|
---|
| 110 | ifn1of ($(insttype), none both stage)
|
---|
| 111 | $(error kBuild: Unknown value '$(insttype)' for '$(target)_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
|
---|
| 112 | endif
|
---|
| 113 | $(target)_1_INSTTYPE := $(insttype)
|
---|
[828] | 114 |
|
---|
[2475] | 115 | if1of ($(insttype), stage both)
|
---|
[2523] | 116 | local inst := $(strip $(firstdefined \
|
---|
[2488] | 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) \
|
---|
[2523] | 121 | $(target)_INST.$(bld_trg_cpu) \
|
---|
[2488] | 122 | $(target)_INST.$(bld_trg) \
|
---|
| 123 | $(target)_INST.$(bld_type) \
|
---|
| 124 | $(target)_INST \
|
---|
[2517] | 125 | definst \
|
---|
| 126 | ,value))
|
---|
[2523] | 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))
|
---|
[2475] | 138 | $(target)_1_STAGE := $(stage)
|
---|
[2511] | 139 | if "$(substr $(stage),-1,1)" == "/" # Multicast support requires addprefix/suffix.
|
---|
[2510] | 140 | $(target)_1_STAGE_TARGET := $(addprefix $(PATH_STAGE)/,$(addsuffix $(notdir $(out)),$(stage)))
|
---|
[2511] | 141 | else if "$(stage)" == ""
|
---|
| 142 | $(target)_1_STAGE_TARGET := $(PATH_STAGE)/$(notdir $(out))
|
---|
[2510] | 143 | else
|
---|
| 144 | $(target)_1_STAGE_TARGET := $(addprefix $(PATH_STAGE)/,$(stage))
|
---|
| 145 | endif
|
---|
[2475] | 146 | else
|
---|
| 147 | $(target)_1_STAGE :=
|
---|
| 148 | $(target)_1_STAGE_TARGET :=
|
---|
| 149 | endif
|
---|
| 150 | INSTARGET_$(target) := $($(target)_1_STAGE_TARGET)
|
---|
[828] | 151 |
|
---|
[2475] | 152 | if1of ($(insttype), both)
|
---|
| 153 | $(target)_1_INST := $(inst)
|
---|
[2511] | 154 | if "$(substr $(inst),-1,1)" == "/" # Multicast support requires addprefix/suffix.
|
---|
[2510] | 155 | $(target)_1_INST_TARGET := $(addprefix $(PATH_INS)/,$(addsuffix $(notdir $(out)),$(inst)))
|
---|
[2511] | 156 | else if "$(inst)" == ""
|
---|
| 157 | $(target)_1_INST_TARGET := $(PATH_INS)/$(notdir $(out))
|
---|
[2510] | 158 | else
|
---|
| 159 | $(target)_1_INST_TARGET := $(addprefix $(PATH_INS)/,$(inst))
|
---|
| 160 | endif
|
---|
[2475] | 161 | else
|
---|
| 162 | $(target)_1_INST :=
|
---|
| 163 | $(target)_1_INST_TARGET :=
|
---|
| 164 | endif
|
---|
| 165 |
|
---|
[2523] | 166 | # Debug info related stuff.
|
---|
| 167 | local 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) )
|
---|
| 177 | ifn1of ($(debug_insttype), none both stage)
|
---|
| 178 | $(error kBuild: Unknown value '$(debug_insttype)' for '$(target)_DEBUG_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
|
---|
| 179 | endif
|
---|
| 180 | $(target)_1_DEBUG_INSTTYPE := $(debug_insttype)
|
---|
| 181 |
|
---|
| 182 | if1of ($(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
|
---|
| 208 | else
|
---|
| 209 | $(target)_1_DEBUG_STAGE :=
|
---|
| 210 | endif
|
---|
| 211 |
|
---|
| 212 | if1of ($(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
|
---|
| 230 | else
|
---|
| 231 | $(target)_1_DEBUG_INST :=
|
---|
| 232 | endif
|
---|
| 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 |
|
---|
[2475] | 235 | endef # def_pass1_link_common
|
---|
[1936] | 236 | $(eval-opt-var def_pass1_link_common)
|
---|
[828] | 237 |
|
---|
| 238 |
|
---|
| 239 | #
|
---|
| 240 | # BLDPROGS (Pass 1)
|
---|
| 241 | #
|
---|
| 242 | define def_pass1_bldprog
|
---|
| 243 | # set NOINST if not forced installation before doing the usual stuff.
|
---|
| 244 | ifndef $(target)_INST
|
---|
[2475] | 245 | $(target)_INSTTYPE := none
|
---|
[828] | 246 | endif
|
---|
[1496] | 247 | $(evalval def_pass1_link_common)
|
---|
[828] | 248 | endef
|
---|
| 249 |
|
---|
| 250 | EXT := EXE
|
---|
| 251 | EXTPRE := HOST
|
---|
[2475] | 252 | definst := $(INST_BIN)
|
---|
[828] | 253 | tool_prefix := LD
|
---|
| 254 | bld_trg_base_var := PLATFORM
|
---|
[1648] | 255 | $(foreach target, $(_ALL_BLDPROGS), \
|
---|
[1496] | 256 | $(evalval def_pass1_bldprog))
|
---|
[828] | 257 |
|
---|
| 258 |
|
---|
| 259 | #
|
---|
| 260 | # LIBRARIES (Pass 1)
|
---|
| 261 | #
|
---|
| 262 | EXT := LIB
|
---|
| 263 | EXTPRE :=
|
---|
[2475] | 264 | definst := $(INST_LIB)
|
---|
[828] | 265 | tool_prefix := AR
|
---|
| 266 | bld_trg_base_var := TARGET
|
---|
[1648] | 267 | $(foreach target, $(_ALL_LIBRARIES), \
|
---|
[1496] | 268 | $(evalval def_pass1_link_common))
|
---|
[828] | 269 |
|
---|
| 270 |
|
---|
| 271 | #
|
---|
| 272 | # DLLS (Pass 1)
|
---|
| 273 | #
|
---|
| 274 | EXT := DLL
|
---|
| 275 | EXTPRE :=
|
---|
[2475] | 276 | definst := $(INST_DLL)
|
---|
[828] | 277 | tool_prefix := LD
|
---|
| 278 | bld_trg_base_var := TARGET
|
---|
[1648] | 279 | $(foreach target, $(_ALL_DLLS), \
|
---|
[1496] | 280 | $(evalval def_pass1_link_common))
|
---|
[828] | 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 | #
|
---|
[1504] | 289 | if1of ($(KBUILD_TARGET), nt os2 win win64 win32)
|
---|
[828] | 290 | EXT := LIB
|
---|
| 291 | EXTPRE :=
|
---|
[2475] | 292 | definst := $(INST_LIB)
|
---|
[828] | 293 | tool_prefix := AR
|
---|
| 294 | bld_trg_base_var := TARGET
|
---|
[1648] | 295 | $(foreach target, $(_ALL_IMPORT_LIBS), \
|
---|
[1496] | 296 | $(evalval def_pass1_link_common))
|
---|
[828] | 297 | else
|
---|
| 298 | EXT := DLL
|
---|
| 299 | EXTPRE :=
|
---|
[2475] | 300 | definst := $(INST_DLL)
|
---|
[828] | 301 | tool_prefix := LD
|
---|
| 302 | bld_trg_base_var := TARGET
|
---|
[1648] | 303 | $(foreach target, $(_ALL_IMPORT_LIBS), \
|
---|
[1496] | 304 | $(evalval def_pass1_link_common))
|
---|
[828] | 305 | endif
|
---|
| 306 |
|
---|
| 307 |
|
---|
| 308 | #
|
---|
| 309 | # PROGRAMS (Pass 1)
|
---|
| 310 | #
|
---|
| 311 | EXT := EXE
|
---|
| 312 | EXTPRE :=
|
---|
[2475] | 313 | definst := $(INST_BIN)
|
---|
[828] | 314 | tool_prefix := LD
|
---|
| 315 | bld_trg_base_var := TARGET
|
---|
[1648] | 316 | $(foreach target, $(_ALL_PROGRAMS), \
|
---|
[1496] | 317 | $(evalval def_pass1_link_common))
|
---|
[828] | 318 |
|
---|
| 319 |
|
---|
| 320 | #
|
---|
| 321 | # SYSMODS (Pass 1)
|
---|
| 322 | #
|
---|
| 323 | EXT := SYS
|
---|
| 324 | EXTPRE :=
|
---|
[2475] | 325 | definst := $(INST_SYS)
|
---|
[828] | 326 | tool_prefix := LD
|
---|
| 327 | bld_trg_base_var := TARGET
|
---|
[1648] | 328 | $(foreach target, $(_ALL_SYSMODS), \
|
---|
[1496] | 329 | $(evalval def_pass1_link_common))
|
---|
[828] | 330 |
|
---|
| 331 |
|
---|
| 332 | #
|
---|
[2084] | 333 | # MISCBINS (Pass 1)
|
---|
| 334 | #
|
---|
| 335 | EXT := BIN
|
---|
| 336 | EXTPRE :=
|
---|
[2475] | 337 | definst := $(INST_BIN)
|
---|
[2084] | 338 | tool_prefix := LD
|
---|
| 339 | bld_trg_base_var := TARGET
|
---|
| 340 | $(foreach target, $(_ALL_MISCBINS), \
|
---|
| 341 | $(evalval def_pass1_link_common))
|
---|
| 342 |
|
---|
| 343 |
|
---|
| 344 | #
|
---|
[828] | 345 | # INSTALLS (Pass 1)
|
---|
| 346 | # Note! INSTARGET_* for INSTALLS aren't available until later.
|
---|
| 347 | #
|
---|
| 348 | define def_pass1_install
|
---|
[2241] | 349 | local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
|
---|
| 350 | local bld_trg := $(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))
|
---|
| 351 | local bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(KBUILD_TARGET_ARCH))
|
---|
| 352 | local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(KBUILD_TARGET_CPU))
|
---|
[2475] | 353 | # _1_TARGET
|
---|
[2241] | 354 | $(target)_1_TARGET := $(PATH_TARGET)/$(target).ins
|
---|
[2436] | 355 | $(call KB_FN_ASSIGN_DEPRECATED,TARGET_$(target),$($(target)_1_TARGET), $(target)_1_TARGET)
|
---|
[2238] | 356 |
|
---|
[2475] | 357 | # Determine and set 1_INSTTYPE.
|
---|
| 358 | local insttype := $(firstword \
|
---|
[2523] | 359 | $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
|
---|
[2475] | 360 | $($(target)_INSTTYPE.$(bld_trg).$(bld_trg_arch)) \
|
---|
[2523] | 361 | $($(target)_INSTTYPE.$(bld_trg).$(bld_type)) \
|
---|
[2475] | 362 | $($(target)_INSTTYPE.$(bld_trg_arch)) \
|
---|
| 363 | $($(target)_INSTTYPE.$(bld_trg_cpu)) \
|
---|
[2523] | 364 | $($(target)_INSTTYPE.$(bld_trg)) \
|
---|
[2475] | 365 | $($(target)_INSTTYPE.$(bld_type)) \
|
---|
[2523] | 366 | $($(target)_INSTTYPE) \
|
---|
[2475] | 367 | )
|
---|
| 368 | ifeq ($(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
|
---|
| 381 | endif
|
---|
| 382 | ifn1of ($(insttype), none both stage)
|
---|
| 383 | $(error kBuild: Unknown value '$(insttype)' for '$(target)_INSTTYPE'. Valid values are 'none', 'both' and 'stage'.)
|
---|
| 384 | endif
|
---|
| 385 | $(target)_1_INSTTYPE := $(insttype)
|
---|
| 386 |
|
---|
| 387 | # Determine the actual INST and STAGE sub-dirs to use for this target.
|
---|
| 388 | if1of ($(insttype), stage both)
|
---|
[2517] | 389 | local stage := $(strip $(firstdefined \
|
---|
[2488] | 390 | $(target)_STAGE.$(bld_trg).$(bld_trg_arch).$(bld_type) \
|
---|
[2523] | 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 \
|
---|
[2488] | 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) \
|
---|
[2523] | 402 | $(target)_INST.$(bld_trg_cpu) \
|
---|
[2488] | 403 | $(target)_INST.$(bld_trg) \
|
---|
| 404 | $(target)_INST.$(bld_type) \
|
---|
| 405 | $(target)_INST \
|
---|
[2517] | 406 | definst \
|
---|
| 407 | ,value))
|
---|
[2488] | 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
|
---|
[2475] | 412 | $(target)_1_STAGE := $(stage)
|
---|
| 413 | else
|
---|
| 414 | $(target)_1_STAGE = $(error _1_STAGE not used)
|
---|
| 415 | endif
|
---|
| 416 |
|
---|
| 417 | if1of ($(insttype), both)
|
---|
[2517] | 418 | local inst := $(strip $(firstdefined \
|
---|
[2488] | 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) \
|
---|
[2523] | 423 | $(target)_INST.$(bld_trg_cpu) \
|
---|
[2488] | 424 | $(target)_INST.$(bld_trg) \
|
---|
| 425 | $(target)_INST.$(bld_type) \
|
---|
| 426 | $(target)_INST \
|
---|
[2517] | 427 | definst \
|
---|
| 428 | ,value))
|
---|
[2488] | 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
|
---|
[2517] | 433 | ifneq ($(root $(stage)),)
|
---|
[2518] | 434 | $(error kBuild: The effective INST property of install '$(target)' should not start with a root specification)
|
---|
[2517] | 435 | endif
|
---|
[2475] | 436 | $(target)_1_INST := $(inst)
|
---|
| 437 | else
|
---|
| 438 | $(target)_1_INST = $(error _1_INST not used)
|
---|
| 439 | endif
|
---|
| 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!).)
|
---|
| 444 | INSTARGET_$(target) = $(error The 'INSTARGET_' is deprecated and besides, it is being accessed to early. Consider '_2_STAGE_TARGETS' or '_2_INST_TARGETS'.)
|
---|
| 445 |
|
---|
[828] | 446 | # INSTARGET_ later.
|
---|
[1754] | 447 | # PATH_*
|
---|
[2241] | 448 | local outbase := $(call TARGET_BASE,$(target),$(target))
|
---|
| 449 | $(target)_0_OUTDIR := $(patsubst %/,%,$(dir $(outbase)))
|
---|
[2436] | 450 | $(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
|
---|
[1754] | 451 | endef # def_pass1_install
|
---|
[1936] | 452 | $(eval-opt-var def_pass1_install)
|
---|
[2475] | 453 |
|
---|
[1648] | 454 | $(foreach target, $(_ALL_INSTALLS), \
|
---|
[1496] | 455 | $(evalval def_pass1_install))
|
---|
[828] | 456 |
|
---|
[988] | 457 | ifdef KBUILD_PROFILE_SELF
|
---|
[2008] | 458 | $(evalcall def_profile_self, done pass 1)
|
---|
[988] | 459 | endif
|
---|
[828] | 460 |
|
---|
| 461 |
|
---|