git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@788 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-02-18 21:49:44 +00:00
parent 896bbfd7ea
commit d1bc19825d
1 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,8 @@ LLIBDIR = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR))
# Macros # Macros
DEFS = $(DDEFS) $(UDEFS) DEFS = $(DDEFS) $(UDEFS)
ADEFS = $(DADEFS) $(UADEFS) ADEFS = $(DADEFS) $(UADEFS)
# Libs
LIBS = $(DLIBS) $(ULIBS) LIBS = $(DLIBS) $(ULIBS)
# Various settings # Various settings
@ -106,7 +108,7 @@ $(ASMOBJS) : %.o : %.s
%elf: $(OBJS) %elf: $(OBJS)
@echo @echo
$(LD) $(ASMOBJS) $(ACOBJS) $(TCOBJS) $(ACPPOBJS) $(TCPPOBJS) $(LDFLAGS) $(LIBS) -o $@ $(LD) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
%hex: %elf %hex: %elf
$(HEX) $< $@ $(HEX) $< $@