summaryrefslogtreecommitdiff
path: root/cpu/at91rm9200/Makefile
diff options
context:
space:
mode:
authorwdenk <wdenk>2005-03-31 23:44:33 +0000
committerwdenk <wdenk>2005-03-31 23:44:33 +0000
commitef2807c667a91135fbb91b805b852ccfbff03587 (patch)
treea271ce0de68dfef93e4106bb8d5f9363f6d9ae33 /cpu/at91rm9200/Makefile
parent83e40ba75d7f8d0c2e2ecdd203db96ccd79a0340 (diff)
downloadu-boot-imx-ef2807c667a91135fbb91b805b852ccfbff03587.zip
u-boot-imx-ef2807c667a91135fbb91b805b852ccfbff03587.tar.gz
u-boot-imx-ef2807c667a91135fbb91b805b852ccfbff03587.tar.bz2
Patch by Steven Scholz, 13 Dec 2004:
Remove duplicated code by merging memsetup.S files for at91rm9200 boards into one cpu/at91rm9200/lowlevel.S
Diffstat (limited to 'cpu/at91rm9200/Makefile')
-rw-r--r--cpu/at91rm9200/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpu/at91rm9200/Makefile b/cpu/at91rm9200/Makefile
index b7a30c9..18c995b 100644
--- a/cpu/at91rm9200/Makefile
+++ b/cpu/at91rm9200/Makefile
@@ -28,11 +28,12 @@ LIB = lib$(CPU).a
START = start.o
OBJS = serial.o interrupts.o cpu.o \
at91rm9200_ether.o i2c.o
+SOBJS = lowlevel.o
all: .depend $(START) $(LIB)
-$(LIB): $(OBJS)
- $(AR) crv $@ $(OBJS)
+$(LIB): $(OBJS) $(SOBJS)
+ $(AR) crv $@ $(OBJS) $(SOBJS)
#########################################################################