194
194
# obtain board parameters from the arduino boards.txt file(s)
195
195
BOARDSFILES := $(foreach dir, $(ARDUINOBACKENDS), \
196
196
$(ARDUINODIR)/hardware/arduino$(dir)/boards.txt)
197
ifeq "$(ARDUINOBACKENDS)" "/"
198
readboardsparam = $(shell sed -ne "s/^$(BOARD)\\.$(1)=\(.*\)/\1/p" \
197
201
readboardsparam = $(firstword \
198
$(shell sed -ne "s/^menu\\.cpu\\.$(BOARD)\\.$(1)=\(.*\)/\1/p" \
202
$(call readboardsmenuparam,$(1),$(basename $(BOARD)),$(suffix $(BOARD))) \
200
203
$(shell sed -ne "s/^$(basename $(BOARD))\\.$(1)=\(.*\)/\1/p" \
205
ifneq "$(wildcard /usr/bin/perl)" ""
206
readboardsmenuparam = $(shell perl -ne \
207
'/^$(2)\.menu\.cpu/ && s/.*$(3)\.$(1)=(.*)/\1/i && print' $(BOARDSFILES))
209
readboardsmenuparam = $(shell sed -ne '/^$(2)\.menu\.cpu/ {' \
210
-e 's/.*$(3)\.$(1)=\(.*\)/\1/p' -e '}' $(BOARDSFILES))
202
213
BOARD_BUILD_MCU := $(call readboardsparam,build.mcu)
203
214
BOARD_BUILD_FCPU := $(call readboardsparam,build.f_cpu)
204
215
BOARD_BUILD_VARIANT := $(call readboardsparam,build.variant)
205
216
BOARD_BUILD_CORE := $(call readboardsparam,build.core)
217
BOARD_BUILD_BOARD := $(call readboardsparam,build.board)
206
218
BOARD_UPLOAD_SPEED := $(call readboardsparam,upload.speed)
207
219
BOARD_UPLOAD_PROTOCOL := $(call readboardsparam,upload.protocol)
208
220
BOARD_USB_VID := $(call readboardsparam,build.vid)
237
249
$(if $(shell grep ^$(basename $(BOARD))\\.name \
238
250
$(ARDUINODIR)/hardware/arduino$(dir)/boards.txt), \
239
251
$(ARDUINODIR)/hardware/arduino$(dir))))
252
ARDUINOBACKENDARCH=AVR
240
253
ARDUINOCOREDIR := $(ARDUINOBACKENDDIR)/cores/$(BOARD_BUILD_CORE)
242
255
# default library path (places to look for libraries)
263
276
# they're in LIBRARYPATH, and then to the alphabetically-greater named library
264
277
# (this is a really stupid way of doing it, but it's how the IDE works -- if
265
278
# it's causing problems, you can override it by setting LIBRARIES manually)
266
INCLUDEDHEADERS := $(shell sed -ne "/^[ \t]*\#[ \t]*include[ \t<\"]/ {" \
267
-e "s/^.*[<\"]\(.*\)[>\"].*/\1/" -e "p" -e "}" $(SOURCES))
279
INCLUDEDHEADERS := $(shell sed -ne '/^[ \t]*\#[ \t]*include[ \t<"]/ {' \
280
-e 's/^.*[<"]\(.*\)[>"].*/\1/p' -e '}' $(SOURCES))
268
281
reverse = $(if $(1),$(call reverse,$(wordlist 2,$(words $(1)),$(1)))) \
269
282
$(firstword $(1))
270
283
LIBRARYHEADERS := $(foreach dir, $(LIBRARYPATH), \
280
293
LIBRARYDIRS := $(foreach lib, $(LIBRARIES), \
281
294
$(firstword $(wildcard $(addsuffix /$(lib), $(LIBRARYPATH)))))
283
LIBRARYDIRS := $(LIBRARYDIRS) $(addsuffix /utility, $(LIBRARYDIRS))
296
LIBRARYDIRS := $(LIBRARYDIRS) \
297
$(addsuffix /utility, $(LIBRARYDIRS)) \
298
$(addsuffix /src, $(LIBRARYDIRS))
286
301
TARGET := $(if $(TARGET),$(TARGET),a.out)
331
346
CPPFLAGS += -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
332
347
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
333
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
348
CPPFLAGS += -fpermissive -mmcu=$(BOARD_BUILD_MCU)
334
349
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
350
CPPFLAGS += -DARDUINO_$(BOARD_BUILD_BOARD) -DARDUINO_ARCH_$(ARDUINOBACKENDARCH)
335
351
CPPFLAGS += -DUSB_VID=$(BOARD_USB_VID) -DUSB_PID=$(BOARD_USB_PID)
336
352
CPPFLAGS += -I. -Iutil -Iutility -I $(ARDUINOCOREDIR)
337
353
CPPFLAGS += -I $(ARDUINOBACKENDDIR)/variants/$(BOARD_BUILD_VARIANT)/