3
3
# edam's Arduino makefile
4
4
#_______________________________________________________________________________
7
# Copyright (C) 2011, 2012 Tim Marston <tim@ed.am>.
7
# Copyright (C) 2011, 1012 Tim Marston <tim@ed.am>.
9
9
# Permission is hereby granted, free of charge, to any person obtaining a copy
10
10
# of this software and associated documentation files (the "Software"), to deal
234
234
$(shell sed -ne "s/$(BOARD).upload.speed=\(.*\)/\1/p" $(BOARDS_FILE))
235
235
BOARD_UPLOAD_PROTOCOL := \
236
236
$(shell sed -ne "s/$(BOARD).upload.protocol=\(.*\)/\1/p" $(BOARDS_FILE))
238
$(shell sed -ne "s/$(BOARD).build.vid=\(.*\)/\1/p" $(BOARDS_FILE))
240
$(shell sed -ne "s/$(BOARD).build.pid=\(.*\)/\1/p" $(BOARDS_FILE))
243
239
ifeq "$(BOARD_BUILD_MCU)" ""
252
CPPFLAGS += -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
248
CPPFLAGS := -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
253
249
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
254
250
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
255
251
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
256
CPPFLAGS += -DUSB_VID=$(BOARD_USB_VID) -DUSB_PID=$(BOARD_USB_PID)
257
CPPFLAGS += -I. -Iutil -Iutility -I $(ARDUINOCOREDIR)
258
CPPFLAGS += -I $(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
259
CPPFLAGS += $(addprefix -I $(ARDUINODIR)/libraries/, $(LIBRARIES))
260
CPPFLAGS += $(patsubst %, -I $(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
252
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOCOREDIR)
253
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
254
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
255
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
261
256
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
262
257
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
263
AVRDUDEFLAGS += $(addprefix -C , $(AVRDUDECONF)) -DV
258
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
264
259
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
265
260
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
266
LINKFLAGS += -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
261
LINKFLAGS := -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
268
# figure out which arg to use with stty (for OS X, GNU and busybox stty)
269
STTYFARG := $(shell stty --help 2>&1 | \
270
grep -q 'illegal option' && echo -f || echo -F)
263
# figure out which arg to use with stty
264
STTYFARG := $(shell stty --help > /dev/null 2>&1 && echo -F || echo -f)
272
266
# include dependencies
273
267
ifneq "$(MAKECMDGOALS)" "clean"
306
300
@echo Available values for BOARD:
307
@sed -nEe '/^#/d; /^[^.]+\.name=/p' $(BOARDS_FILE) | \
308
sed -Ee 's/([^.]+)\.name=(.*)/\1 \2/' \
309
-e 's/(.{12}) *(.*)/\1 \2/'
301
@sed -ne '/^#/d; /^[^.]\+\.name=/p' $(BOARDS_FILE) | \
302
sed -e 's/\([^.]\+\)\.name=\(.*\)/\1 \2/' \
303
-e 's/\(.\{12\}\) *\(.*\)/\1 \2/'
312
306
@test -n "$(SERIALDEV)" || { \