summaryrefslogtreecommitdiff
path: root/Sprinter
diff options
context:
space:
mode:
authorJoachim Schleicher <J.Schleicher@stud.uni-heidelberg.de>2012-01-20 15:12:29 +0100
committerJoachim Schleicher <J.Schleicher@stud.uni-heidelberg.de>2012-01-27 12:15:38 +0100
commit77c3dd85ece0cb56e632a9eb4b335e24a33a8b7f (patch)
tree9e5db3f6c8b21159122faec9a79b451ff0d12b89 /Sprinter
parent591b4fa6d868890b588b919cf15fd8e5863ed795 (diff)
fix indentation
This should be a comment. Instead it is printed together with the 'upload' target, when idented.
Diffstat (limited to 'Sprinter')
-rw-r--r--Sprinter/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Sprinter/Makefile b/Sprinter/Makefile
index af1e6a7..639cf1b 100644
--- a/Sprinter/Makefile
+++ b/Sprinter/Makefile
@@ -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)