[69] | 1 | # $Id: header.kmk 2726 2014-02-26 23:23:54Z bird $
|
---|
| 2 | ## @file
|
---|
[978] | 3 | # kBuild - File included at top of a makefile.
|
---|
[69] | 4 | #
|
---|
[1547] | 5 |
|
---|
| 6 | #
|
---|
[2726] | 7 | # Copyright (c) 2004-2014 knut st. osmundsen <bird-kBuild-spam-xiv@anduin.net>
|
---|
[69] | 8 | #
|
---|
| 9 | # This file is part of kBuild.
|
---|
| 10 | #
|
---|
| 11 | # kBuild is free software; you can redistribute it and/or modify
|
---|
| 12 | # it under the terms of the GNU General Public License as published by
|
---|
| 13 | # the Free Software Foundation; either version 2 of the License, or
|
---|
| 14 | # (at your option) any later version.
|
---|
| 15 | #
|
---|
| 16 | # kBuild is distributed in the hope that it will be useful,
|
---|
| 17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 19 | # GNU General Public License for more details.
|
---|
| 20 | #
|
---|
| 21 | # You should have received a copy of the GNU General Public License
|
---|
| 22 | # along with kBuild; if not, write to the Free Software
|
---|
| 23 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
| 24 | #
|
---|
| 25 | #
|
---|
[1547] | 26 | # As a special exception you are granted permission to include this file, via
|
---|
[1561] | 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 | #
|
---|
[69] | 33 |
|
---|
| 34 | ifndef __header_kmk__
|
---|
| 35 | # start-of-file-content
|
---|
[988] | 36 | ifdef KBUILD_PROFILE_SELF
|
---|
| 37 | _KBUILD_TS_HEADER_START := $(nanots ) # just a dummy warm up query
|
---|
[2008] | 38 | $(info prof: since start - since previous -- event description)
|
---|
| 39 | ifeq ($(KBUILD_PROFILE_SELF),2)
|
---|
| 40 | $(info stat: $(make-stats ))
|
---|
| 41 | endif
|
---|
[988] | 42 | _KBUILD_TS_HEADER_START := $(nanots )
|
---|
| 43 | _KBUILD_TS_PREV := $(_KBUILD_TS_HEADER_START)
|
---|
[2008] | 44 |
|
---|
| 45 | _KBUILD_FMT_ELAPSED_EX = $(int-div $(int-add $(int-sub $1, $2),500000),1000000)ms
|
---|
| 46 | _KBUILD_FMT_ELAPSED = $(call _KBUILD_FMT_ELAPSED_EX,$(_KBUILD_TS_NOW),$1)
|
---|
| 47 |
|
---|
| 48 | define def_profile_self
|
---|
| 49 | _KBUILD_TS_NOW := $(nanots )
|
---|
| 50 | $(info prof: $(call _KBUILD_FMT_ELAPSED,$(_KBUILD_TS_HEADER_START)) - $(call _KBUILD_FMT_ELAPSED, $(_KBUILD_TS_PREV)) -- $(strip $1))
|
---|
| 51 | ifeq ($(KBUILD_PROFILE_SELF),2)
|
---|
| 52 | $(info stat: $(make-stats ))
|
---|
| 53 | endif
|
---|
| 54 | _KBUILD_TS_PREV := $(_KBUILD_TS_NOW)
|
---|
| 55 | endef
|
---|
| 56 |
|
---|
[988] | 57 | endif
|
---|
[69] | 58 |
|
---|
[978] | 59 |
|
---|
[69] | 60 | #
|
---|
[978] | 61 | # Check make version before we do anything else.
|
---|
[69] | 62 | #
|
---|
[978] | 63 | ifndef KMK_VERSION
|
---|
[984] | 64 | $(error kBuild: The kmk default variable KMK_VERSION isn't defined! Make sure you are using 'kmk' and not 'make', 'gmake', 'kmk_gmake', 'dmake' or any other make program)
|
---|
[978] | 65 | endif
|
---|
| 66 | ifneq ($(KBUILD_VERSION_MAJOR).$(KBUILD_VERSION_MINOR),0.1)
|
---|
| 67 | ifneq ($(KBUILD_VERSION_MAJOR),0)
|
---|
[1348] | 68 | $(warning kBuild: kmk major version mismatch! Expected '0' but found '$(KBUILD_VERSION_MAJOR)'!)
|
---|
[978] | 69 | else
|
---|
[1348] | 70 | $(warning kBuild: kmk minor version mismatch! Expected '1' but found '$(KBUILD_VERSION_MINOR)'!)
|
---|
[978] | 71 | endif
|
---|
[1348] | 72 | else
|
---|
[2512] | 73 | if $(KBUILD_VERSION_PATCH) < 999
|
---|
| 74 | $(error kBuild: kmk version mismatch! Expected 0.1.999 or later. Actual version is $(KBUILD_VERSION).)
|
---|
[1348] | 75 | endif
|
---|
[978] | 76 | endif
|
---|
[69] | 77 |
|
---|
| 78 | #
|
---|
[978] | 79 | # The revision in which this file was last modified.
|
---|
| 80 | # This can be useful when using development versions of kBuild.
|
---|
[380] | 81 | #
|
---|
[978] | 82 | KMK_REVISION := $(patsubst %:,, $Rev: 2726 $ )
|
---|
[414] | 83 |
|
---|
[978] | 84 |
|
---|
[380] | 85 | #
|
---|
[978] | 86 | # Define the default goal.
|
---|
[69] | 87 | #
|
---|
[1561] | 88 | .PHONY: all all_recursive
|
---|
[978] | 89 | all: all_recursive
|
---|
[69] | 90 |
|
---|
[894] | 91 | #
|
---|
[978] | 92 | # The phony FORCE target.
|
---|
[894] | 93 | #
|
---|
[1501] | 94 | .PHONY: FORCE
|
---|
[978] | 95 | FORCE:
|
---|
[72] | 96 |
|
---|
[978] | 97 |
|
---|
[69] | 98 | #
|
---|
[1782] | 99 | # Enable delete on error and second expansion of prerequisites and targets.
|
---|
[894] | 100 | #
|
---|
[978] | 101 | .DELETE_ON_ERROR:
|
---|
| 102 |
|
---|
[894] | 103 | .SECONDEXPANSION:
|
---|
| 104 |
|
---|
[1782] | 105 | .SECONDTARGETEXPANSION:
|
---|
[894] | 106 |
|
---|
[1782] | 107 |
|
---|
[894] | 108 | #
|
---|
[95] | 109 | # General purpose macros.
|
---|
| 110 | #
|
---|
[204] | 111 |
|
---|
[380] | 112 | ##
|
---|
| 113 | # Newline character(s).
|
---|
| 114 | define NL
|
---|
[95] | 115 |
|
---|
[380] | 116 |
|
---|
| 117 | endef
|
---|
| 118 |
|
---|
| 119 | ##
|
---|
| 120 | # Tab character.
|
---|
| 121 | TAB := $(subst ., ,.)
|
---|
| 122 |
|
---|
| 123 | ##
|
---|
[896] | 124 | # Newline + tab characters (for generating commands).
|
---|
| 125 | NLTAB = $(NL)$(TAB)
|
---|
| 126 |
|
---|
| 127 | ##
|
---|
[380] | 128 | # Space character.
|
---|
| 129 | SP := $(subst ., ,.)
|
---|
| 130 |
|
---|
| 131 | ##
|
---|
[895] | 132 | # Hash character.
|
---|
| 133 | define HASH
|
---|
| 134 | #
|
---|
| 135 | endef
|
---|
[380] | 136 |
|
---|
[895] | 137 | ##
|
---|
| 138 | # Colon character.
|
---|
| 139 | COLON := :
|
---|
| 140 |
|
---|
| 141 | ##
|
---|
| 142 | # Semicolon character.
|
---|
| 143 | SEMICOLON := ;
|
---|
| 144 |
|
---|
| 145 | ##
|
---|
| 146 | # Comma character.
|
---|
| 147 | COMMA := ,
|
---|
| 148 |
|
---|
| 149 | ##
|
---|
| 150 | # Dot character.
|
---|
| 151 | DOT := .
|
---|
| 152 |
|
---|
| 153 | ##
|
---|
| 154 | # Dollar character.
|
---|
| 155 | DOLLAR := $$
|
---|
| 156 |
|
---|
| 157 | ##
|
---|
| 158 | # Equal character.
|
---|
| 159 | EQUAL := =
|
---|
| 160 |
|
---|
[2515] | 161 | ##
|
---|
| 162 | # Percent character.
|
---|
| 163 | PERCENT := %
|
---|
[895] | 164 |
|
---|
[2520] | 165 | ##
|
---|
| 166 | # Single quote character.
|
---|
| 167 | SQUOTE := '
|
---|
[2515] | 168 |
|
---|
[2520] | 169 | ##
|
---|
| 170 | # Double quote character.
|
---|
| 171 | DQUOTE := "
|
---|
| 172 |
|
---|
| 173 |
|
---|
[95] | 174 | #
|
---|
[1403] | 175 | # The list of standard build types in kBuild.
|
---|
| 176 | #
|
---|
[1416] | 177 | # This list can be extended in Config.kmk and it's possible to extend
|
---|
[1403] | 178 | # (inherit) another build type.
|
---|
| 179 | #
|
---|
[1420] | 180 | KBUILD_BLD_TYPES := release profile debug
|
---|
[1403] | 181 |
|
---|
| 182 |
|
---|
| 183 | #
|
---|
[985] | 184 | # The OSes, Architectures and CPUs that kBuild recognizes.
|
---|
[978] | 185 | #
|
---|
| 186 | # When kBuild is ported to a new OS or architecture a unique keyword needs
|
---|
| 187 | # to be assigned to it and added here. This strictness is required because
|
---|
| 188 | # this keyword namespace is shared between OSes, architectures, cpus and
|
---|
[984] | 189 | # build types. (PORTME)
|
---|
[978] | 190 | #
|
---|
[2559] | 191 | KBUILD_OSES := darwin dos dragonfly freebsd haiku l4 linux netbsd nt openbsd os2 solaris win os-agnostic
|
---|
| 192 | KBUILD_ARCHES := x86 amd64 sparc32 sparc64 s390 s390x ppc32 ppc64 mips32 mips64 ia64 hppa32 hppa64 arm alpha
|
---|
| 193 | KBUILD_ARCHES_64 := amd64 sparc64 s390x ppc64 mips64 ia64 hppa64 alpha
|
---|
| 194 | KBUILD_ARCHES_32 := x86 sparc32 s390 ppc32 mips32 hppa32 arm
|
---|
[978] | 195 |
|
---|
| 196 |
|
---|
| 197 | #
|
---|
[585] | 198 | # Set default build type.
|
---|
[69] | 199 | #
|
---|
[1504] | 200 | ifndef KBUILD_TYPE
|
---|
| 201 | ifdef BUILD_TYPE
|
---|
| 202 | KBUILD_TYPE := $(BUILD_TYPE)
|
---|
| 203 | endif
|
---|
| 204 | else ifdef BUILD_TYPE
|
---|
| 205 | ifneq ($(KBUILD_TYPE),$(BUILD_TYPE))
|
---|
| 206 | ifeq ($(origin KBUILD_TYPE):$(origin BUILD_TYPE),environment:command line)
|
---|
| 207 | KBUILD_TYPE := $(BUILD_TYPE)
|
---|
| 208 | else ifneq ($(origin KBUILD_TYPE):$(origin BUILD_TYPE),command line:environment)
|
---|
| 209 | $(error kBuild: KBUILD_TYPE and BUILD_TYPE disagree.)
|
---|
| 210 | endif
|
---|
| 211 | endif
|
---|
| 212 | endif
|
---|
| 213 | override BUILD_TYPE = $(KBUILD_TYPE)
|
---|
| 214 |
|
---|
| 215 | ifndef KBUILD_TYPE
|
---|
| 216 | KBUILD_TYPE := release
|
---|
[978] | 217 | else
|
---|
[1504] | 218 | if1of ($(KBUILD_TYPE), $(KBUILD_OSES) $(KBUILD_ARCHES))
|
---|
| 219 | $(error kBuild: The KBUILD_TYPE value '$(KBUILD_TYPE)' is an OS or architecture!)
|
---|
[585] | 220 | endif
|
---|
[1504] | 221 | ifneq (.$(words $(KBUILD_TYPE)).$(KBUILD_TYPE).,.1.$(strip $(KBUILD_TYPE)).)
|
---|
| 222 | $(error kBuild: The KBUILD_TYPE value '$(KBUILD_TYPE)' contains spaces/tabs!)
|
---|
[978] | 223 | endif
|
---|
[72] | 224 | endif
|
---|
[69] | 225 |
|
---|
| 226 |
|
---|
| 227 | #
|
---|
[1561] | 228 | # Host platform legacy
|
---|
[1504] | 229 | # kmk deals with this, so this is only temporary until I've rebuilt everything.
|
---|
| 230 | #
|
---|
| 231 | ifndef KBUILD_HOST
|
---|
| 232 | KBUILD_HOST := $(BUILD_PLATFORM)
|
---|
| 233 | endif
|
---|
| 234 | ifndef KBUILD_HOST_ARCH
|
---|
| 235 | KBUILD_HOST_ARCH := $(BUILD_PLATFORM_ARCH)
|
---|
| 236 | endif
|
---|
| 237 | ifndef KBUILD_HOST_CPU
|
---|
| 238 | KBUILD_HOST_CPU := $(BUILD_PLATFORM_CPU)
|
---|
| 239 | endif
|
---|
| 240 |
|
---|
| 241 |
|
---|
| 242 | #
|
---|
[978] | 243 | # Assert valid build platform variables.
|
---|
[70] | 244 | #
|
---|
[978] | 245 | # All these are set by kmk so they shouldn't be any trouble
|
---|
| 246 | # unless the user starts messing about with environment variables.
|
---|
| 247 | #
|
---|
[1504] | 248 | ifneq (.$(words $(KBUILD_HOST)).$(KBUILD_HOST).,.1.$(strip $(KBUILD_HOST)).)
|
---|
| 249 | $(error kBuild: The KBUILD_HOST value '$(KBUILD_HOST)' contains spaces/tabs!)
|
---|
[72] | 250 | endif
|
---|
[1504] | 251 | ifneq ($(words $(filter $(KBUILD_HOST),$(KBUILD_OSES))),1)
|
---|
| 252 | $(error kBuild: KBUILD_HOST value '$(KBUILD_HOST)' is not recognized (valid: $(KBUILD_OSES)))
|
---|
[978] | 253 | endif
|
---|
[70] | 254 |
|
---|
[1504] | 255 | ifneq (.$(words $(KBUILD_HOST_ARCH)).$(KBUILD_HOST_ARCH).,.1.$(strip $(KBUILD_HOST_ARCH)).)
|
---|
| 256 | $(error kBuild: The KBUILD_HOST_ARCH value '$(KBUILD_HOST_ARCH)' contains spaces/tabs!)
|
---|
[329] | 257 | endif
|
---|
[1504] | 258 | ifneq ($(words $(filter $(KBUILD_HOST_ARCH),$(KBUILD_ARCHES))),1)
|
---|
| 259 | $(error kBuild: KBUILD_HOST_ARCH value '$(KBUILD_HOST_ARCH)' is not recognized (valid: $(KBUILD_ARCHES)))
|
---|
[329] | 260 | endif
|
---|
[72] | 261 |
|
---|
[1504] | 262 | ifeq ($(strip $(KBUILD_HOST_CPU)),)
|
---|
| 263 | KBUILD_HOST_CPU := blend
|
---|
[994] | 264 | else
|
---|
[1504] | 265 | ifneq (.$(words $(KBUILD_HOST_CPU)).$(KBUILD_HOST_CPU).,.1.$(strip $(KBUILD_HOST_CPU)).)
|
---|
| 266 | $(error kBuild: The KBUILD_HOST_CPU value '$(KBUILD_HOST_CPU)' contains spaces/tabs!)
|
---|
[994] | 267 | endif
|
---|
[2403] | 268 | if1of ($(KBUILD_HOST_CPU), $(KBUILD_OSES) $(KBUILD_ARCHES))
|
---|
[1504] | 269 | $(error kBuild: The KBUILD_HOST_CPU value '$(KBUILD_HOST_CPU)' was found in the OS or architecture keywords!)
|
---|
[994] | 270 | endif
|
---|
[1504] | 271 | ifeq ($(KBUILD_HOST_CPU),$(KBUILD_TYPE))
|
---|
| 272 | $(error kBuild: The KBUILD_HOST_CPU value '$(KBUILD_HOST_CPU)' is the same as the KBUILD_TYPE!)
|
---|
[994] | 273 | endif
|
---|
[978] | 274 | endif
|
---|
[72] | 275 |
|
---|
[978] | 276 |
|
---|
[70] | 277 | #
|
---|
[1504] | 278 | # Deal with target platform legacy.
|
---|
| 279 | #
|
---|
| 280 | ifndef KBUILD_TARGET
|
---|
| 281 | ifdef BUILD_TARGET
|
---|
| 282 | KBUILD_TARGET := $(BUILD_TARGET)
|
---|
| 283 | endif
|
---|
| 284 | else ifdef BUILD_TARGET
|
---|
| 285 | ifneq ($(KBUILD_TARGET),$(BUILD_TARGET))
|
---|
| 286 | ifeq ($(origin KBUILD_TARGET):$(origin BUILD_TARGET),environment:command line)
|
---|
| 287 | KBUILD_TARGET := $(BUILD_TARGET)
|
---|
| 288 | else ifneq ($(origin KBUILD_TARGET):$(origin BUILD_TARGET),command line:environment)
|
---|
[1561] | 289 | $(error kBuild: KBUILD_TARGET and BUILD_TARGET disagree)
|
---|
[1504] | 290 | endif
|
---|
| 291 | endif
|
---|
| 292 | endif
|
---|
| 293 | override BUILD_TARGET = $(KBUILD_TARGET)
|
---|
| 294 |
|
---|
| 295 | ifndef KBUILD_TARGET_ARCH
|
---|
| 296 | ifdef BUILD_TARGET_ARCH
|
---|
| 297 | KBUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH)
|
---|
| 298 | endif
|
---|
| 299 | else ifdef BUILD_TARGET_ARCH
|
---|
| 300 | ifneq ($(KBUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH))
|
---|
| 301 | ifeq ($(origin KBUILD_TARGET_ARCH):$(origin BUILD_TARGET_ARCH),environment:command line)
|
---|
| 302 | KBUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH)
|
---|
| 303 | else ifneq ($(origin KBUILD_TARGET_ARCH):$(origin BUILD_TARGET_ARCH),command line:environment)
|
---|
[1561] | 304 | $(error kBuild: KBUILD_TARGET_ARCH and BUILD_TARGET_ARCH disagree)
|
---|
[1504] | 305 | endif
|
---|
| 306 | endif
|
---|
| 307 | endif
|
---|
| 308 | override BUILD_TARGET_ARCH = $(KBUILD_TARGET_ARCH)
|
---|
| 309 |
|
---|
| 310 | ifndef KBUILD_TARGET_CPU
|
---|
| 311 | ifdef BUILD_TARGET_CPU
|
---|
| 312 | KBUILD_TARGET_CPU := $(BUILD_TARGET_CPU)
|
---|
| 313 | endif
|
---|
| 314 | else ifdef BUILD_TARGET_CPU
|
---|
| 315 | ifneq ($(KBUILD_TARGET_CPU),$(BUILD_TARGET_CPU))
|
---|
| 316 | ifeq ($(origin KBUILD_TARGET_CPU):$(origin BUILD_TARGET_CPU),environment:command line)
|
---|
| 317 | KBUILD_TARGET_CPU := $(BUILD_TARGET_CPU)
|
---|
| 318 | else ifneq ($(origin KBUILD_TARGET_CPU):$(origin BUILD_TARGET_CPU),command line:environment)
|
---|
[1561] | 319 | $(error kBuild: KBUILD_TARGET_CPU and BUILD_TARGET_CPU disagree)
|
---|
[1504] | 320 | endif
|
---|
| 321 | endif
|
---|
| 322 | endif
|
---|
| 323 | override BUILD_TARGET_CPU = $(KBUILD_TARGET_CPU)
|
---|
| 324 |
|
---|
| 325 |
|
---|
| 326 | #
|
---|
[978] | 327 | # Assert or set default target platform.
|
---|
[1504] | 328 | # When not defined use the corresponding KBUILD_HOST value.
|
---|
[72] | 329 | #
|
---|
[1504] | 330 | ifndef KBUILD_TARGET
|
---|
| 331 | KBUILD_TARGET := $(KBUILD_HOST)
|
---|
[72] | 332 | else
|
---|
[1504] | 333 | ifneq (.$(words $(KBUILD_TARGET)).$(KBUILD_TARGET).,.1.$(strip $(KBUILD_TARGET)).)
|
---|
| 334 | $(error kBuild: The KBUILD_TARGET value '$(KBUILD_TARGET)' contains spaces/tabs!)
|
---|
[478] | 335 | endif
|
---|
[1504] | 336 | ifneq ($(words $(filter $(KBUILD_TARGET),$(KBUILD_OSES))),1)
|
---|
| 337 | $(error kBuild: KBUILD_TARGET value '$(KBUILD_TARGET)' is not recognized (valid: $(KBUILD_OSES)))
|
---|
[978] | 338 | endif
|
---|
[72] | 339 | endif
|
---|
| 340 |
|
---|
[1504] | 341 | ifndef KBUILD_TARGET_ARCH
|
---|
| 342 | KBUILD_TARGET_ARCH := $(KBUILD_HOST_ARCH)
|
---|
[978] | 343 | else
|
---|
[1504] | 344 | ifneq (.$(words $(KBUILD_TARGET_ARCH)).$(KBUILD_TARGET_ARCH).,.1.$(strip $(KBUILD_TARGET_ARCH)).)
|
---|
| 345 | $(error kBuild: The KBUILD_TARGET_ARCH value '$(KBUILD_TARGET_ARCH)' contains spaces/tabs!)
|
---|
[978] | 346 | endif
|
---|
[1504] | 347 | ifneq ($(words $(filter $(KBUILD_TARGET_ARCH),$(KBUILD_ARCHES))),1)
|
---|
| 348 | $(error kBuild: KBUILD_TARGET_ARCH value '$(KBUILD_TARGET_ARCH)' is not recognized (valid: $(KBUILD_ARCHES)))
|
---|
[978] | 349 | endif
|
---|
[329] | 350 | endif
|
---|
[978] | 351 |
|
---|
[1504] | 352 | ifndef KBUILD_TARGET_CPU
|
---|
| 353 | KBUILD_TARGET_CPU := $(KBUILD_HOST_CPU)
|
---|
| 354 | else ifeq ($(strip $(KBUILD_TARGET_CPU)),)
|
---|
| 355 | ifeq ($(KBUILD_TARGET_ARCH),$(KBUILD_HOST_ARCH))
|
---|
| 356 | KBUILD_TARGET_CPU := $(KBUILD_HOST_CPU)
|
---|
[994] | 357 | else
|
---|
[1504] | 358 | KBUILD_TARGET_CPU := blend
|
---|
[994] | 359 | endif
|
---|
[978] | 360 | else
|
---|
[1504] | 361 | ifneq (.$(words $(KBUILD_TARGET_CPU)).$(KBUILD_TARGET_CPU).,.1.$(strip $(KBUILD_TARGET_CPU)).)
|
---|
| 362 | $(error kBuild: The KBUILD_TARGET_CPU value '$(KBUILD_TARGET_CPU)' contains spaces/tabs!)
|
---|
[978] | 363 | endif
|
---|
[2403] | 364 | if1of ($(KBUILD_TARGET_CPU), $(KBUILD_OSES) $(KBUILD_ARCHES))
|
---|
[1504] | 365 | $(error kBuild: The KBUILD_TARGET_CPU value was found in the OS or architecture keywords!)
|
---|
[978] | 366 | endif
|
---|
[1504] | 367 | ifeq ($(KBUILD_TARGET_CPU),$(KBUILD_TYPE))
|
---|
| 368 | $(error kBuild: The KBUILD_TARGET_CPU value '$(KBUILD_TARGET_CPU)' is the same as the KBUILD_TYPE!)
|
---|
[978] | 369 | endif
|
---|
[329] | 370 | endif
|
---|
[72] | 371 |
|
---|
| 372 |
|
---|
| 373 | #
|
---|
[978] | 374 | # Paths and stuff.
|
---|
[69] | 375 | #
|
---|
[978] | 376 |
|
---|
| 377 | # Adjust DEPTH first.
|
---|
| 378 | DEPTH := $(strip $(DEPTH))
|
---|
| 379 | ifeq ($(DEPTH),)
|
---|
| 380 | DEPTH := .
|
---|
| 381 | endif
|
---|
| 382 |
|
---|
[725] | 383 | ## PATH_CURRENT is the current directory (getcwd).
|
---|
[306] | 384 | PATH_CURRENT := $(abspath $(CURDIR))
|
---|
[725] | 385 | ## PATH_SUB_CURRENT points to current directory of the current makefile.
|
---|
| 386 | # Meaning that it will change value as we enter and exit sub-makefiles.
|
---|
| 387 | PATH_SUB_CURRENT := $(PATH_CURRENT)
|
---|
| 388 | ## PATH_ROOT points to the project root directory.
|
---|
| 389 | PATH_ROOT := $(abspath $(PATH_CURRENT)/$(DEPTH))
|
---|
| 390 | ## PATH_SUB_ROOT points to the directory of the top-level makefile.
|
---|
[472] | 391 | ifneq ($(strip $(SUB_DEPTH)),)
|
---|
[978] | 392 | SUB_DEPTH := $(strip $(SUB_DEPTH))
|
---|
[725] | 393 | PATH_SUB_ROOT := $(abspath $(PATH_CURRENT)/$(SUB_DEPTH))
|
---|
[472] | 394 | else
|
---|
[725] | 395 | PATH_SUB_ROOT := $(PATH_CURRENT)
|
---|
[472] | 396 | endif
|
---|
[306] | 397 |
|
---|
[748] | 398 | ## CURSUBDIR is PATH_SUB_ROOT described relative to PATH_ROOT.
|
---|
[725] | 399 | # This variable is used to determin where the object files and other output goes.
|
---|
[1390] | 400 | ifneq ($(PATH_ROOT),$(PATH_SUB_ROOT))
|
---|
| 401 | CURSUBDIR := $(patsubst $(PATH_ROOT)/%,%,$(PATH_SUB_ROOT))
|
---|
[266] | 402 | else
|
---|
[1390] | 403 | CURSUBDIR := .
|
---|
[266] | 404 | endif
|
---|
[306] | 405 |
|
---|
[2475] | 406 | # Install directory layout. Relative to PATH_INS.
|
---|
[2479] | 407 | KBUILD_INST_PATHS := BIN DLL SYS LIB DOC DEBUG SBIN LIBEXEC SHARE
|
---|
[2475] | 408 | INST_BIN = bin/
|
---|
| 409 | if1of ($(KBUILD_TARGET), win)
|
---|
| 410 | INST_DLL = bin/
|
---|
| 411 | else
|
---|
| 412 | INST_DLL = lib/
|
---|
| 413 | endif
|
---|
| 414 | if1of ($(KBUILD_TARGET), os2 win)
|
---|
| 415 | INST_SYS = drivers/
|
---|
| 416 | else
|
---|
| 417 | INST_SYS = kernel/
|
---|
| 418 | endif
|
---|
| 419 | INST_LIB = lib/
|
---|
| 420 | INST_DOC = share/doc/
|
---|
| 421 | INST_DEBUG = debug/
|
---|
| 422 | INST_SBIN = sbin/
|
---|
| 423 | INST_LIBEXEC = libexec/
|
---|
| 424 | INST_SHARE = share/
|
---|
| 425 |
|
---|
| 426 | # Staging directory layout. Relative to PATH_STAGE.
|
---|
| 427 | STAGE_BIN = $(INST_BIN)
|
---|
| 428 | STAGE_DLL = $(INST_DLL)
|
---|
| 429 | STAGE_SYS = $(INST_SYS)
|
---|
| 430 | STAGE_LIB = $(INST_LIB)
|
---|
| 431 | STAGE_DOC = $(INST_DOC)
|
---|
| 432 | STAGE_DEBUG = $(INST_DEBUG)
|
---|
| 433 | STAGE_SBIN = $(INST_SBIN)
|
---|
| 434 | STAGE_LIBEXEC = $(INST_LIBEXEC)
|
---|
| 435 | STAGE_SHARE = $(INST_SHARE)
|
---|
| 436 |
|
---|
[2479] | 437 | # Install and staging directory paths.
|
---|
| 438 | $(foreach path, $(KBUILD_INST_PATHS), \
|
---|
| 439 | $(eval PATH_STAGE_$(path) = $$(patsubst %/,%,$$(PATH_STAGE)/$$(STAGE_$(path)))) \
|
---|
| 440 | $(eval PATH_INST_$(path) = $$(patsubst %/,%,$$(PATH_INS)/$$(INST_$(path)))) \
|
---|
| 441 | )
|
---|
| 442 |
|
---|
[70] | 443 | # Output directories.
|
---|
[242] | 444 | ifndef PATH_OUT_BASE
|
---|
[725] | 445 | PATH_OUT_BASE := $(PATH_ROOT)/out
|
---|
[242] | 446 | endif
|
---|
[240] | 447 | ifndef PATH_OUT
|
---|
[1504] | 448 | ifdef BUILD_TARGET_SUB # (BUILD_TARGET_SUB is not currently recognized by kBuild in any other places - obsolete)
|
---|
[1691] | 449 | PATH_OUT = $(PATH_OUT_BASE)/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH).$(BUILD_TARGET_SUB)/$(KBUILD_TYPE)
|
---|
[725] | 450 | else
|
---|
[1691] | 451 | PATH_OUT = $(PATH_OUT_BASE)/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/$(KBUILD_TYPE)
|
---|
[725] | 452 | endif
|
---|
[329] | 453 | endif # !define PATH_OUT
|
---|
[1051] | 454 | PATH_OBJCACHE = $(PATH_OUT_BASE)/kObjCache
|
---|
[353] | 455 | PATH_OBJ = $(PATH_OUT)/obj
|
---|
| 456 | PATH_TARGET = $(PATH_OBJ)/$(CURSUBDIR)
|
---|
[2475] | 457 | PATH_STAGE = $(PATH_OUT)/stage
|
---|
| 458 | ifndef PATH_INS
|
---|
| 459 | ifdef DESTROOT
|
---|
| 460 | PATH_INS = $(DESTROOT)
|
---|
| 461 | else
|
---|
| 462 | PATH_INS = $(PATH_OUT)/dist
|
---|
| 463 | endif
|
---|
| 464 | endif
|
---|
[70] | 465 |
|
---|
[2513] | 466 | # Tripwire obsolete PATH defines.
|
---|
| 467 | PATH_BIN = $(error kBuild: PATH_BIN is obsoleted in kBuild 0.1.2. Use PATH_STAGE_BIN or PATH_INST_BIN instead)
|
---|
| 468 | PATH_DLL = $(error kBuild: PATH_LIB is obsoleted in kBuild 0.1.2. Use PATH_STAGE_DLL or PATH_INST_DLL instead)
|
---|
| 469 | PATH_LIB = $(error kBuild: PATH_LIB is obsoleted in kBuild 0.1.2. Use PATH_STAGE_LIB or PATH_INST_LIB instead)
|
---|
| 470 | PATH_SYS = $(error kBuild: PATH_SYS is obsoleted in kBuild 0.1.2. Use PATH_STAGE_SYS or PATH_INST_SYS instead)
|
---|
| 471 | PATH_DOC = $(error kBuild: PATH_DOC is obsoleted in kBuild 0.1.2. Use PATH_STAGE_DOC or PATH_INST_DOC instead)
|
---|
| 472 |
|
---|
[2271] | 473 | # Development tool tree.
|
---|
[2724] | 474 | KBUILD_DEVTOOLS ?= $(if $(PATH_DEVTOOLS),$(PATH_DEVTOOLS),$(PATH_ROOT)/tools)
|
---|
| 475 | KBUILD_DEVTOOLS_TRG ?= $(KBUILD_DEVTOOLS)/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)
|
---|
| 476 | KBUILD_DEVTOOLS_HST ?= $(KBUILD_DEVTOOLS)/$(KBUILD_HOST).$(KBUILD_HOST_ARCH)
|
---|
[2271] | 477 |
|
---|
| 478 | if1of ($(KBUILD_TARGET_ARCH), amd64 hppa64 mips64 ppc64 s390x sparc64)
|
---|
| 479 | ifeq ($(KBUILD_TARGET_ARCH),amd64)
|
---|
[2724] | 480 | KBUILD_DEVTOOLS_TRG_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_TARGET).x86
|
---|
[2271] | 481 | else ifeq ($(KBUILD_TARGET_ARCH),hppa64)
|
---|
[2724] | 482 | KBUILD_DEVTOOLS_TRG_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_TARGET).hppa32
|
---|
[2271] | 483 | else ifeq ($(KBUILD_TARGET_ARCH),mips64)
|
---|
[2724] | 484 | KBUILD_DEVTOOLS_TRG_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_TARGET).mips32
|
---|
[2271] | 485 | else ifeq ($(KBUILD_TARGET_ARCH),ppc64)
|
---|
[2724] | 486 | KBUILD_DEVTOOLS_TRG_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_TARGET).ppc32
|
---|
[2271] | 487 | else ifeq ($(KBUILD_TARGET_ARCH),s390x)
|
---|
[2724] | 488 | KBUILD_DEVTOOLS_TRG_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_TARGET).s390
|
---|
[2271] | 489 | else ifeq ($(KBUILD_TARGET_ARCH),sparc64)
|
---|
[2724] | 490 | KBUILD_DEVTOOLS_TRG_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_TARGET).sparc32
|
---|
[2271] | 491 | endif
|
---|
| 492 | endif
|
---|
| 493 |
|
---|
| 494 | if1of ($(KBUILD_HOST_ARCH), amd64 hppa64 mips64 ppc64 s390x sparc64)
|
---|
| 495 | ifeq ($(KBUILD_HOST_ARCH),amd64)
|
---|
[2724] | 496 | KBUILD_DEVTOOLS_HST_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_HOST).x86
|
---|
[2271] | 497 | else ifeq ($(KBUILD_HOST_ARCH),hppa64)
|
---|
[2724] | 498 | KBUILD_DEVTOOLS_HST_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_HOST).hppa32
|
---|
[2271] | 499 | else ifeq ($(KBUILD_HOST_ARCH),mips64)
|
---|
[2724] | 500 | KBUILD_DEVTOOLS_HST_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_HOST).mips32
|
---|
[2271] | 501 | else ifeq ($(KBUILD_HOST_ARCH),ppc64)
|
---|
[2724] | 502 | KBUILD_DEVTOOLS_HST_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_HOST).ppc32
|
---|
[2271] | 503 | else ifeq ($(KBUILD_HOST_ARCH),s390x)
|
---|
[2724] | 504 | KBUILD_DEVTOOLS_HST_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_HOST).s390
|
---|
[2271] | 505 | else ifeq ($(KBUILD_HOST_ARCH),sparc64)
|
---|
[2724] | 506 | KBUILD_DEVTOOLS_HST_ALT ?= $(PATH_DEVTOOLS)/$(KBUILD_HOST).sparc32
|
---|
[2271] | 507 | endif
|
---|
| 508 | endif
|
---|
| 509 |
|
---|
[2725] | 510 | # Deprecated legacy names.
|
---|
| 511 | PATH_DEVTOOLS ?= $(KBUILD_DEVTOOLS)
|
---|
| 512 | PATH_DEVTOOLS_TRG ?= $(KBUILD_DEVTOOLS_TRG)
|
---|
| 513 | PATH_DEVTOOLS_TRG_ALT ?= $(KBUILD_DEVTOOLS_TRG_ALT)
|
---|
| 514 | PATH_DEVTOOLS_HST ?= $(KBUILD_DEVTOOLS_HST)
|
---|
| 515 | PATH_DEVTOOLS_HST_ALT ?= $(KBUILD_DEVTOOLS_HST_ALT)
|
---|
[2271] | 516 |
|
---|
[1504] | 517 | # KBUILD_PATH / PATH_KBUILD is determined by kmk.
|
---|
| 518 | ifndef KBUILD_PATH
|
---|
| 519 | KBUILD_PATH := $(PATH_KBUILD)
|
---|
[70] | 520 | endif
|
---|
[1504] | 521 | ifeq ($(strip $(KBUILD_PATH)),)
|
---|
| 522 | $(error kBuild: KBUILD_PATH is missing or empty! kmk is supposed to set it.)
|
---|
[978] | 523 | endif
|
---|
[1504] | 524 | # KBUILD_BIN_PATH / PATH_KBUILD_BIN is determined by kmk.
|
---|
| 525 | ifndef KBUILD_BIN_PATH
|
---|
| 526 | KBUILD_BIN_PATH := $(PATH_KBUILD_BIN)
|
---|
| 527 | endif
|
---|
| 528 | ifeq ($(strip $(KBUILD_BIN_PATH)),)
|
---|
| 529 | $(error kBuild: KBUILD_BIN_PATH is missing or empty! kmk is supposed to set it.)
|
---|
| 530 | endif
|
---|
[978] | 531 |
|
---|
[69] | 532 | # kBuild files which might be of interest.
|
---|
[1664] | 533 | FILE_KBUILD_HEADER := $(KBUILD_PATH)/header.kmk
|
---|
| 534 | #FILE_KBUILD_CONFIG := $(KBUILD_PATH)/config.kmk
|
---|
| 535 | FILE_KBUILD_FOOTER := $(KBUILD_PATH)/footer.kmk
|
---|
| 536 | FILE_KBUILD_SUB_HEADER := $(KBUILD_PATH)/subheader.kmk
|
---|
| 537 | FILE_KBUILD_SUB_FOOTER := $(KBUILD_PATH)/subfooter.kmk
|
---|
[69] | 538 |
|
---|
[725] | 539 | ## MAKEFILE is the name of the main makefile.
|
---|
[204] | 540 | MAKEFILE := $(firstword $(MAKEFILE_LIST))
|
---|
[748] | 541 | ## MAKEFILE_CURRENT is the name of the current makefile.
|
---|
[725] | 542 | # This is updated everything a sub-makefile is included.
|
---|
| 543 | MAKEFILE_CURRENT := $(MAKEFILE)
|
---|
[69] | 544 |
|
---|
[72] | 545 |
|
---|
[1602] | 546 | ## @todo this should be done via SUFF_XYZ.target/host...
|
---|
| 547 |
|
---|
[69] | 548 | #
|
---|
[72] | 549 | # Build platform setup.
|
---|
[984] | 550 | # (PORTME)
|
---|
[69] | 551 | #
|
---|
[1602] | 552 | if1of ($(KBUILD_HOST), win nt)
|
---|
| 553 | # Win, Win32, Win64, NT.
|
---|
| 554 | EXEC_X86_WIN32 :=
|
---|
| 555 | HOSTSUFF_EXE := .exe
|
---|
[984] | 556 |
|
---|
[1602] | 557 | # OS/2.
|
---|
| 558 | else ifeq ($(KBUILD_HOST),os2)
|
---|
[83] | 559 | EXEC_X86_WIN32 := innopec.exe
|
---|
[69] | 560 | HOSTSUFF_EXE := .exe
|
---|
| 561 |
|
---|
[1602] | 562 | else if1of ($(KBUILD_HOST), freebsd dragonfly linux openbsd netbsd)
|
---|
| 563 | # Unix (like) systems with wine.
|
---|
[135] | 564 | EXEC_X86_WIN32 := wine
|
---|
[69] | 565 | HOSTSUFF_EXE :=
|
---|
[70] | 566 |
|
---|
[1602] | 567 | else
|
---|
| 568 | # Unix (like) systems without wine.
|
---|
[557] | 569 | EXEC_X86_WIN32 := false
|
---|
| 570 | HOSTSUFF_EXE :=
|
---|
| 571 | endif
|
---|
| 572 |
|
---|
[811] | 573 |
|
---|
[73] | 574 | #
|
---|
| 575 | # Build target setup.
|
---|
[984] | 576 | # (PORTME)
|
---|
[73] | 577 | #
|
---|
[1388] | 578 | SUFF_DEP := .dep
|
---|
[2088] | 579 | SUFF_BIN :=
|
---|
[1504] | 580 | if1of ($(KBUILD_TARGET), win nt os2)
|
---|
[1388] | 581 | SUFF_OBJ := .obj
|
---|
| 582 | SUFF_LIB := .lib
|
---|
| 583 | SUFF_DLL := .dll
|
---|
| 584 | SUFF_EXE := .exe
|
---|
| 585 | SUFF_SYS := .sys
|
---|
| 586 | SUFF_RES := .res
|
---|
[1504] | 587 | else ifeq ($(KBUILD_TARGET),l4)
|
---|
[1388] | 588 | SUFF_OBJ := .o
|
---|
| 589 | SUFF_LIB := .a
|
---|
| 590 | SUFF_DLL := .s.so
|
---|
| 591 | SUFF_EXE :=
|
---|
| 592 | SUFF_SYS := .a
|
---|
| 593 | SUFF_RES :=
|
---|
[1504] | 594 | else ifeq ($(KBUILD_TARGET),darwin)
|
---|
[1388] | 595 | SUFF_OBJ := .o
|
---|
| 596 | SUFF_LIB := .a
|
---|
| 597 | SUFF_DLL := .dylib
|
---|
| 598 | SUFF_EXE :=
|
---|
| 599 | SUFF_SYS :=
|
---|
| 600 | SUFF_RES :=
|
---|
| 601 | else
|
---|
| 602 | SUFF_OBJ := .o
|
---|
| 603 | SUFF_LIB := .a
|
---|
| 604 | SUFF_DLL := .so
|
---|
| 605 | SUFF_EXE :=
|
---|
[1602] | 606 | if1of ($(KBUILD_TARGET), dragonfly freebsd linux netbsd openbsd) ## @todo check netbsd and openbsd.
|
---|
[1389] | 607 | SUFF_SYS := .ko
|
---|
[1388] | 608 | else
|
---|
[1389] | 609 | SUFF_SYS :=
|
---|
| 610 | endif
|
---|
[1388] | 611 | SUFF_RES :=
|
---|
[73] | 612 | endif
|
---|
[69] | 613 |
|
---|
| 614 | #
|
---|
| 615 | # Standard kBuild tools.
|
---|
| 616 | #
|
---|
[978] | 617 | ifeq ($(KMK),kmk)
|
---|
[1504] | 618 | KMK := $(KBUILD_BIN_PATH)/kmk$(HOSTSUFF_EXE)
|
---|
[233] | 619 | endif
|
---|
[978] | 620 | MAKE := $(KMK)
|
---|
[233] | 621 |
|
---|
[1504] | 622 | GMAKE := $(KBUILD_BIN_PATH)/kmk_gmake$(HOSTSUFF_EXE)
|
---|
[1378] | 623 |
|
---|
[2148] | 624 | #DEP_EXT := $(KBUILD_BIN_PATH)/kDep$(HOSTSUFF_EXE)
|
---|
| 625 | #DEP_INT := $(KBUILD_BIN_PATH)/kDep$(HOSTSUFF_EXE)
|
---|
| 626 | #DEP := $(DEP_INT)
|
---|
[69] | 627 |
|
---|
[1504] | 628 | DEP_IDB_EXT := $(KBUILD_BIN_PATH)/kDepIDB$(HOSTSUFF_EXE)
|
---|
[2148] | 629 | DEP_IDB_INT := kmk_builtin_kDepIDB
|
---|
| 630 | DEP_IDB := $(DEP_IDB_INT)
|
---|
[397] | 631 |
|
---|
[2148] | 632 | DEP_PRE := $(KBUILD_BIN_PATH)/kDepPre$(HOSTSUFF_EXE)
|
---|
[380] | 633 |
|
---|
[1504] | 634 | KOBJCACHE_EXT := $(KBUILD_BIN_PATH)/kObjCache$(HOSTSUFF_EXE)
|
---|
[1004] | 635 | KOBJCACHE := $(KOBJCACHE_EXT)
|
---|
| 636 |
|
---|
[1504] | 637 | APPEND_EXT := $(KBUILD_BIN_PATH)/kmk_append$(HOSTSUFF_EXE)
|
---|
[2148] | 638 | APPEND_INT := kmk_builtin_append
|
---|
| 639 | APPEND := $(APPEND_INT)
|
---|
[69] | 640 |
|
---|
[1504] | 641 | CAT_EXT := $(KBUILD_BIN_PATH)/kmk_cat$(HOSTSUFF_EXE)
|
---|
[2148] | 642 | CAT_INT := kmk_builtin_cat
|
---|
| 643 | CAT := $(CAT_INT)
|
---|
[353] | 644 |
|
---|
[1753] | 645 | CHMOD_EXT := $(KBUILD_BIN_PATH)/kmk_chmod$(HOSTSUFF_EXE)
|
---|
[2148] | 646 | CHMOD_INT := kmk_builtin_chmod
|
---|
| 647 | CHMOD := $(CHMOD_INT)
|
---|
[1753] | 648 |
|
---|
[1504] | 649 | CMP_EXT := $(KBUILD_BIN_PATH)/kmk_cmp$(HOSTSUFF_EXE)
|
---|
[2148] | 650 | CMP_INT := kmk_builtin_cmp
|
---|
| 651 | CMP := $(CMP_INT)
|
---|
[1118] | 652 |
|
---|
[1504] | 653 | CP_EXT := $(KBUILD_BIN_PATH)/kmk_cp$(HOSTSUFF_EXE)
|
---|
[2148] | 654 | CP_INT := kmk_builtin_cp
|
---|
| 655 | CP := $(CP_INT)
|
---|
[1119] | 656 |
|
---|
[1504] | 657 | ECHO_EXT := $(KBUILD_BIN_PATH)/kmk_echo$(HOSTSUFF_EXE)
|
---|
[2148] | 658 | ECHO_INT := kmk_builtin_echo
|
---|
| 659 | ECHO := $(ECHO_INT)
|
---|
[380] | 660 |
|
---|
[1753] | 661 | EXPR_EXT := $(KBUILD_BIN_PATH)/kmk_expr$(HOSTSUFF_EXE)
|
---|
[2148] | 662 | EXPR_INT := kmk_builtin_expr
|
---|
| 663 | EXPR := $(EXPR_INT)
|
---|
[1753] | 664 |
|
---|
[1504] | 665 | INSTALL_EXT := $(KBUILD_BIN_PATH)/kmk_install$(HOSTSUFF_EXE)
|
---|
[2148] | 666 | INSTALL_INT := kmk_builtin_install
|
---|
| 667 | INSTALL := $(INSTALL_INT)
|
---|
[380] | 668 |
|
---|
[1504] | 669 | LN_EXT := $(KBUILD_BIN_PATH)/kmk_ln$(HOSTSUFF_EXE)
|
---|
[2148] | 670 | LN_INT := kmk_builtin_ln
|
---|
| 671 | LN := $(LN_INT)
|
---|
[380] | 672 |
|
---|
[1504] | 673 | MD5SUM_EXT := $(KBUILD_BIN_PATH)/kmk_md5sum$(HOSTSUFF_EXE)
|
---|
[2148] | 674 | MD5SUM_INT := kmk_builtin_md5sum
|
---|
| 675 | MD5SUM := $(MD5SUM_INT)
|
---|
[1118] | 676 |
|
---|
[1504] | 677 | MKDIR_EXT := $(KBUILD_BIN_PATH)/kmk_mkdir$(HOSTSUFF_EXE)
|
---|
[2148] | 678 | MKDIR_INT := kmk_builtin_mkdir
|
---|
| 679 | MKDIR := $(MKDIR_INT)
|
---|
[380] | 680 |
|
---|
[1504] | 681 | MV_EXT := $(KBUILD_BIN_PATH)/kmk_mv$(HOSTSUFF_EXE)
|
---|
[2148] | 682 | MV_INT := kmk_builtin_mv
|
---|
| 683 | MV := $(MV_INT)
|
---|
[380] | 684 |
|
---|
[1504] | 685 | PRINTF_EXT := $(KBUILD_BIN_PATH)/kmk_printf$(HOSTSUFF_EXE)
|
---|
[2148] | 686 | PRINTF_INT := kmk_builtin_printf
|
---|
| 687 | PRINTF := $(PRINTF_INT)
|
---|
[776] | 688 |
|
---|
[1504] | 689 | REDIRECT_EXT:= $(KBUILD_BIN_PATH)/kmk_redirect$(HOSTSUFF_EXE)
|
---|
[2148] | 690 | REDIRECT_INT:= $(REDIRECT_EXT)
|
---|
| 691 | REDIRECT := $(REDIRECT_INT)
|
---|
[1272] | 692 |
|
---|
[1504] | 693 | RM_EXT := $(KBUILD_BIN_PATH)/kmk_rm$(HOSTSUFF_EXE)
|
---|
[2148] | 694 | RM_INT := kmk_builtin_rm
|
---|
| 695 | RM := $(RM_INT)
|
---|
[380] | 696 |
|
---|
[1504] | 697 | RMDIR_EXT := $(KBUILD_BIN_PATH)/kmk_rmdir$(HOSTSUFF_EXE)
|
---|
[2148] | 698 | RMDIR_INT := kmk_builtin_rmdir
|
---|
| 699 | RMDIR := $(RMDIR_INT)
|
---|
[601] | 700 |
|
---|
[1504] | 701 | SED_EXT := $(KBUILD_BIN_PATH)/kmk_sed$(HOSTSUFF_EXE)
|
---|
[978] | 702 | SED_INT := $(SED_EXT)
|
---|
[380] | 703 | SED := $(SED_EXT)
|
---|
| 704 |
|
---|
[2148] | 705 | SLEEP_INT := kmk_builtin_sleep
|
---|
| 706 | SLEEP_EXT := $(KBUILD_BIN_PATH)/kmk_sleep$(HOSTSUFF_EXE)
|
---|
| 707 | SLEEP := $(SLEEP_EXT)
|
---|
| 708 |
|
---|
[1504] | 709 | TEST_EXT := $(KBUILD_BIN_PATH)/kmk_test$(HOSTSUFF_EXE)
|
---|
[2148] | 710 | TEST_INT := kmk_builtin_test
|
---|
| 711 | TEST := $(TEST_INT)
|
---|
[1296] | 712 |
|
---|
[2148] | 713 | TIME_EXT := $(KBUILD_BIN_PATH)/kmk_time$(HOSTSUFF_EXE)
|
---|
| 714 | TIME_INT := $(TIME_EXT)
|
---|
| 715 | TIME := $(TIME_INT)
|
---|
| 716 |
|
---|
[380] | 717 | # Our default shell is the Almquist shell from *BSD.
|
---|
[1504] | 718 | ASH := $(KBUILD_BIN_PATH)/kmk_ash$(HOSTSUFF_EXE)
|
---|
[380] | 719 | MAKESHELL := $(ASH)
|
---|
| 720 | SHELL := $(ASH)
|
---|
| 721 | export SHELL MAKESHELL
|
---|
| 722 |
|
---|
[414] | 723 | # Symlinking is problematic on some platforms...
|
---|
[380] | 724 | LN_SYMLINK := $(LN) -s
|
---|
| 725 |
|
---|
[2479] | 726 | # When copying to the staging area, use hard links to save time and space.
|
---|
[2485] | 727 | ifndef KBUILD_NO_HARD_LINKING
|
---|
[2512] | 728 | INSTALL_STAGING := $(INSTALL) --hard-link-files-when-possible
|
---|
| 729 | else
|
---|
| 730 | INSTALL_STAGING := $(INSTALL)
|
---|
[2479] | 731 | endif
|
---|
[743] | 732 |
|
---|
[2479] | 733 |
|
---|
[743] | 734 | #
|
---|
| 735 | # Some Functions.
|
---|
[748] | 736 | # The lower cased ones are either fallbacks or candidates for functions.c.
|
---|
[743] | 737 | #
|
---|
| 738 |
|
---|
[130] | 739 | ## ABSPATH - make paths absolute.
|
---|
[129] | 740 | # This implementation is clumsy and doesn't resolve '..' and '.' components.
|
---|
[73] | 741 | #
|
---|
[129] | 742 | # @param $1 The paths to make absolute.
|
---|
[696] | 743 | # @obsolete Use the GNU make function $(abspath) directly now.
|
---|
[984] | 744 | ABSPATH = $(abspath $(1))$(warning ABSPATH is deprecated, use abspath directly!)
|
---|
[353] | 745 |
|
---|
[130] | 746 | ## DIRDEP - make create directory dependencies.
|
---|
| 747 | #
|
---|
| 748 | # @param $1 The paths to the directories which must be created.
|
---|
[353] | 749 | DIRDEP = $(foreach path,$(patsubst %/,%,$(1)),$(path)/)
|
---|
[129] | 750 |
|
---|
| 751 | ## Cygwin kludge.
|
---|
| 752 | # This converts /cygdrive/x/% to x:%.
|
---|
| 753 | #
|
---|
| 754 | # @param $1 The paths to make native.
|
---|
| 755 | # @remark This macro is pretty much obsolete since we don't use cygwin base make.
|
---|
| 756 | ifneq ($(patsubst /cygdrive/%,%,$(CURDIR)),$(CURDIR))
|
---|
[743] | 757 | CYGPATHMIXED = $(foreach path,$(1)\
|
---|
[129] | 758 | ,$(if $(patsubst /cygdrive/%,,$(path)),$(path),$(patsubst $(strip $(firstword $(subst /, ,$(patsubst /cygdrive/%,%,$(path)))))/%,$(strip $(firstword $(subst /, ,$(patsubst /cygdrive/%,%,$(path))))):/%,$(patsubst /cygdrive/%,%,$(path)))))
|
---|
| 759 | else
|
---|
[743] | 760 | CYGPATHMIXED = $(1)
|
---|
[129] | 761 | endif
|
---|
| 762 |
|
---|
[743] | 763 | ## Removes the drive letter from a path (if it has one)
|
---|
| 764 | # @param $1 the path
|
---|
| 765 | no-drive = $(word $(words $(subst :, ,$(1))),$(subst :, ,$(1)))
|
---|
[723] | 766 |
|
---|
[743] | 767 | ## Removes the root slash from a path (if it has one)
|
---|
| 768 | # @param $1 the path
|
---|
| 769 | no-root-slash = $(patsubst /%,%,$(1))
|
---|
[723] | 770 |
|
---|
[2488] | 771 | ##
|
---|
| 772 | # Similar to firstword, except it returns the value of first defined variable.
|
---|
| 773 | # @param $1 list of variables to probe.
|
---|
[2512] | 774 | define FIRST-DEFINED-VAR
|
---|
| 775 | local .RETURN := $(strip $(firstdefined $1, value))
|
---|
| 776 | endef
|
---|
[2488] | 777 |
|
---|
[743] | 778 | ## Figure out where to put object files.
|
---|
| 779 | # @param $1 real target name.
|
---|
| 780 | # @param $2 normalized main target
|
---|
[748] | 781 | TARGET_BASE = $(PATH_TARGET)/$(2)/$(call no-root-slash,$(call no-drive,$(1)))
|
---|
[723] | 782 |
|
---|
[743] | 783 | ## Figure out where to put object files.
|
---|
| 784 | # @param $1 normalized main target
|
---|
| 785 | TARGET_PATH = $(PATH_TARGET)/$(1)
|
---|
[723] | 786 |
|
---|
[2223] | 787 | ##
|
---|
| 788 | # Checks if the specified short option ($1) is found in the flags ($2),
|
---|
| 789 | # assuming getopt style options.
|
---|
| 790 | #
|
---|
| 791 | # @returns $3 if present, $4 not.
|
---|
| 792 | #
|
---|
| 793 | # @param $1 The option (single char!).
|
---|
| 794 | # @param $2 The option arguments.
|
---|
| 795 | # @param $3 Eval and return if present.
|
---|
| 796 | # @param $4 Eval and return if not present.
|
---|
| 797 | #
|
---|
| 798 | # @todo May confuse option values starting with '-' for options.
|
---|
| 799 | # @remarks Invoke like this: $(evalcall KB_FN_OPT_TEST_SHORT,d,$(flags),present,not-present)
|
---|
| 800 | #
|
---|
| 801 | define KB_FN_OPT_TEST_SHORT
|
---|
| 802 | local options := $(translate $(strip $(filter -%,$(filter-out --%,$2))),$(SP)-,)
|
---|
| 803 | local .RETURN := $(if-expr $(pos $1,$(options)) != 0,$3,$4)
|
---|
| 804 | endef
|
---|
[723] | 805 |
|
---|
[2223] | 806 | ##
|
---|
| 807 | # Checks if the specified long option ($1) is found in the flags ($2),
|
---|
| 808 | # assuming getopt style options.
|
---|
[129] | 809 | #
|
---|
[2223] | 810 | # @returns $3 if present, $4 not.
|
---|
| 811 | #
|
---|
| 812 | # @param $1 The long option, dashes included. No % chars.
|
---|
| 813 | # @param $2 The option arguments.
|
---|
| 814 | # @param $3 Eval and return if present.
|
---|
| 815 | # @param $4 Eval and return if not present.
|
---|
| 816 | #
|
---|
| 817 | # @todo May confuse option values starting with '--' for options.
|
---|
| 818 | # @remarks Invoke like this: $(evalcall KBFN_OPT_TEST_SHORT,--defined,$(flags),present,not-present)
|
---|
| 819 | #
|
---|
| 820 | define KB_FN_OPT_TEST_LONG
|
---|
| 821 | local options := $(filter-out =delete=%,$(subst :, =delete=,$(subst =, =delete=,$2)))
|
---|
| 822 | local .RETURN := $(if-expr "$(filter $1,$(options))" != "",$3,$4)
|
---|
| 823 | endef
|
---|
| 824 |
|
---|
| 825 | ##
|
---|
| 826 | # Checks if the specified short ($1) or long ($2) option is found in the flags ($2),
|
---|
| 827 | # assuming getopt style options.
|
---|
| 828 | #
|
---|
| 829 | # @returns $4 if present, $5 not.
|
---|
| 830 | #
|
---|
| 831 | # @param $1 The short option (single char!).
|
---|
| 832 | # @param $2 The long option, dashes included. No % chars.
|
---|
| 833 | # @param $3 The option arguments.
|
---|
| 834 | # @param $4 Eval and return if present.
|
---|
| 835 | # @param $5 Eval and return if not present.
|
---|
| 836 | #
|
---|
| 837 | # @todo May confuse option values starting with '--' for options.
|
---|
| 838 | # @remarks Invoke like this: $(evalcall KB_FN_OPT_TEST_SHORT_LONG,d,--defined,$(flags),present,not-present)
|
---|
| 839 | #
|
---|
| 840 | define KB_FN_OPT_TEST_SHORT_LONG
|
---|
| 841 | local short_options := $(translate $(strip $(filter -%,$(filter-out --%,$3))),$(SP)-,)
|
---|
| 842 | local long_options := $(filter-out =delete=%,$(subst :, =delete=,$(subst =, =delete=,$3)))
|
---|
| 843 | local .RETURN := $(if-expr $(pos $1,$(short_options)) != 0 || "$(filter $2,$(long_options))" != "",$4,$5)
|
---|
| 844 | endef
|
---|
| 845 |
|
---|
[2434] | 846 | ##
|
---|
| 847 | # Make an assignment to a deprecated variable.
|
---|
| 848 | #
|
---|
| 849 | # @param $1 The variable name.
|
---|
| 850 | # @param $2 The value.
|
---|
| 851 | # @param $3 The variable to use instead.
|
---|
| 852 | #
|
---|
| 853 | ifdef KBUILD_WITH_DEPREATED_AS_ERROR
|
---|
[2441] | 854 | KB_FN_ASSIGN_DEPRECATED = $(eval $(subst :,$$(COLON),$1) = $2$$(error $1 is deprecated, use $3 instead))
|
---|
[2434] | 855 | else
|
---|
[2441] | 856 | KB_FN_ASSIGN_DEPRECATED = $(eval $(subst :,$$(COLON),$1) = $2$$(warning $1 is deprecated, use $3 instead))
|
---|
[2434] | 857 | endif
|
---|
[2223] | 858 |
|
---|
[2531] | 859 | ##
|
---|
[2533] | 860 | # Show an assertion message.
|
---|
| 861 | #
|
---|
| 862 | # @param $1 The assertion name.
|
---|
| 863 | # @param $2 The details.
|
---|
| 864 | #
|
---|
| 865 | define KB_FN_ASSERT_MSG
|
---|
| 866 | $(info !! kBuild $1 Assertion Failed !!)
|
---|
| 867 | ifdef target
|
---|
| 868 | $(info !! target: $(target))
|
---|
| 869 | local varloc := $(where $(target))
|
---|
| 870 | if "$(varloc)" == "undefined"
|
---|
| 871 | local varloc := $(where $(target)_TEMPLATE)
|
---|
| 872 | endif
|
---|
| 873 | if "$(varloc)" == "undefined"
|
---|
| 874 | local varloc := $(where $(target)_SOURCES)
|
---|
| 875 | endif
|
---|
| 876 | if "$(varloc)" == "undefined"
|
---|
| 877 | local varloc := $(where $(target)_EXTENDS)
|
---|
| 878 | endif
|
---|
| 879 | if "$(varloc)" == "undefined"
|
---|
| 880 | local varloc := $(where target)
|
---|
| 881 | endif
|
---|
| 882 | ifneq ($(varloc),)
|
---|
| 883 | $(info !! location: $(varloc))
|
---|
| 884 | else
|
---|
| 885 | $(info !! probable location: $($(target)_DEFPATH)/Makefile.kmk)
|
---|
| 886 | endif
|
---|
| 887 | endif
|
---|
| 888 | $(info !! $2)
|
---|
| 889 | $(error fixme)
|
---|
| 890 | endef
|
---|
| 891 |
|
---|
| 892 | ##
|
---|
[2531] | 893 | # Throw an error if the given path $1 isn't absolute and assertions are enabled.
|
---|
| 894 | #
|
---|
| 895 | # @param $1 The name of the path variable to check.
|
---|
| 896 | #
|
---|
| 897 | ifdef KBUILD_INTERNAL_STRICT
|
---|
| 898 | KB_FN_ASSERT_ABSPATH = $(if-expr "$(abspath $($(strip $1)))" != "$(strip $($(strip $1)))",\
|
---|
[2533] | 899 | $(evalcall KB_FN_ASSERT_MSG,abspath,$1 is:$(NLTAB)'$($(strip $1))'$(NLTAB)expected:$(NLTAB)'$(abspath $($(strip $1)))'))
|
---|
[2531] | 900 | else
|
---|
| 901 | KB_FN_ASSERT_ABSPATH :=
|
---|
| 902 | endif
|
---|
[2223] | 903 |
|
---|
[2531] | 904 |
|
---|
[2223] | 905 | #
|
---|
[353] | 906 | # Initialize some of the globals which the Config.kmk and
|
---|
| 907 | # others can add stuff to if they like for processing in the footer.
|
---|
| 908 | #
|
---|
| 909 |
|
---|
[1416] | 910 | ## KBUILD_TEMPLATE_PATHS
|
---|
[353] | 911 | # List a paths (separated by space) where templates can be found.
|
---|
[1416] | 912 | KBUILD_TEMPLATE_PATHS :=
|
---|
[353] | 913 |
|
---|
[1416] | 914 | ## KBUILD_TOOL_PATHS
|
---|
[353] | 915 | # List of paths (separated by space) where tools can be found.
|
---|
[1416] | 916 | KBUILD_TOOL_PATHS :=
|
---|
[353] | 917 |
|
---|
[1416] | 918 | ## KBUILD_SDK_PATHS
|
---|
[353] | 919 | # List of paths (separated by space) where SDKs can be found.
|
---|
[1416] | 920 | KBUILD_SDK_PATHS :=
|
---|
[353] | 921 |
|
---|
[1621] | 922 | ## KBUILD_UNIT_PATHS
|
---|
| 923 | # List of paths (separated by space) where units (USES) can be found.
|
---|
| 924 | KBUILD_UNIT_PATHS :=
|
---|
| 925 |
|
---|
[1416] | 926 | ## KBUILD_DEFAULT_PATHS
|
---|
| 927 | # List of paths (separated by space) to search for stuff as a last resort.
|
---|
| 928 | KBUILD_DEFAULT_PATHS :=
|
---|
| 929 |
|
---|
[353] | 930 | ## Proritized list of the default makefile when walking subdirectories.
|
---|
| 931 | # The user can overload this list.
|
---|
| 932 | DEFAULT_MAKEFILE := Makefile.kmk makefile.kmk Makefile makefile
|
---|
| 933 |
|
---|
[1424] | 934 | ## KBUILD_SRC_HANDLERS
|
---|
| 935 | # The list of source handlers, pair of extension and handler.
|
---|
| 936 | # The user can overload this list to provide additional or custom
|
---|
| 937 | # handlers. On a per-target/template see SRC_HANDLERS.
|
---|
| 938 | KBUILD_SRC_HANDLERS := \
|
---|
| 939 | .c:def_src_handler_c \
|
---|
| 940 | .C:def_src_handler_c \
|
---|
| 941 | .cxx:def_src_handler_cxx \
|
---|
| 942 | .CXX:def_src_handler_cxx \
|
---|
| 943 | .cpp:def_src_handler_cxx \
|
---|
| 944 | .CPP:def_src_handler_cxx \
|
---|
| 945 | .cc:def_src_handler_cxx \
|
---|
| 946 | .CC:def_src_handler_cxx \
|
---|
| 947 | .m:def_src_handler_objc \
|
---|
[2356] | 948 | .M:def_src_handler_objcxx \
|
---|
| 949 | .mm:def_src_handler_objcxx \
|
---|
[1424] | 950 | .asm:def_src_handler_asm \
|
---|
| 951 | .ASM:def_src_handler_asm \
|
---|
| 952 | .s:def_src_handler_asm \
|
---|
| 953 | .S:def_src_handler_asm \
|
---|
| 954 | .rc:def_src_handler_rc \
|
---|
| 955 | .obj:def_src_handler_obj \
|
---|
| 956 | .o:def_src_handler_obj \
|
---|
[1435] | 957 | .res:def_src_handler_obj
|
---|
[980] | 958 |
|
---|
[640] | 959 | ## PROPS_TOOLS
|
---|
[985] | 960 | # This is a subset of PROPS_SINGLE.
|
---|
[2356] | 961 | PROPS_TOOLS := TOOL CTOOL CXXTOOL OBJCTOOL OBJCXXTOOL ASTOOL RCTOOL ARTOOL LDTOOL FETCHTOOL UNPACKTOOL PATCHTOOL
|
---|
[640] | 962 |
|
---|
[353] | 963 | ## PROPS_SINGLE
|
---|
| 964 | # The list of non-accumulative target properties.
|
---|
| 965 | # A Config.kmk file can add it's own properties to this list and kBuild
|
---|
[1400] | 966 | # will do the necessary inheritance for templates, sdks, tools and targets.
|
---|
[2475] | 967 | PROPS_SINGLE := $(PROPS_TOOLS) TEMPLATE INSTTYPE INST STAGE NOINST BLD_TYPE BLD_TRG BLD_TRG_ARCH BLD_TRG_CPU FETCHDIR \
|
---|
[2356] | 968 | OBJSUFF COBJSUFF CXXOBJSUFF OBJCOBJSUFF OBJCXXOBJSUFF ASOBJSUFF RCOBJSUFF SYSSUFF BINSUFF EXESUFF DLLSUFF LIBSUFF ARLIBSUFF \
|
---|
[2523] | 969 | MODE UID GID LD_DEBUG DEBUG_INSTTYPE DEBUG_INST DEBUG_STAGE
|
---|
[985] | 970 | ## PROPS_SINGLE_LNK
|
---|
| 971 | # Subset of PROPS_SINGLE which applies to all linkable targets.
|
---|
[2550] | 972 | PROPS_SINGLE_LNK := $(filter-out FETCHTOOL UNPACKTOOL PATCHTOOL FETCHDIR, $(PROPS_SINGLE))
|
---|
[353] | 973 |
|
---|
| 974 | ## PROPS_DEFERRED
|
---|
[889] | 975 | # This list of non-accumulative target properties which are or may be
|
---|
| 976 | # functions, and thus should not be expanded until the very last moment.
|
---|
[2537] | 977 | PROPS_DEFERRED := INSTFUN INSTALLER PRE_CMDS POST_CMDS PRE_INST_CMDS POST_INST_CMDS \
|
---|
| 978 | PRE_FILE_CMDS POST_FILE_CMDS PRE_SYMLINK_CMDS POST_SYMLINK_CMDS PRE_DIRECTORY_CMDS POST_DIRECTORY_CMDS \
|
---|
| 979 | NAME SONAME
|
---|
[353] | 980 |
|
---|
[660] | 981 | ## PROPS_ACCUMULATE_R
|
---|
[748] | 982 | # The list of accumulative target properties where the right most value/flag
|
---|
[660] | 983 | # is the 'most significant'.
|
---|
[353] | 984 | # A Config.kmk file can add it's own properties to this list and kBuild
|
---|
| 985 | # will do the necessary inheritance from templates to targets.
|
---|
[660] | 986 | PROPS_ACCUMULATE_R := \
|
---|
[1702] | 987 | DEPS LNK_DEPS ORDERDEPS LNK_ORDERDEPS DEFS \
|
---|
[985] | 988 | ARFLAGS \
|
---|
[660] | 989 | CFLAGS CDEFS \
|
---|
| 990 | CXXFLAGS CXXDEFS \
|
---|
[1256] | 991 | OBJCFLAGS OBJCDEFS \
|
---|
[2356] | 992 | OBJCXXFLAGS OBJCXXDEFS \
|
---|
[660] | 993 | ASFLAGS ASDEFS \
|
---|
| 994 | RCFLAGS RCDEFS \
|
---|
| 995 | LDFLAGS \
|
---|
[2483] | 996 | IDFLAGS IFFLAGS EXEC_IFFLAGS ISFLAGS \
|
---|
[640] | 997 | FETCHFLAGS UNPACKFLAGS PATCHFLAGS
|
---|
[985] | 998 | ## PROPS_ACCUMULATE_R_LNK
|
---|
| 999 | # Subset of PROPS_ACCUMULATE_R which applies to all linkable targets.
|
---|
[2550] | 1000 | PROPS_ACCUMULATE_R_LNK := $(filter-out ARFLAGS LDFLAGS EXEC_IFFLAGS FETCHFLAGS UNPACKFLAGS PATCHFLAGS, $(PROPS_ACCUMULATE_R))
|
---|
[353] | 1001 |
|
---|
[660] | 1002 | ## PROPS_ACCUMULATE
|
---|
[748] | 1003 | # The list of accumulative target properties where the left most value/flag
|
---|
[660] | 1004 | # is the 'most significant'.
|
---|
| 1005 | # A Config.kmk file can add it's own properties to this list and kBuild
|
---|
| 1006 | # will do the necessary inheritance from templates to targets.
|
---|
| 1007 | PROPS_ACCUMULATE_L := \
|
---|
[2483] | 1008 | SDKS USES SOURCES EXEC_SOURCES SRC_HANDLERS INTERMEDIATES \
|
---|
[2356] | 1009 | INCS CINCS CXXINCS OBJCINCS OBJCXXINCS ASINCS RCINCS \
|
---|
[897] | 1010 | LIBS LIBPATH \
|
---|
[985] | 1011 | DIRS BLDDIRS CLEAN
|
---|
| 1012 | ## PROPS_ACCUMULATE_L_LNK
|
---|
| 1013 | # Subset of PROPS_ACCUMULATE_L which applies to all linkable targets.
|
---|
[2550] | 1014 | PROPS_ACCUMULATE_L_LNK := $(filter-out LIBS LIBPATH EXEC_SOURCES DIRS, $(PROPS_ACCUMULATE_L))
|
---|
[353] | 1015 |
|
---|
[662] | 1016 | ## PROPS_ALL
|
---|
| 1017 | # List of all the properties.
|
---|
| 1018 | PROPS_ALL = $(PROPS_SINGLE) $(PROPS_DEFERRED) $(PROPS_ACCUMULATE_L) $(PROPS_ACCUMULATE_R)
|
---|
[660] | 1019 |
|
---|
[985] | 1020 | ## @name Properties valid on programs (BLDPROGS and PROGRAMS)
|
---|
| 1021 | ## @{
|
---|
| 1022 | PROPS_PROGRAMS_SINGLE := $(PROPS_SINGLE_LNK) LDTOOL EXESUFF
|
---|
| 1023 | PROPS_PROGRAMS_DEFERRED := $(PROPS_DEFERRED)
|
---|
| 1024 | PROPS_PROGRAMS_ACCUMULATE_R := $(PROPS_ACCUMULATE_R_LNK) LDFLAGS
|
---|
| 1025 | PROPS_PROGRAMS_ACCUMULATE_L := $(PROPS_ACCUMULATE_L_LNK) LIBS LIBPATH
|
---|
| 1026 | ## @}
|
---|
| 1027 |
|
---|
| 1028 | ## @name Properties valid on libraries (LIBRARIES and IMPORT_LIBS)
|
---|
| 1029 | ## @{
|
---|
[989] | 1030 | PROPS_LIBRARIES_SINGLE := $(PROPS_SINGLE_LNK) ARTOOL LIBSUFF ARLIBSUFF LIBSUFF
|
---|
[985] | 1031 | PROPS_LIBRARIES_DEFERRED := $(filter-out SONAME,$(PROPS_DEFERRED))
|
---|
| 1032 | PROPS_LIBRARIES_ACCUMULATE_R := $(PROPS_ACCUMULATE_R_LNK) ARFLAGS
|
---|
| 1033 | PROPS_LIBRARIES_ACCUMULATE_L := $(PROPS_ACCUMULATE_L_LNK)
|
---|
| 1034 | ## @}
|
---|
| 1035 |
|
---|
| 1036 | ## @name Properties valid on dlls (DLLS)
|
---|
| 1037 | ## @{
|
---|
| 1038 | PROPS_DLLS_SINGLE := $(PROPS_SINGLE_LNK) LDTOOL DLLSUFF LIBSUFF
|
---|
| 1039 | PROPS_DLLS_DEFERRED := $(PROPS_DEFERRED)
|
---|
| 1040 | PROPS_DLLS_ACCUMULATE_R := $(PROPS_ACCUMULATE_R_LNK) LDFLAGS
|
---|
| 1041 | PROPS_DLLS_ACCUMULATE_L := $(PROPS_ACCUMULATE_L_LNK) LIBS LIBPATH
|
---|
| 1042 | ## @}
|
---|
| 1043 |
|
---|
[989] | 1044 | ## @name Properties valid on system modules (SYSMODS)
|
---|
| 1045 | ## @{
|
---|
| 1046 | PROPS_SYSMODS_SINGLE := $(PROPS_SINGLE_LNK) LDTOOL SYSSUFF
|
---|
| 1047 | PROPS_SYSMODS_DEFERRED := $(PROPS_DEFERRED)
|
---|
| 1048 | PROPS_SYSMODS_ACCUMULATE_R := $(PROPS_ACCUMULATE_R_LNK) LDFLAGS
|
---|
| 1049 | PROPS_SYSMODS_ACCUMULATE_L := $(PROPS_ACCUMULATE_L_LNK) LIBS LIBPATH
|
---|
| 1050 | ## @}
|
---|
| 1051 |
|
---|
[2084] | 1052 | ## @name Properties valid on misc binaries (MISCBINS)
|
---|
| 1053 | ## @{
|
---|
| 1054 | PROPS_MISCBINS_SINGLE := $(PROPS_SINGLE_LNK) LDTOOL BINSUFF
|
---|
| 1055 | PROPS_MISCBINS_DEFERRED := $(PROPS_DEFERRED)
|
---|
| 1056 | PROPS_MISCBINS_ACCUMULATE_R := $(PROPS_ACCUMULATE_R_LNK) LDFLAGS
|
---|
| 1057 | PROPS_MISCBINS_ACCUMULATE_L := $(PROPS_ACCUMULATE_L_LNK) LIBS LIBPATH
|
---|
| 1058 | ## @}
|
---|
| 1059 |
|
---|
[985] | 1060 | ## @name Properties valid on installs (INSTALLS)
|
---|
| 1061 | ## @{
|
---|
[2550] | 1062 | PROPS_INSTALLS_SINGLE := TOOL TEMPLATE INSTTYPE INST STAGE NOINST BLD_TYPE BLD_TRG BLD_TRG_ARCH BLD_TRG_CPU MODE UID GID
|
---|
[2537] | 1063 | PROPS_INSTALLS_DEFERRED := INSTFUN INSTALLER PRE_FILE_CMDS POST_FILE_CMDS PRE_SYMLINK_CMDS POST_SYMLINK_CMDS \
|
---|
| 1064 | PRE_DIRECTORY_CMDS POST_DIRECTORY_CMDS
|
---|
[2483] | 1065 | PROPS_INSTALLS_ACCUMULATE_R := DEPS ORDERDEPS GOALS INST_ONLY_GOALS STAGE_ONLY_GOALS IFFLAGS EXEC_IFFLAGS
|
---|
| 1066 | PROPS_INSTALLS_ACCUMULATE_L := SOURCES EXEC_SOURCES DIRS CLEAN
|
---|
[985] | 1067 | ## @}
|
---|
| 1068 |
|
---|
[2475] | 1069 | ## @name Properties valid on fetches (FETCHES)
|
---|
[985] | 1070 | ## @{
|
---|
[1400] | 1071 | PROPS_FETCHES_SINGLE := TOOL TEMPLATE FETCHTOOL UNPACKTOOL PATCHTOOL INST FETCHDIR
|
---|
[985] | 1072 | PROPS_FETCHES_DEFERRED :=
|
---|
| 1073 | PROPS_FETCHES_ACCUMULATE_R := FETCHFLAGS UNPACKFLAGS PATCHFLAGS
|
---|
[1613] | 1074 | PROPS_FETCHES_ACCUMULATE_L := SOURCES CLEAN
|
---|
[985] | 1075 | ## @}
|
---|
| 1076 |
|
---|
[2274] | 1077 | ## KBUILD_COMPILE_CATEGTORIES
|
---|
| 1078 | # Tools categories for compiling.
|
---|
| 1079 | KBUILD_COMPILE_CATEGTORIES := AS C CXX OBJC OBJCXX RC
|
---|
[985] | 1080 |
|
---|
[2274] | 1081 | ## KBUILD_GENERIC_CATEGORIES
|
---|
| 1082 | # Generic tool categories.
|
---|
| 1083 | KBUILD_GENERIC_CATEGORIES := FETCH UNPACK PATCH $(addprefix LINK_,LIBRARY PROGRAM DLL SYSMOD MISCBIN)
|
---|
| 1084 |
|
---|
| 1085 | ## PROPS_TOOLS_ONLY
|
---|
| 1086 | # Properties found only on tools.
|
---|
| 1087 | # This is expanded in a deferred manner, so it will pick up changes made to
|
---|
| 1088 | # KBUILD_COMPILE_CATEGTORIES and KBUILD_GENERIC_CATEGORIES made by units.
|
---|
| 1089 | PROPS_TOOLS_ONLY = \
|
---|
| 1090 | $(foreach cat, $(KBUILD_COMPILE_CATEGTORIES), \
|
---|
| 1091 | COMPILE_$(cat)_CMDS \
|
---|
| 1092 | COMPILE_$(cat)_OUTPUT \
|
---|
| 1093 | COMPILE_$(cat)_OUTPUT_MAYBE \
|
---|
| 1094 | COMPILE_$(cat)_DEPEND \
|
---|
| 1095 | COMPILE_$(cat)_DEPORD \
|
---|
| 1096 | COMPILE_$(cat)_USES_KOBJCACHE ) \
|
---|
| 1097 | $(foreach cat, $(KBUILD_GENERIC_CATEGORIES), \
|
---|
| 1098 | $(cat)_CMDS \
|
---|
| 1099 | $(cat)_OUTPUT \
|
---|
| 1100 | $(cat)_OUTPUT_MAYBE \
|
---|
| 1101 | $(cat)_DEPEND \
|
---|
| 1102 | $(cat)_DEPORD ))
|
---|
| 1103 |
|
---|
| 1104 |
|
---|
[353] | 1105 | #
|
---|
[748] | 1106 | # Here is a special 'hack' to prevent innocent environment variables being
|
---|
| 1107 | # picked up and treated as properties. (The most annoying example of why
|
---|
[662] | 1108 | # this is necessary is the Visual C++ commandline with it's LIBPATH.)
|
---|
| 1109 | #
|
---|
[748] | 1110 | # Define KBUILD_DONT_KILL_ENV_PROPS in the env. or on the commandline to
|
---|
[662] | 1111 | # disable this 'hack'.
|
---|
| 1112 | #
|
---|
| 1113 | ifndef KBUILD_DONT_KILL_ENV_PROPS
|
---|
| 1114 |
|
---|
| 1115 | define def_nuke_environment_prop
|
---|
| 1116 | ifeq ($(origin $(prop)),environment)
|
---|
| 1117 | $(prop) =
|
---|
| 1118 | endif
|
---|
| 1119 | endef
|
---|
[762] | 1120 | $(foreach prop, $(PROPS_ALL) \
|
---|
[2084] | 1121 | FETCHES PATCHES BLDPROGS LIBRARIES IMPORT_LIBS DLLS PROGRAMS SYSMODS MISCBINS INSTALLS OTHERS \
|
---|
[897] | 1122 | SUBDIRS MAKEFILES BLDDIRS \
|
---|
[762] | 1123 | ,$(eval $(value def_nuke_environment_prop)))
|
---|
[662] | 1124 |
|
---|
[897] | 1125 | endif # KBUILD_DONT_KILL_ENV_PROPS
|
---|
[662] | 1126 |
|
---|
| 1127 |
|
---|
| 1128 | #
|
---|
[353] | 1129 | # Pass configuration.
|
---|
| 1130 | #
|
---|
| 1131 | # The PASS_<passname>_trgs variable is listing the targets.
|
---|
| 1132 | # The PASS_<passname>_vars variable is listing the target variables.
|
---|
| 1133 | # The PASS_<passname>_pass variable is the lowercased passname.
|
---|
| 1134 | #
|
---|
| 1135 |
|
---|
[640] | 1136 | ## PASS: fetches
|
---|
| 1137 | # This pass fetches and unpacks things needed to complete the build.
|
---|
| 1138 | PASS_FETCHES := Fetches
|
---|
| 1139 | PASS_FETCHES_trgs :=
|
---|
| 1140 | PASS_FETCHES_vars := _FETCHES
|
---|
| 1141 | PASS_FETCHES_pass := fetches
|
---|
| 1142 |
|
---|
| 1143 | ## PASS: patches
|
---|
| 1144 | # This pass applies patches.
|
---|
| 1145 | PASS_PATCHES := Patches
|
---|
| 1146 | PASS_PATCHES_trgs :=
|
---|
| 1147 | PASS_PATCHES_vars := _PATCHES
|
---|
| 1148 | PASS_PATCHES_pass := patches
|
---|
| 1149 |
|
---|
[353] | 1150 | ## PASS: bldprogs
|
---|
| 1151 | # This pass builds targets which are required for building the rest.
|
---|
| 1152 | PASS_BLDPROGS := Build Programs
|
---|
| 1153 | PASS_BLDPROGS_trgs :=
|
---|
| 1154 | PASS_BLDPROGS_vars := _BLDPROGS
|
---|
| 1155 | PASS_BLDPROGS_pass := bldprogs
|
---|
| 1156 |
|
---|
| 1157 | ## PASS: libraries
|
---|
| 1158 | # This pass builds library targets.
|
---|
| 1159 | PASS_LIBRARIES := Libraries
|
---|
| 1160 | PASS_LIBRARIES_trgs :=
|
---|
| 1161 | PASS_LIBRARIES_vars := _LIBS _IMPORT_LIBS _OTHER_LIBRARIES
|
---|
| 1162 | PASS_LIBRARIES_pass := libraries
|
---|
| 1163 |
|
---|
| 1164 | ## PASS: binaries
|
---|
| 1165 | # This pass builds dll targets.
|
---|
| 1166 | PASS_DLLS := DLLs
|
---|
| 1167 | PASS_DLLS_trgs :=
|
---|
| 1168 | PASS_DLLS_vars := _DLLS _OTHER_DLLS
|
---|
| 1169 | PASS_DLLS_pass := dlls
|
---|
| 1170 |
|
---|
| 1171 | ## PASS: binaries
|
---|
| 1172 | # This pass builds binary targets, i.e. programs, system modules and stuff.
|
---|
| 1173 | PASS_BINARIES := Programs
|
---|
| 1174 | PASS_BINARIES_trgs :=
|
---|
[2084] | 1175 | PASS_BINARIES_vars := _PROGRAMS _SYSMODS _MISC_BINS _OTHER_BINARIES
|
---|
[353] | 1176 | PASS_BINARIES_pass := binaries
|
---|
| 1177 |
|
---|
| 1178 | ## PASS: others
|
---|
| 1179 | # This pass builds other targets.
|
---|
| 1180 | PASS_OTHERS := Other Stuff
|
---|
| 1181 | PASS_OTHERS_trgs :=
|
---|
| 1182 | PASS_OTHERS_vars := _OTHERS
|
---|
| 1183 | PASS_OTHERS_pass := others
|
---|
| 1184 |
|
---|
[2475] | 1185 | ## PASS: staging
|
---|
[353] | 1186 | # This pass installs the built entities to a sandbox area.
|
---|
[1646] | 1187 | ## @todo split this up into build install (to sandbox) and real installation.
|
---|
[2475] | 1188 | PASS_STAGING := Staging
|
---|
| 1189 | PASS_STAGING_trgs :=
|
---|
[2523] | 1190 | PASS_STAGING_vars := _STAGE_DIRS _INSTALLS _STAGE_FILES _DEBUG_STAGE_DIRS _DEBUG_STAGE_FILES
|
---|
[2475] | 1191 | PASS_STAGING_pass := staging
|
---|
| 1192 |
|
---|
| 1193 | ## PASS: install
|
---|
| 1194 | # This pass installs the built entities to where they will be used (using
|
---|
| 1195 | # DESTROOT or PATH_INS to indicate where this is).
|
---|
[353] | 1196 | PASS_INSTALLS := Install
|
---|
| 1197 | PASS_INSTALLS_trgs :=
|
---|
[2523] | 1198 | PASS_INSTALLS_vars := _INSTALLS_DIRS _INSTALLS_FILES _DEBUG_INSTALL_DIRS _DEBUG_INSTALL_FILES
|
---|
[353] | 1199 | PASS_INSTALLS_pass := installs
|
---|
| 1200 |
|
---|
[1646] | 1201 | ## PASS: testing
|
---|
| 1202 | # This pass processes custom rules for executing tests.
|
---|
| 1203 | PASS_TESTING := Tests
|
---|
| 1204 | PASS_TESTING_trgs :=
|
---|
| 1205 | PASS_TESTING_vars := _TESTING
|
---|
| 1206 | PASS_TESTING_pass := testing
|
---|
| 1207 |
|
---|
[353] | 1208 | ## PASS: packing
|
---|
| 1209 | # This pass processes custom packing rules.
|
---|
| 1210 | PASS_PACKING := Packing
|
---|
[414] | 1211 | PASS_PACKING_trgs :=
|
---|
[417] | 1212 | PASS_PACKING_vars := _PACKING
|
---|
[353] | 1213 | PASS_PACKING_pass := packing
|
---|
| 1214 |
|
---|
| 1215 | ## PASS: clean
|
---|
| 1216 | # This pass removes all generated files.
|
---|
| 1217 | PASS_CLEAN := Clean
|
---|
| 1218 | PASS_CLEAN_trgs := do-clean
|
---|
| 1219 | PASS_CLEAN_vars :=
|
---|
| 1220 | PASS_CLEAN_pass := clean
|
---|
| 1221 |
|
---|
| 1222 | ## PASS: nothing
|
---|
| 1223 | # This pass just walks the tree.
|
---|
| 1224 | PASS_NOTHING := Nothing
|
---|
| 1225 | PASS_NOTHING_trgs := do-nothing
|
---|
| 1226 | PASS_NOTHING_vars :=
|
---|
| 1227 | PASS_NOTHING_pass := nothing
|
---|
| 1228 |
|
---|
| 1229 | ## DEFAULT_PASSES
|
---|
| 1230 | # The default passes and their order.
|
---|
[2475] | 1231 | DEFAULT_PASSES := BLDPROGS LIBRARIES DLLS BINARIES OTHERS STAGING
|
---|
[353] | 1232 |
|
---|
| 1233 | ## PASSES
|
---|
| 1234 | # The passes that should be defined. This must include
|
---|
| 1235 | # all passes mentioned by DEFAULT_PASSES.
|
---|
[2475] | 1236 | PASSES := FETCHES PATCHES $(DEFAULT_PASSES) INSTALLS TESTING PACKING CLEAN NOTHING
|
---|
[353] | 1237 |
|
---|
| 1238 |
|
---|
| 1239 | #
|
---|
[984] | 1240 | # Check for --pretty-command-printing before including the Config.kmk
|
---|
| 1241 | # so that anyone overriding the message macros can take the implied
|
---|
| 1242 | # verbosity level change into account.
|
---|
| 1243 | #
|
---|
| 1244 | ifndef KBUILD_VERBOSE
|
---|
| 1245 | ifndef KBUILD_QUIET
|
---|
[1562] | 1246 | ifeq ($(KMK_OPTS_PRETTY_COMMAND_PRINTING),1)
|
---|
[984] | 1247 | export KBUILD_VERBOSE := 2
|
---|
| 1248 | endif
|
---|
| 1249 | endif
|
---|
| 1250 | endif
|
---|
| 1251 |
|
---|
| 1252 |
|
---|
| 1253 | #
|
---|
[1418] | 1254 | # Legacy variable translation.
|
---|
| 1255 | # These will be eliminated when switching to the next version.
|
---|
| 1256 | #
|
---|
| 1257 | ifdef USE_KOBJCACHE
|
---|
| 1258 | ifndef KBUILD_USE_KOBJCACHE
|
---|
| 1259 | export KBUILD_USE_KOBJCACHE := $(USE_KOBJCACHE)
|
---|
| 1260 | endif
|
---|
| 1261 | endif
|
---|
| 1262 |
|
---|
| 1263 |
|
---|
| 1264 | #
|
---|
[2559] | 1265 | # Library path searching hints (target OS + arch).
|
---|
| 1266 | #
|
---|
| 1267 | # KBUILD_LIB_SEARCH_SUBS - Subdirs typically containing the right libraries.
|
---|
| 1268 | # KBUILD_LIB_SEARCH_ROOTS - Roots to search for library subdirs.
|
---|
| 1269 | # KBUILD_LIB_SEARCH_PATHS - ROOTS + SUBS.
|
---|
| 1270 | #
|
---|
| 1271 | ifeq ($(KBUILD_TARGET),darwin)
|
---|
| 1272 | KBUILD_LIB_SEARCH_ROOTS := \
|
---|
| 1273 | /usr/ \
|
---|
| 1274 | /Developer/usr/
|
---|
| 1275 | KBUILD_LIB_SEARCH_SUBS := lib/
|
---|
| 1276 |
|
---|
| 1277 | else if1of ($(KBUILD_TARGET), freebsd netbsd openbsd dragonfly)
|
---|
| 1278 | KBUILD_LIB_SEARCH_ROOTS := \
|
---|
| 1279 | / \
|
---|
| 1280 | /usr/ \
|
---|
| 1281 | /usr/local/
|
---|
| 1282 | KBUILD_LIB_SEARCH_SUBS := lib/
|
---|
| 1283 |
|
---|
| 1284 | else ifeq ($(KBUILD_TARGET),linux)
|
---|
[2689] | 1285 | ifeq ($(realpath /bin),/usr/bin)
|
---|
[2688] | 1286 | KBUILD_LIB_SEARCH_ROOTS := \
|
---|
| 1287 | /usr/ \
|
---|
| 1288 | / \
|
---|
| 1289 | /usr/local/
|
---|
| 1290 | else
|
---|
| 1291 | KBUILD_LIB_SEARCH_ROOTS := \
|
---|
| 1292 | / \
|
---|
| 1293 | /usr/ \
|
---|
| 1294 | /usr/local/
|
---|
| 1295 | endif
|
---|
[2559] | 1296 | ifeq ($(KBUILD_TARGET_ARCH),amd64)
|
---|
| 1297 | KBUILD_LIB_SEARCH_SUBS := \
|
---|
| 1298 | lib/x86_64-linux-gnu/ \
|
---|
| 1299 | lib64/ \
|
---|
| 1300 | lib/
|
---|
| 1301 | else ifeq ($(KBUILD_TARGET_ARCH),x86)
|
---|
| 1302 | KBUILD_LIB_SEARCH_SUBS := \
|
---|
| 1303 | lib/i686-linux-gnu/ \
|
---|
| 1304 | lib/i386-linux-gnu/ \
|
---|
| 1305 | lib32/ \
|
---|
| 1306 | lib/
|
---|
| 1307 | else
|
---|
| 1308 | KBUILD_LIB_SEARCH_SUBS := lib/
|
---|
| 1309 | endif
|
---|
| 1310 |
|
---|
| 1311 | else ifeq ($(KBUILD_TARGET),solaris)
|
---|
| 1312 | KBUILD_LIB_SEARCH_ROOTS := \
|
---|
| 1313 | / \
|
---|
| 1314 | /usr/ \
|
---|
| 1315 | /usr/sfw/ \
|
---|
| 1316 | /usr/local/ \
|
---|
| 1317 | /sw/
|
---|
| 1318 | ifeq ($(KBUILD_TARGET_ARCH),amd64)
|
---|
| 1319 | KBUILD_LIB_SEARCH_SUBS := lib/amd64/ lib/
|
---|
| 1320 | else ifeq ($(KBUILD_TARGET_ARCH),sparc64)
|
---|
| 1321 | KBUILD_LIB_SEARCH_SUBS := lib/sparcv9/ lib/
|
---|
| 1322 | else
|
---|
| 1323 | KBUILD_LIB_SEARCH_SUBS := lib/
|
---|
| 1324 | endif
|
---|
| 1325 |
|
---|
| 1326 | else
|
---|
| 1327 | KBUILD_LIB_SEARCH_SUBS :=
|
---|
| 1328 | KBUILD_LIB_SEARCH_ROOTS :=
|
---|
| 1329 | endif
|
---|
[2562] | 1330 | KBUILD_LIB_SEARCH_PATHS := $(foreach root, $(KBUILD_LIB_SEARCH_ROOTS), $(addprefix $(root),$(KBUILD_LIB_SEARCH_SUBS)))
|
---|
[2559] | 1331 |
|
---|
| 1332 |
|
---|
| 1333 | #
|
---|
[69] | 1334 | # This is how we find the closest config.kmk.
|
---|
| 1335 | # It's a little hacky but I think it works fine.
|
---|
[70] | 1336 | #
|
---|
| 1337 | _CFGDIR := .
|
---|
[78] | 1338 | _CFGFILES := ./Config.kmk ./config.kmk
|
---|
[69] | 1339 | define def_include_config
|
---|
[78] | 1340 | $(eval _CFGDIR := $(_CFGDIR)/$(dir))
|
---|
| 1341 | _CFGFILES += $(_CFGDIR)/Config.kmk $(_CFGDIR)/config.kmk
|
---|
[69] | 1342 | endef
|
---|
| 1343 | # walk down the _RELATIVE_ path specified by DEPTH.
|
---|
[78] | 1344 | $(foreach dir,$(subst /, ,$(DEPTH)), $(eval $(def_include_config)) )
|
---|
[69] | 1345 | # add the default config file.
|
---|
[78] | 1346 | _CFGFILE := $(firstword $(wildcard $(_CFGFILES) $(FILE_KBUILD_CONFIG)))
|
---|
[69] | 1347 | _CFGFILES :=
|
---|
| 1348 | _CFGDIR :=
|
---|
[416] | 1349 | ifeq ($(_CFGFILE),)
|
---|
| 1350 | $(error kBuild: no Config.kmk file found! Check the DEPTH: DEPTH='$(DEPTH)' PATH_CURRENT='$(PATH_CURRENT)')
|
---|
| 1351 | endif
|
---|
[69] | 1352 |
|
---|
| 1353 | # Include the config.kmk we found file (or the default one).
|
---|
[988] | 1354 | ifdef KBUILD_PROFILE_SELF
|
---|
[2008] | 1355 | $(evalcall def_profile_self, including $(_CFGFILE))
|
---|
[988] | 1356 | include $(_CFGFILE)
|
---|
[2008] | 1357 | $(evalcall def_profile_self, included $(_CFGFILE))
|
---|
[988] | 1358 | else
|
---|
| 1359 | include $(_CFGFILE)
|
---|
| 1360 | endif
|
---|
| 1361 |
|
---|
| 1362 |
|
---|
| 1363 |
|
---|
[696] | 1364 | #
|
---|
[874] | 1365 | # Finalize a the central path variables now that we've included the Config.kmk file.
|
---|
| 1366 | #
|
---|
| 1367 | # This prevents some trouble when users override the defaults for these
|
---|
| 1368 | # variables and uses relative paths or paths with incorrect case.
|
---|
| 1369 | #
|
---|
[1692] | 1370 | PATH_OUT_BASE := $(abspath $(PATH_OUT_BASE))
|
---|
[2475] | 1371 | PATH_OUT := $(abspath $(PATH_OUT))
|
---|
| 1372 | PATH_OBJ := $(abspath $(PATH_OBJ))
|
---|
| 1373 | PATH_TARGET := $(abspath $(PATH_TARGET))
|
---|
| 1374 | PATH_INS := $(abspath $(PATH_INS))
|
---|
| 1375 | PATH_STAGE := $(abspath $(PATH_STAGE))
|
---|
[874] | 1376 |
|
---|
[2475] | 1377 | # Finalize the install and staging directory layouts.
|
---|
| 1378 | define def_kbuild_finalize_inst
|
---|
| 1379 | local val := $(strip $($(y)_$(x)))
|
---|
| 1380 | ifeq ($(val),)
|
---|
| 1381 | $(error kBuild: '$(y)_$(x)' is set to an empty value.)
|
---|
| 1382 | endif
|
---|
| 1383 | ifneq ($(words $(val)),1)
|
---|
| 1384 | $(error kBuild: The '$(y)_$(x)' value '$(val)' should not contain spaces.)
|
---|
| 1385 | endif
|
---|
| 1386 | ifneq ($(pos \,$(val)), 0)
|
---|
| 1387 | $(error kBuild: The '$(y)_$(x)' value '$(val)' contains DOS slashes: not allowed.)
|
---|
| 1388 | endif
|
---|
| 1389 | ifneq ($(pos $(COLON),$(val)), 0)
|
---|
| 1390 | $(error kBuild: The '$(y)_$(x)' value '$(val)' contains colon: not allowed.)
|
---|
| 1391 | endif
|
---|
| 1392 | ifneq ($(substr $(val),-1), /)
|
---|
| 1393 | $(error kBuild: The '$(y)_$(x)' value '$(val)' has no trailing slash.)
|
---|
| 1394 | endif
|
---|
| 1395 | if $(pos /../,$(val)) != 0 || "$(substr $(val), 3)" == "../"
|
---|
| 1396 | $(error kBuild: The '$(y)_$(x)' value '$(val)' contains dot-dot escape.)
|
---|
| 1397 | endif
|
---|
| 1398 | $($(y)_$(x) := $(val)
|
---|
[2479] | 1399 |
|
---|
| 1400 | local val := $(strip $(PATH_$(y)_$(x)))
|
---|
| 1401 | ifeq ($(val),)
|
---|
| 1402 | $(error kBuild: 'PATH_$(y)_$(x)' is set to an empty value.)
|
---|
| 1403 | endif
|
---|
| 1404 | PATH_$(y)_$(x) := $(val)
|
---|
[2475] | 1405 | endef
|
---|
[2479] | 1406 | $(foreach y, INST STAGE, $(foreach x, $(KBUILD_INST_PATHS), $(evalcall def_kbuild_finalize_inst)))
|
---|
[874] | 1407 |
|
---|
[2724] | 1408 | # No abspath for devtools since they might've been referenced already and we
|
---|
| 1409 | # don't want conflicting variable expansions.
|
---|
| 1410 | KBUILD_DEVTOOLS := $(KBUILD_DEVTOOLS)
|
---|
| 1411 | KBUILD_DEVTOOLS_TRG := $(KBUILD_DEVTOOLS_TRG)
|
---|
| 1412 | KBUILD_DEVTOOLS_TRG_ALT := $(KBUILD_DEVTOOLS_TRG_ALT)
|
---|
| 1413 | KBUILD_DEVTOOLS_HST := $(KBUILD_DEVTOOLS_HST)
|
---|
| 1414 | KBUILD_DEVTOOLS_HST_ALT := $(KBUILD_DEVTOOLS_HST_ALT)
|
---|
[2475] | 1415 |
|
---|
[2724] | 1416 |
|
---|
[874] | 1417 | #
|
---|
[788] | 1418 | # Setup the message style. The default one is inlined.
|
---|
[776] | 1419 | #
|
---|
[788] | 1420 | # See kBuild/msgstyles for more styles or use KBUILD_MSG_STYLE_PATHS
|
---|
| 1421 | # to create your own message style.
|
---|
| 1422 | #
|
---|
[776] | 1423 | KBUILD_MSG_STYLE ?= default
|
---|
| 1424 | ifeq ($(KBUILD_MSG_STYLE),default)
|
---|
| 1425 | #
|
---|
| 1426 | # The 'default' style.
|
---|
| 1427 | #
|
---|
| 1428 |
|
---|
| 1429 | ## Fetch starting.
|
---|
| 1430 | # @param 1 Target name.
|
---|
| 1431 | MSG_FETCH ?= $(call MSG_L1,Fetching $1...)
|
---|
| 1432 | ## Re-fetch starting.
|
---|
| 1433 | # @param 1 Target name.
|
---|
| 1434 | MSG_REFETCH ?= $(call MSG_L1,Re-fetching $1...)
|
---|
| 1435 | ## Downloading a fetch component.
|
---|
| 1436 | # @param 1 Target name.
|
---|
| 1437 | # @param 2 The source URL.
|
---|
| 1438 | # @param 3 The destination file name.
|
---|
| 1439 | MSG_FETCH_DL ?= $(call MSG_L1,Downloading $1 - $2,=> $3)
|
---|
| 1440 | ## Checking a fetch component.
|
---|
| 1441 | # @param 1 Target name.
|
---|
| 1442 | # @param 2 The source URL.
|
---|
| 1443 | # @param 3 The destination file name.
|
---|
| 1444 | MSG_FETCH_CHK?= $(call MSG_L1,Checking $1 - $3, ($2))
|
---|
| 1445 | ## Unpacking a fetch component.
|
---|
| 1446 | # @param 1 Target name.
|
---|
| 1447 | # @param 2 The archive file name.
|
---|
| 1448 | # @param 3 The target directory.
|
---|
| 1449 | MSG_FETCH_UP ?= $(call MSG_L1,Unpacking $1 - $2 => $3)
|
---|
| 1450 | ## Fetch completed.
|
---|
| 1451 | # @param 1 Target name.
|
---|
| 1452 | MSG_FETCH_OK ?= $(call MSG_L1,Successfully fetched $1)
|
---|
| 1453 | ## Unfetch a fetch target.
|
---|
| 1454 | # @param 1 Target name.
|
---|
| 1455 | MSG_UNFETCH ?= $(call MSG_L1,Unfetching $1...)
|
---|
| 1456 | ## Compiling a source file.
|
---|
| 1457 | # @param 1 Target name.
|
---|
| 1458 | # @param 2 The source filename.
|
---|
| 1459 | # @param 3 The primary link output file name.
|
---|
[1256] | 1460 | # @param 4 The source type (C,CXX,OBJC,AS,RC,++).
|
---|
[776] | 1461 | MSG_COMPILE ?= $(call MSG_L1,Compiling $1 - $2,=> $3)
|
---|
[890] | 1462 | ## Tool
|
---|
| 1463 | # @param 1 The tool name (bin2c,...)
|
---|
| 1464 | # @param 2 Target name.
|
---|
| 1465 | # @param 3 The source filename.
|
---|
| 1466 | # @param 4 The primary output file name.
|
---|
| 1467 | MSG_TOOL ?= $(call MSG_L1,$1 $2 - $3,=> $4)
|
---|
| 1468 | ## Generate a file, typically a source file.
|
---|
| 1469 | # @param 1 Target name if applicable.
|
---|
| 1470 | # @param 2 Output file name.
|
---|
| 1471 | # @param 3 What it's generated from
|
---|
| 1472 | MSG_GENERATE ?= $(call MSG_L1,Generating $(if $1,$1 - )$2,$(if $3,from $3))
|
---|
[776] | 1473 | ## Linking a bldprog/dll/program/sysmod target.
|
---|
| 1474 | # @param 1 Target name.
|
---|
| 1475 | # @param 2 The primary link output file name.
|
---|
| 1476 | # @param 3 The link tool operation (LINK_LIBRARY,LINK_PROGRAM,LINK_DLL,LINK_SYSMOD,++).
|
---|
| 1477 | MSG_LINK ?= $(call MSG_L1,Linking $1,=> $2)
|
---|
[844] | 1478 | ## Merging a library into the target (during library linking).
|
---|
| 1479 | # @param 1 Target name.
|
---|
| 1480 | # @param 2 The output library name.
|
---|
| 1481 | # @param 3 The input library name.
|
---|
[845] | 1482 | MSG_AR_MERGE ?= $(call MSG_L1,Merging $3 into $1, ($2))
|
---|
[776] | 1483 | ## Creating a directory (build).
|
---|
| 1484 | # @param 1 Directory name.
|
---|
| 1485 | MSG_MKDIR ?= $(call MSG_L2,Creating directory $1)
|
---|
| 1486 | ## Cleaning.
|
---|
| 1487 | MSG_CLEAN ?= $(call MSG_L1,Cleaning...)
|
---|
| 1488 | ## Nothing.
|
---|
| 1489 | MSG_NOTHING ?= $(call MSG_L1,Did nothing in $(CURDIR))
|
---|
| 1490 | ## Pass
|
---|
| 1491 | # @param 1 The pass name.
|
---|
| 1492 | MSG_PASS ?= $(call MSG_L1,Pass - $1)
|
---|
| 1493 | ## Installing a bldprog/lib/dll/program/sysmod target.
|
---|
| 1494 | # @param 1 Target name.
|
---|
| 1495 | # @param 2 The source filename.
|
---|
| 1496 | # @param 3 The destination file name.
|
---|
| 1497 | MSG_INST_TRG ?= $(call MSG_L1,Installing $1 => $3)
|
---|
| 1498 | ## Installing a file (install target).
|
---|
| 1499 | # @param 1 The source filename.
|
---|
| 1500 | # @param 2 The destination filename.
|
---|
| 1501 | MSG_INST_FILE?= $(call MSG_L1,Installing $2,(<= $1))
|
---|
| 1502 | ## Installing a symlink.
|
---|
| 1503 | # @param 1 Symlink
|
---|
| 1504 | # @param 2 Link target
|
---|
| 1505 | MSG_INST_SYM ?= $(call MSG_L1,Installing symlink $1,=> $2)
|
---|
| 1506 | ## Installing a directory.
|
---|
| 1507 | # @param 1 Directory name.
|
---|
| 1508 | MSG_INST_DIR ?= $(call MSG_L1,Installing directory $1)
|
---|
| 1509 |
|
---|
[788] | 1510 | else
|
---|
[1504] | 1511 | _KBUILD_MSG_STYLE_FILE := $(firstword $(foreach path, $(KBUILD_MSG_STYLE_PATHS) $(KBUILD_PATH)/msgstyles, $(wildcard $(path)/$(KBUILD_MSG_STYLE).kmk)))
|
---|
[788] | 1512 | ifneq ($(_KBUILD_MSG_STYLE_FILE),)
|
---|
| 1513 | include $(_KBUILD_MSG_STYLE_FILE)
|
---|
[776] | 1514 | else
|
---|
[788] | 1515 | $(error kBuild: Can't find the style setup file for KBUILD_MSG_STYLE '$(KBUILD_MSG_STYLE)')
|
---|
[776] | 1516 | endif
|
---|
| 1517 | endif
|
---|
| 1518 |
|
---|
| 1519 |
|
---|
| 1520 | #
|
---|
[696] | 1521 | # Message macros.
|
---|
| 1522 | #
|
---|
[748] | 1523 | # This is done after including Config.kmk as to allow for
|
---|
[696] | 1524 | # KBUILD_QUIET and KBUILD_VERBOSE to be configurable.
|
---|
| 1525 | #
|
---|
| 1526 | ifdef KBUILD_QUIET
|
---|
[776] | 1527 | # No output
|
---|
[696] | 1528 | QUIET := @
|
---|
| 1529 | QUIET2:= @
|
---|
| 1530 | MSG_L1 =
|
---|
| 1531 | MSG_L2 =
|
---|
| 1532 | else
|
---|
| 1533 | ifndef KBUILD_VERBOSE
|
---|
[776] | 1534 | # Default output level.
|
---|
| 1535 | QUIET := @
|
---|
| 1536 | QUIET2 := @
|
---|
[1496] | 1537 | MSG_L1 ?= %@$(ECHO) "kBuild: $1"
|
---|
[776] | 1538 | MSG_L2 =
|
---|
| 1539 | else ifeq ($(KBUILD_VERBOSE),1)
|
---|
| 1540 | # A bit more output
|
---|
| 1541 | QUIET := @
|
---|
| 1542 | QUIET2 := @
|
---|
[1496] | 1543 | MSG_L1 ?= %@$(ECHO) "kBuild: $1 $2"
|
---|
[776] | 1544 | MSG_L2 =
|
---|
| 1545 | else ifeq ($(KBUILD_VERBOSE),2)
|
---|
| 1546 | # Lot more output
|
---|
| 1547 | QUIET :=
|
---|
| 1548 | QUIET2 := @
|
---|
[1496] | 1549 | MSG_L1 ?= %@$(ECHO) "kBuild: $1 $2"
|
---|
| 1550 | MSG_L2 ?= %@$(ECHO) "kBuild: $1"
|
---|
[696] | 1551 | else
|
---|
| 1552 | # maximal output.
|
---|
[776] | 1553 | QUIET :=
|
---|
| 1554 | QUIET2 :=
|
---|
[1496] | 1555 | MSG_L1 ?= %@$(ECHO) "kBuild: $1 $2"
|
---|
| 1556 | MSG_L2 ?= %@$(ECHO) "kBuild: $1"
|
---|
[696] | 1557 | endif
|
---|
| 1558 | endif
|
---|
| 1559 |
|
---|
[776] | 1560 |
|
---|
[1403] | 1561 | #
|
---|
[1504] | 1562 | # Validate any KBUILD_BLD_TYPES additions and finally the KBUILD_TYPE.
|
---|
[1403] | 1563 | #
|
---|
| 1564 | if1of ($(KBUILD_BLD_TYPES), $(KBUILD_OSES))
|
---|
| 1565 | $(error kBuild: found KBUILD_BLD_TYPES in KBUILD_OSES!)
|
---|
| 1566 | endif
|
---|
| 1567 | if1of ($(KBUILD_BLD_TYPES), $(KBUILD_ARCHES))
|
---|
| 1568 | $(error kBuild: found KBUILD_BLD_TYPES in KBUILD_ARCHES!)
|
---|
| 1569 | endif
|
---|
| 1570 | if1of ($(KBUILD_OSES), $(KBUILD_ARCHES))
|
---|
| 1571 | $(error kBuild: found KBUILD_OSES in KBUILD_ARCHES!)
|
---|
| 1572 | endif
|
---|
[1504] | 1573 | ifn1of ($(KBUILD_TYPE), $(KBUILD_BLD_TYPES))
|
---|
| 1574 | $(error kBuild: KBUILD_TYPE(=$(KBUILD_TYPE)) is not found in KBUILD_BLD_TYPES(=$(KBUILD_BLD_TYPES))!)
|
---|
[1403] | 1575 | endif
|
---|
| 1576 |
|
---|
| 1577 |
|
---|
| 1578 |
|
---|
[988] | 1579 | ifdef KBUILD_PROFILE_SELF
|
---|
[2008] | 1580 | $(evalcall def_profile_self, end of header.kmk)
|
---|
| 1581 | _KBUILD_TS_HEADER_END := $(_KBUILD_TS_PREV)
|
---|
[988] | 1582 | endif
|
---|
| 1583 |
|
---|
[69] | 1584 | # end-of-file-content
|
---|
[72] | 1585 | __header_kmk__ := 1
|
---|
[2688] | 1586 | endif # !__header_kmk__
|
---|
[479] | 1587 |
|
---|