diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2009-02-24 21:14:32 +1100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-03-20 22:39:13 +0100 |
commit | 6d7f610b09f813b1239eedcbfe921cfd439aea25 (patch) | |
tree | 376a291467583f0e892d6c2a011288a7b9556e6b /cpu/i386/sc520/Makefile | |
parent | abf0cd3dff227cfb6e82ad13be62e28e6e89d5df (diff) | |
download | u-boot-imx-6d7f610b09f813b1239eedcbfe921cfd439aea25.zip u-boot-imx-6d7f610b09f813b1239eedcbfe921cfd439aea25.tar.gz u-boot-imx-6d7f610b09f813b1239eedcbfe921cfd439aea25.tar.bz2 |
Factor out SC520 sub-features
Moved sub-features of the SC520 code which is currently selectively compiled
using #ifdef out of sc520.c into individual files selectively compiled via
the makefile
Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
Diffstat (limited to 'cpu/i386/sc520/Makefile')
-rw-r--r-- | cpu/i386/sc520/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/i386/sc520/Makefile b/cpu/i386/sc520/Makefile index ddfec23..87835b2 100644 --- a/cpu/i386/sc520/Makefile +++ b/cpu/i386/sc520/Makefile @@ -32,6 +32,10 @@ include $(TOPDIR)/config.mk LIB := $(obj)lib$(SOC).a COBJS-$(CONFIG_SYS_SC520) += sc520.o +COBJS-$(CONFIG_SYS_SC520_SSI) += sc520_ssi.o +COBJS-$(CONFIG_SYS_SC520_TIMER) += sc520_timer.o +COBJS-$(CONFIG_PCI) += sc520_pci.o + SOBJS-$(CONFIG_SYS_SC520) += sc520_asm.o SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |