diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2008-06-13 00:14:10 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-06-16 15:14:47 +0100 |
commit | 63a4881a7dd45038f46caa7c3c08b88b01cf9473 (patch) | |
tree | 6bc4308d640725cfd39ba8905cc9215c543aa958 /arch/mips/sibyte/swarm/Makefile | |
parent | 7bd0fea2c590d94995c2ee0b32e786c1c62621fa (diff) | |
download | kernel_samsung_crespo-63a4881a7dd45038f46caa7c3c08b88b01cf9473.zip kernel_samsung_crespo-63a4881a7dd45038f46caa7c3c08b88b01cf9473.tar.gz kernel_samsung_crespo-63a4881a7dd45038f46caa7c3c08b88b01cf9473.tar.bz2 |
[MIPS] Sibyte: Build RTC support as an object
Build the SWARM platform library is as an object rather than an archive
so that files which only contain symbols used by initcalls and do not
provide any symbols that would pull them from an archive still work.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte/swarm/Makefile')
-rw-r--r-- | arch/mips/sibyte/swarm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/sibyte/swarm/Makefile b/arch/mips/sibyte/swarm/Makefile index 2d62603..1775755 100644 --- a/arch/mips/sibyte/swarm/Makefile +++ b/arch/mips/sibyte/swarm/Makefile @@ -1,3 +1,3 @@ -lib-y = setup.o rtc_xicor1241.o rtc_m41t81.o +obj-y := setup.o rtc_xicor1241.o rtc_m41t81.o -lib-$(CONFIG_KGDB) += dbg_io.o +obj-$(CONFIG_KGDB) += dbg_io.o |