diff options
Diffstat (limited to 'cpu/at91rm9200/Makefile')
-rw-r--r-- | cpu/at91rm9200/Makefile | 5 |
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) ######################################################################### |