summaryrefslogtreecommitdiff
path: root/cpu/at91rm9200/Makefile
diff options
context:
space:
mode:
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 b7a30c93b2..18c995b6a7 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)
#########################################################################