aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.(none)>2005-07-25 16:26:04 -0400
committerSam Ravnborg <sam@mars.(none)>2005-07-25 16:26:04 -0400
commit2a691470345a0024dd7ffaf47ad3d0f5f4f41924 (patch)
tree593421beaa683526ed187fd540c156c9a1536f74
parent8ec4b4ff1c89bb280e662b84eba503ca44abe836 (diff)
kbuild: fix make O=...
kbuild failed to locate Kbuild.include. Teach kbuild how to find Kbuild files when using make O=... Signed-off-by: Sam Ravnborg <sam@ravnborg.org> ---
-rw-r--r--Makefile2
-rw-r--r--scripts/Makefile.build4
-rw-r--r--scripts/Makefile.clean4
3 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7c607dc64479..ed1f4b5b714f 100644
--- a/Makefile
+++ b/Makefile
@@ -310,7 +310,7 @@ cc-version = $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-version.sh \
310MAKEFLAGS += --include-dir=$(srctree) 310MAKEFLAGS += --include-dir=$(srctree)
311 311
312# We need some generic definitions 312# We need some generic definitions
313include scripts/Kbuild.include 313include $(srctree)/scripts/Kbuild.include
314 314
315# For maximum performance (+ possibly random breakage, uncomment 315# For maximum performance (+ possibly random breakage, uncomment
316# the following) 316# the following)
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index ebed6a41bc69..8f4f5a347767 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -10,7 +10,9 @@ __build:
10# Read .config if it exist, otherwise ignore 10# Read .config if it exist, otherwise ignore
11-include .config 11-include .config
12 12
13include $(if $(wildcard $(obj)/Kbuild), $(obj)/Kbuild, $(obj)/Makefile) 13# The filename Kbuild has precedence over Makefile
14include $(if $(wildcard $(srctree)/$(src)/Kbuild), \
15 $(srctree)/$(src)/Kbuild, $(srctree)/$(src)/Makefile)
14 16
15include scripts/Kbuild.include 17include scripts/Kbuild.include
16include scripts/Makefile.lib 18include scripts/Makefile.lib
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean
index ff3e87dbf387..9c978b7bbdf1 100644
--- a/scripts/Makefile.clean
+++ b/scripts/Makefile.clean
@@ -7,7 +7,9 @@ src := $(obj)
7.PHONY: __clean 7.PHONY: __clean
8__clean: 8__clean:
9 9
10include $(if $(wildcard $(obj)/Kbuild), $(obj)/Kbuild, $(obj)/Makefile) 10# The filename Kbuild has precedence over Makefile
11include $(if $(wildcard $(srctree)/$(src)/Kbuild), \
12 $(srctree)/$(src)/Kbuild, $(srctree)/$(src)/Makefile)
11 13
12# Figure out what we need to build from the various variables 14# Figure out what we need to build from the various variables
13# ========================================================================== 15# ==========================================================================