diff options
author | stany MARCEL <stany.marcel@novasys-ingenierie.com> | 2011-10-14 04:38:02 +0000 |
---|---|---|
committer | jason <jason@jason-ThinkPad-T61.(none)> | 2011-10-19 00:13:17 +0800 |
commit | aa2bd9b015a2a4f1117f1c124064a06fbca039ab (patch) | |
tree | f92dd5a26de1c2bbb95935f08d6bc73fd705f2b1 /arch/m68k/cpu/mcf5227x/Makefile | |
parent | 25ceb277ded74e08d2df68473e88a89732d99f7b (diff) | |
download | u-boot-imx-aa2bd9b015a2a4f1117f1c124064a06fbca039ab.zip u-boot-imx-aa2bd9b015a2a4f1117f1c124064a06fbca039ab.tar.gz u-boot-imx-aa2bd9b015a2a4f1117f1c124064a06fbca039ab.tar.bz2 |
ColdFire: Add $(obj) before cpu lib to correct build
Missing $(obj) prevented the build of ColdFire boards in a directory
than sources
Signed-off-by: Stany MARCEL <stany.marcel@novasys-ingenierie.com>
Diffstat (limited to 'arch/m68k/cpu/mcf5227x/Makefile')
-rw-r--r-- | arch/m68k/cpu/mcf5227x/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/cpu/mcf5227x/Makefile b/arch/m68k/cpu/mcf5227x/Makefile index eb36264..0490f0e 100644 --- a/arch/m68k/cpu/mcf5227x/Makefile +++ b/arch/m68k/cpu/mcf5227x/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk # CFLAGS += -DET_DEBUG -LIB = lib$(CPU).o +LIB = $(obj)lib$(CPU).o START = start.o COBJS = cpu.o speed.o cpu_init.o interrupts.o |