source: trunk/kBuild/header.kmk@ 2729

Last change on this file since 2729 was 2729, checked in by bird, 11 years ago

KBUILD_DEVTOOLS fix.

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