diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2009-08-16 10:21:16 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2009-08-16 10:21:16 +0000 |
commit | 957ba91c1aef51712fc0c4948f0400a4ecfce902 (patch) | |
tree | 32fc507cce2090815df509867af231cd9a50fb93 /cores/arduino | |
parent | 50f77c7210a490d8fee28348fcda811ca0bdf615 (diff) |
Removing obsolete wiring_serial.c from Makefile. Adding - to beginning of dependcy lines to avoid unnecessary warnings.
Diffstat (limited to 'cores/arduino')
-rwxr-xr-x | cores/arduino/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cores/arduino/Makefile b/cores/arduino/Makefile index 30ea655..0882f67 100755 --- a/cores/arduino/Makefile +++ b/cores/arduino/Makefile @@ -1,4 +1,4 @@ -# Arduino 0015 Makefile +# Arduino Makefile # Arduino adaptation by mellis, eighthave, oli.keller # # This makefile allows you to build sketches from the command line @@ -47,10 +47,10 @@ F_CPU = 16000000 ARDUINO = $(INSTALL_DIR)/hardware/cores/arduino AVR_TOOLS_PATH = $(INSTALL_DIR)/hardware/tools/avr/bin -SRC = $(ARDUINO)/pins_arduino.c $(ARDUINO)/wiring.c \ +SRC = $(ARDUINO)/pins_arduino.c $(ARDUINO)/wiring.c \ $(ARDUINO)/wiring_analog.c $(ARDUINO)/wiring_digital.c \ -$(ARDUINO)/wiring_pulse.c $(ARDUINO)/wiring_serial.c \ -$(ARDUINO)/wiring_shift.c $(ARDUINO)/WInterrupts.c +$(ARDUINO)/wiring_pulse.c $(ARDUINO)/wiring_shift.c \ +$(ARDUINO)/WInterrupts.c CXXSRC = $(ARDUINO)/HardwareSerial.cpp $(ARDUINO)/WMath.cpp \ $(ARDUINO)/Print.cpp FORMAT = ihex @@ -239,5 +239,5 @@ clean: .PHONY: all build elf hex eep lss sym program coff extcoff clean applet_files sizebefore sizeafter -include $(SRC:.c=.d) -include $(CXXSRC:.cpp=.d) +-include $(SRC:.c=.d) +-include $(CXXSRC:.cpp=.d) |