Demo install
authorJoseph Coffland <joseph@cauldrondevelopment.com>
Sun, 31 Jan 2021 07:09:00 +0000 (23:09 -0800)
committerJoseph Coffland <joseph@cauldrondevelopment.com>
Sun, 31 Jan 2021 07:09:00 +0000 (23:09 -0800)
Makefile

index b4c63af2f4574a968c47a2d841a1d9a0e180d9c2..07b094e4c85cabc32b7f295ed38839e7f5fb2bbb 100644 (file)
--- 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