From: Joseph Coffland Date: Sun, 31 Jan 2021 07:09:00 +0000 (-0800) Subject: Demo install X-Git-Url: https://git.buildbotics.com/?a=commitdiff_plain;h=30a174243d1ca2fc837c2efc6c78c901741aeab2;p=bbctrl-firmware Demo install --- diff --git a/Makefile b/Makefile index b4c63af..07b094e 100644 --- a/Makefile +++ b/Makefile @@ -39,9 +39,15 @@ PASSWORD=buildbotics endif -all: $(HTML) $(RESOURCES) +all: html resources @for SUB in $(SUBPROJECTS); do $(MAKE) -C src/$$SUB; done +html: $(HTML) +resources: $(RESOURCES) + +demo: html resources + ./setup install + pkg: all $(AVR_FIRMWARE) bbserial ./setup.py sdist @@ -140,3 +146,4 @@ dist-clean: clean rm -rf node_modules .PHONY: all install clean tidy pkg camotics lint pylint jshint bbserial +.PHONY: html resources