diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:23 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:23 -0400 |
commit | bec2c48c2045ca467d07bba54783318b8672bda7 (patch) | |
tree | 69eb8e5051feb08235fd1a0cd7bba202e967e2e0 /arch | |
parent | 428c5a2339f6d59e3b2d59e9b878b95e6f7a09d7 (diff) |
x86: Add BITS to allow simple Makefile sharing
Preperatory patch to simplify the sharing of Makefiles in
arch/x86.
Linus came up with this during a discussion about the ugliness of
ifeq($CONFIG_X86_32),y) and obj-$(CONFIG_X86_32) in the shared
Makefiles.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/Makefile | 6 | ||||
-rw-r--r-- | arch/x86_64/Makefile | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/arch/i386/Makefile b/arch/i386/Makefile index b81cb64d48e5..f5b9a37def8b 100644 --- a/arch/i386/Makefile +++ b/arch/i386/Makefile | |||
@@ -20,6 +20,12 @@ | |||
20 | # Fill in SRCARCH | 20 | # Fill in SRCARCH |
21 | SRCARCH := x86 | 21 | SRCARCH := x86 |
22 | 22 | ||
23 | # BITS is used as extension for files which are available in a 32 bit | ||
24 | # and a 64 bit version to simplify shared Makefiles. | ||
25 | # e.g.: obj-y += foo_$(BITS).o | ||
26 | BITS := 32 | ||
27 | export BITS | ||
28 | |||
23 | HAS_BIARCH := $(call cc-option-yn, -m32) | 29 | HAS_BIARCH := $(call cc-option-yn, -m32) |
24 | ifeq ($(HAS_BIARCH),y) | 30 | ifeq ($(HAS_BIARCH),y) |
25 | AS := $(AS) --32 | 31 | AS := $(AS) --32 |
diff --git a/arch/x86_64/Makefile b/arch/x86_64/Makefile index 6d89ab762ffc..20eb69bd5a6d 100644 --- a/arch/x86_64/Makefile +++ b/arch/x86_64/Makefile | |||
@@ -24,6 +24,12 @@ | |||
24 | # Fill in SRCARCH | 24 | # Fill in SRCARCH |
25 | SRCARCH := x86 | 25 | SRCARCH := x86 |
26 | 26 | ||
27 | # BITS is used as extension for files which are available in a 32 bit | ||
28 | # and a 64 bit version to simplify shared Makefiles. | ||
29 | # e.g.: obj-y += foo_$(BITS).o | ||
30 | BITS := 64 | ||
31 | export BITS | ||
32 | |||
27 | LDFLAGS := -m elf_x86_64 | 33 | LDFLAGS := -m elf_x86_64 |
28 | OBJCOPYFLAGS := -O binary -R .note -R .comment -S | 34 | OBJCOPYFLAGS := -O binary -R .note -R .comment -S |
29 | LDFLAGS_vmlinux := | 35 | LDFLAGS_vmlinux := |