Skip to content
Snippets Groups Projects
Commit aa2bd9b0 authored by stany MARCEL's avatar stany MARCEL Committed by jason
Browse files

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: default avatarStany MARCEL <stany.marcel@novasys-ingenierie.com>
parent 25ceb277
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
......@@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk
# CFLAGS += -DET_DEBUG
LIB = lib$(CPU).o
LIB = $(obj)lib$(CPU).o
START =
COBJS = cpu.o speed.o cpu_init.o interrupts.o
......
......@@ -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 pci.o
......
......@@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk
# CFLAGS += -DET_DEBUG
LIB = lib$(CPU).o
LIB = $(obj)lib$(CPU).o
START =
COBJS = cpu.o speed.o cpu_init.o pci.o interrupts.o slicetimer.o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment