diff options
author | kliment <kliment.yanev@gmail.com> | 2012-02-24 13:59:59 -0800 |
---|---|---|
committer | kliment <kliment.yanev@gmail.com> | 2012-02-24 13:59:59 -0800 |
commit | 0ed514e153a7fe6fa6d9810e7373798ac4088dff (patch) | |
tree | 98031e82be19065afbcc73bf98f0a6a0c17b2252 /Sprinter/Makefile | |
parent | 89180de4bfd598298f4d5e77889c57a250e35084 (diff) | |
parent | eb421e6a653d12221d17d3c515b0ac54010dd253 (diff) |
Merge pull request #144 from midopple/experimental
Fix Comment, Optimize, remove Unused code, fix makefile
Diffstat (limited to 'Sprinter/Makefile')
-rw-r--r-- | Sprinter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sprinter/Makefile b/Sprinter/Makefile index 4d6326a..6b873bb 100644 --- a/Sprinter/Makefile +++ b/Sprinter/Makefile @@ -55,7 +55,7 @@ $(ARDUINO)/wiring_analog.c $(ARDUINO)/wiring_digital.c \ $(ARDUINO)/wiring_pulse.c \ $(ARDUINO)/wiring_shift.c $(ARDUINO)/WInterrupts.c CXXSRC = $(ARDUINO)/HardwareSerial.cpp $(ARDUINO)/WMath.cpp $(ARDUINO)/WString.cpp\ -$(ARDUINO)/Print.cpp ./SdFile.cpp ./SdVolume.cpp ./Sd2Card.cpp ./heater.cpp ./arc_func.cpp +$(ARDUINO)/Print.cpp ./SdFile.cpp ./SdVolume.cpp ./Sd2Card.cpp ./heater.cpp ./arc_func.cpp ./store_eeprom.cpp FORMAT = ihex @@ -199,7 +199,7 @@ extcoff: $(TARGET).elf $(NM) -n $< > $@ # Link: create ELF output file from library. -applet/$(TARGET).elf: applet/core.a applet/$(TARGET).cpp +applet/$(TARGET).elf: applet/$(TARGET).cpp applet/core.a $(CC) $(ALL_CFLAGS) -Wl,--gc-sections -o $@ applet/$(TARGET).cpp -L. applet/core.a $(LDFLAGS) applet/core.a: $(OBJ) |