Allow env overwrite of ARDUINO_* vars

This allows to call make with `ARDUINO_PATH=/custom/install/loc make` to avoid
having to modify the Makefile when the arduino components are installed in non
standard installation paths.
pull/74/head
Max Linke 8 years ago
parent 7268eefb93
commit 37a2c97ef7

@ -5,8 +5,8 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
DEVICE_PORT := `ls /dev/ttyACM*`
DEVICE_PORT_BOOTLOADER := `ls /dev/ttyACM*`
ARDUINO_PATH=/usr/local/arduino
ARDUINO_LOCAL_LIB_PATH=$(HOME)/Arduino
ARDUINO_PATH?=/usr/local/arduino
ARDUINO_LOCAL_LIB_PATH?=$(HOME)/Arduino
MD5 = md5sum

Loading…
Cancel
Save