source: trunk/kBuild/header.kmk@ 2895

Last change on this file since 2895 was 2895, checked in by bird, 9 years ago

Use kObjDep more.

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