1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

remove cruft in Makefile.base

This commit is contained in:
Ludwig Ortmann 2013-05-30 17:52:54 +02:00
parent 5795bd6810
commit a900065fb0

View File

@ -10,8 +10,8 @@ DEP = $(SRC:%.c=$(BINDIR)%.d)
include $(RIOTCPU)/Makefile.base
include $(RIOTBOARD)/Makefile.base
$(BINDIR)$(MODULE).a: $(OBJ) $(ASMOBJ) $(ASSMOBJ)
$(AR) -rc $(BINDIR)$(MODULE).a $(OBJ) $(ASMOBJ) $(ASSMOBJ)
$(BINDIR)$(MODULE).a: $(OBJ) $(ASMOBJ)
$(AR) -rc $(BINDIR)$(MODULE).a $(OBJ) $(ASMOBJ)
# pull in dependency info for *existing* .o files
-include $(OBJ:.o=.d)
@ -30,5 +30,5 @@ $(BINDIR)%.o: %.S
# remove compilation products
clean::
rm -f $(BINDIR)$(MODULE).a $(OBJ) $(DEP) $(ASMOBJ) $(ASSMOBJ)
rm -f $(BINDIR)$(MODULE).a $(OBJ) $(DEP) $(ASMOBJ)