You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #-------------------------------------------------------------------- settings
- FIND := find
- DIR := examples
- CRITERIA := \( -name "*.ino" -o -name "*.pde" \)
- EACH_EXAMPLE := $(FIND) $(DIR) $(CRITERIA) -exec
- BUILD := platformio ci
- LIB := src
-
- #--------------------------------------------------------------------- targets
- # update .travis.yml if target boards added
- all: uno due huzzah genuino101 teensy31
-
- uno due huzzah genuino101 teensy31:
- PLATFORMIO_BOARD=$@ $(MAKE) build
-
- build:
- $(EACH_EXAMPLE) $(BUILD) --board=$(PLATFORMIO_BOARD) --lib=$(LIB) {} \;
-
- .PHONY: all uno due huzzah genuino101 teensy31 build
|