aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-10 20:42:53 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-10 20:42:53 -0500
commit506c10f26c481b7f8ef27c1c79290f68989b2e9e (patch)
tree03de82e812f00957aa6276dac2fe51c3358e88d7 /Makefile
parente1df957670aef74ffd9a4ad93e6d2c90bf6b4845 (diff)
parentc59765042f53a79a7a65585042ff463b69cb248c (diff)
Merge commit 'v2.6.29-rc1' into perfcounters/core
Conflicts: include/linux/kernel_stat.h
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 11 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 09ff7d81809a..c06e250eca18 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1VERSION = 2 1VERSION = 2
2PATCHLEVEL = 6 2PATCHLEVEL = 6
3SUBLEVEL = 28 3SUBLEVEL = 29
4EXTRAVERSION = 4EXTRAVERSION = -rc1
5NAME = Erotic Pickled Herring 5NAME = Erotic Pickled Herring
6 6
7# *DOCUMENTATION* 7# *DOCUMENTATION*
@@ -205,13 +205,14 @@ ifeq ($(ARCH),x86_64)
205 SRCARCH := x86 205 SRCARCH := x86
206endif 206endif
207 207
208# Where to locate arch specific headers 208# Additional ARCH settings for sparc
209ifeq ($(ARCH),sparc64) 209ifeq ($(ARCH),sparc64)
210 hdr-arch := sparc 210 SRCARCH := sparc
211else
212 hdr-arch := $(SRCARCH)
213endif 211endif
214 212
213# Where to locate arch specific headers
214hdr-arch := $(SRCARCH)
215
215KCONFIG_CONFIG ?= .config 216KCONFIG_CONFIG ?= .config
216 217
217# SHELL used by kbuild 218# SHELL used by kbuild
@@ -320,7 +321,8 @@ KALLSYMS = scripts/kallsyms
320PERL = perl 321PERL = perl
321CHECK = sparse 322CHECK = sparse
322 323
323CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise $(CF) 324CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
325 -Wbitwise -Wno-return-void $(CF)
324MODFLAGS = -DMODULE 326MODFLAGS = -DMODULE
325CFLAGS_MODULE = $(MODFLAGS) 327CFLAGS_MODULE = $(MODFLAGS)
326AFLAGS_MODULE = $(MODFLAGS) 328AFLAGS_MODULE = $(MODFLAGS)
@@ -963,6 +965,7 @@ ifneq ($(KBUILD_SRC),)
963 mkdir -p include2; \ 965 mkdir -p include2; \
964 ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \ 966 ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \
965 fi 967 fi
968 ln -fsn $(srctree) source
966endif 969endif
967 970
968# prepare2 creates a makefile if using a separate output directory 971# prepare2 creates a makefile if using a separate output directory
@@ -1006,7 +1009,7 @@ define check-symlink
1006endef 1009endef
1007 1010
1008# We create the target directory of the symlink if it does 1011# We create the target directory of the symlink if it does
1009# not exist so the test in chack-symlink works and we have a 1012# not exist so the test in check-symlink works and we have a
1010# directory for generated filesas used by some architectures. 1013# directory for generated filesas used by some architectures.
1011define create-symlink 1014define create-symlink
1012 if [ ! -L include/asm ]; then \ 1015 if [ ! -L include/asm ]; then \