forked from DonOregano/Arduino-Boards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (22 loc) · 933 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
ifeq ($(BOARD_HARDWARE_PATH),)
PLUGIN_TEST_SUPPORT_DIR =? ./build-tools
KALEIDOSCOPE_BUILDER_DIR =? ./libraries/Kaleidoscope/bin/
endif
update-submodules: checkout-submodules
@echo "All Kaleidoscope libraries have been updated from GitHub"
build-all: travis-test-all
travis-test-all: travis-install-arduino
TRAVIS_ARDUINO_PATH=$(TRAVIS_ARDUINO_PATH) perl build-tools/quality/test-recursively travis-test
TRAVIS_ARDUINO_PATH=$(TRAVIS_ARDUINO_PATH) perl build-tools/quality/test-recursively cpplint
checkout-submodules: git-pull
git submodule update --init --recursive
maintainer-update-submodules:
git submodule update --recursive --remote --init
git-pull:
git pull
blindly-commit-updates: git-pull maintainer-update-submodules
git commit -a -m 'Blindly pull all plugins up to current'
git push
doxygen-generate:
doxygen build-tools/automation/etc/doxygen/doxygen.conf
-include build-tools/makefiles/rules.mk