diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-12-03 02:17:12 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-04 12:17:16 -0500 |
commit | 5e53879008b9acefe9f43498fd36db7376e08739 (patch) | |
tree | 1e3137cabb339a834794a753f1782b312392bd32 /Makefile | |
parent | 14ae84c9933f22ccad34fa6375b8908389b304f0 (diff) |
sparc,sparc64: unify Makefile
To unify Makefile for sparc and sparc64 a few other steps was needed:
1) separate defconfig files for sparc and sparc64 is required,
so locate these in arch/sparc/configs
2) removoval of hack in toplevel Makefile to deal with that
headers was in a separate directory compared to the rest
The unification of the Makefile required usage of several
foo-$(CONFIG_SPARCnn) +=
due to a few directories pending unification.
This will be cleaned up when we unify the remaining directories.
Included in this patch are the deletion of a few files in
sparc64 as they are no longer needed: Makefile + Kconfig.
arch/sparc64/ will after this patch is applied only
have four directories (prom, lib, kernel, boot)
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -205,13 +205,14 @@ ifeq ($(ARCH),x86_64) | |||
205 | SRCARCH := x86 | 205 | SRCARCH := x86 |
206 | endif | 206 | endif |
207 | 207 | ||
208 | # Where to locate arch specific headers | 208 | # Additional ARCH settings for sparc |
209 | ifeq ($(ARCH),sparc64) | 209 | ifeq ($(ARCH),sparc64) |
210 | hdr-arch := sparc | 210 | SRCARCH := sparc |
211 | else | ||
212 | hdr-arch := $(SRCARCH) | ||
213 | endif | 211 | endif |
214 | 212 | ||
213 | # Where to locate arch specific headers | ||
214 | hdr-arch := $(SRCARCH) | ||
215 | |||
215 | KCONFIG_CONFIG ?= .config | 216 | KCONFIG_CONFIG ?= .config |
216 | 217 | ||
217 | # SHELL used by kbuild | 218 | # SHELL used by kbuild |