fix indentation

This should be a comment. Instead it is printed together with
the 'upload' target, when idented.
This commit is contained in:
Joachim Schleicher 2012-01-20 15:12:29 +01:00
parent 591b4fa6d8
commit 77c3dd85ec

View file

@ -155,7 +155,7 @@ upload: applet/$(TARGET).hex
$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH)
# Display size of file.
# Display size of file.
HEXSIZE = $(SIZE) --target=$(FORMAT) applet/$(TARGET).hex
ELFSIZE = $(SIZE) applet/$(TARGET).elf
sizebefore:
@ -198,7 +198,7 @@ extcoff: $(TARGET).elf
.elf.sym:
$(NM) -n $< > $@
# Link: create ELF output file from library.
# Link: create ELF output file from library.
applet/$(TARGET).elf: applet/core.a applet/$(TARGET).cpp
$(CC) $(ALL_CFLAGS) -Wl,--gc-sections -o $@ applet/$(TARGET).cpp -L. applet/core.a $(LDFLAGS)