diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-02-04 19:26:57 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-02-04 19:26:57 -0500 |
commit | cc2977acc3bbbb7850f16645dd1081f95335868d (patch) | |
tree | 5ef6e1b4523172e3b21b479f569887a0162889ad /cpu/bf533 | |
parent | d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505 (diff) | |
download | u-boot-imx-cc2977acc3bbbb7850f16645dd1081f95335868d.zip u-boot-imx-cc2977acc3bbbb7850f16645dd1081f95335868d.tar.gz u-boot-imx-cc2977acc3bbbb7850f16645dd1081f95335868d.tar.bz2 |
move Blackfin cpu object list to respective cpu directories
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'cpu/bf533')
-rw-r--r-- | cpu/bf533/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/bf533/Makefile b/cpu/bf533/Makefile index dd4f299..ad48f1c 100644 --- a/cpu/bf533/Makefile +++ b/cpu/bf533/Makefile @@ -28,12 +28,12 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a -START = start.o start1.o interrupt.o cache.o flush.o init_sdram.o +SOBJS = start.o start1.o interrupt.o cache.o flush.o init_sdram.o COBJS = cpu.o traps.o ints.o serial.o interrupts.o video.o EXTRA = init_sdram_bootrom_initblock.o -SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS)) START := $(addprefix $(obj),$(START)) |