diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2012-05-15 21:27:15 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-15 13:18:08 -0700 |
commit | e1d7de8377e6ab3dbd2359507b217ea6b0944302 (patch) | |
tree | fd25228abf452b9d3cbcb8aeb2d60e2f084a3960 /arch | |
parent | 3462285df99e14a7866d7e35cd3c948a324af014 (diff) | |
download | linux-3.10-e1d7de8377e6ab3dbd2359507b217ea6b0944302.tar.gz linux-3.10-e1d7de8377e6ab3dbd2359507b217ea6b0944302.tar.bz2 linux-3.10-e1d7de8377e6ab3dbd2359507b217ea6b0944302.zip |
sparc: introduce arch/sparc/Kbuild
This allows us to do:
make arch/sparc/
to build the core part of the sparc kernel.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/Kbuild | 7 | ||||
-rw-r--r-- | arch/sparc/Makefile | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/arch/sparc/Kbuild b/arch/sparc/Kbuild new file mode 100644 index 00000000000..27b540d2d55 --- /dev/null +++ b/arch/sparc/Kbuild @@ -0,0 +1,7 @@ +# +# core part of the sparc kernel +# + +obj-y += kernel/ +obj-y += mm/ +obj-y += math-emu/ diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile index a4928150c63..b9a72e2b8ac 100644 --- a/arch/sparc/Makefile +++ b/arch/sparc/Makefile @@ -52,8 +52,8 @@ endif head-y := arch/sparc/kernel/head_$(BITS).o head-y += arch/sparc/kernel/init_task.o -core-y += arch/sparc/kernel/ -core-y += arch/sparc/mm/ arch/sparc/math-emu/ +# See arch/sparc/Kbuild for the core part of the kernel +core-y += arch/sparc/ libs-y += arch/sparc/prom/ libs-y += arch/sparc/lib/ |