Skip to content

Commit 957ba91

Browse files
committed
Removing obsolete wiring_serial.c from Makefile. Adding - to beginning of dependcy lines to avoid unnecessary warnings.
1 parent 50f77c7 commit 957ba91

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cores/arduino/Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Arduino 0015 Makefile
1+
# Arduino Makefile
22
# Arduino adaptation by mellis, eighthave, oli.keller
33
#
44
# This makefile allows you to build sketches from the command line
@@ -47,10 +47,10 @@ F_CPU = 16000000
4747

4848
ARDUINO = $(INSTALL_DIR)/hardware/cores/arduino
4949
AVR_TOOLS_PATH = $(INSTALL_DIR)/hardware/tools/avr/bin
50-
SRC = $(ARDUINO)/pins_arduino.c $(ARDUINO)/wiring.c \
50+
SRC = $(ARDUINO)/pins_arduino.c $(ARDUINO)/wiring.c \
5151
$(ARDUINO)/wiring_analog.c $(ARDUINO)/wiring_digital.c \
52-
$(ARDUINO)/wiring_pulse.c $(ARDUINO)/wiring_serial.c \
53-
$(ARDUINO)/wiring_shift.c $(ARDUINO)/WInterrupts.c
52+
$(ARDUINO)/wiring_pulse.c $(ARDUINO)/wiring_shift.c \
53+
$(ARDUINO)/WInterrupts.c
5454
CXXSRC = $(ARDUINO)/HardwareSerial.cpp $(ARDUINO)/WMath.cpp \
5555
$(ARDUINO)/Print.cpp
5656
FORMAT = ihex
@@ -239,5 +239,5 @@ clean:
239239

240240
.PHONY: all build elf hex eep lss sym program coff extcoff clean applet_files sizebefore sizeafter
241241

242-
include $(SRC:.c=.d)
243-
include $(CXXSRC:.cpp=.d)
242+
-include $(SRC:.c=.d)
243+
-include $(CXXSRC:.cpp=.d)

0 commit comments

Comments
 (0)