c86ce093ce
* Added script/boostrap.sh to download the Arduino IDE and MPIDE (for chipKIT). Tested in Linux, should work in Cygwin and OS X too. * Added script/runtests.sh to run "make" in each example project and collect the results. The script returns -1 if any fails. * Moved currently testable examples to a "tests" directory, separate from examples that require alternative cores.
13 lines
344 B
Makefile
13 lines
344 B
Makefile
ARDMK_DIR=../../
|
|
DEPENDENCIES_FOLDER = ../../dependencies
|
|
DEPENDENCIES_MPIDE_DIR = $(DEPENDENCIES_FOLDER)/mpide-0023-linux64-20130817-test
|
|
|
|
ifeq ($(MPIDE_DIR),)
|
|
MPIDE_DIR = $(DEPENDENCIES_MPIDE_DIR)
|
|
endif
|
|
|
|
DEPENDENCIES_ARDUINO_DIR = $(DEPENDENCIES_FOLDER)/arduino-1.0.5
|
|
|
|
ifeq ($(ARDUINO_DIR),)
|
|
ARDUINO_DIR = $(DEPENDENCIES_ARDUINO_DIR)
|
|
endif
|