/make/arduino-mk

To get this branch, use:
bzr branch http://bzr.ed.am/make/arduino-mk

« back to all changes in this revision

Viewing changes to arduino.mk

  • Committer: Tim Marston
  • Date: 2013-05-22 19:42:25 UTC
  • Revision ID: tim@ed.am-20130522194225-xxka0ey9595wiqcv
read and use the build.core parameter in boards.txt

Show diffs side-by-side

added added

removed removed

202
202
BOARD_BUILD_MCU := $(call readboardsparam,build.mcu)
203
203
BOARD_BUILD_FCPU := $(call readboardsparam,build.f_cpu)
204
204
BOARD_BUILD_VARIANT := $(call readboardsparam,build.variant)
 
205
BOARD_BUILD_CORE := $(call readboardsparam,build.core)
205
206
BOARD_UPLOAD_SPEED := $(call readboardsparam,upload.speed)
206
207
BOARD_UPLOAD_PROTOCOL := $(call readboardsparam,upload.protocol)
207
208
BOARD_USB_VID := $(call readboardsparam,build.vid)
262
263
AVRSIZE := $(call findsoftware,avr-size)
263
264
 
264
265
# directories
265
 
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
 
266
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/$(BOARD_BUILD_CORE)
266
267
LIBRARYDIRS := $(foreach lib, $(LIBRARIES), \
267
268
        $(firstword $(wildcard $(addsuffix /$(lib), $(LIBRARYPATH)))))
268
269
LIBRARYDIRS += $(addsuffix /utility, $(LIBRARYDIRS))