From 332ff03f9c8ff515ac8e07b542a9b025f4180e0b Mon Sep 17 00:00:00 2001 From: Joseph Coffland Date: Fri, 21 Jul 2017 15:30:56 -0700 Subject: [PATCH] Make all from top dir --- Makefile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1f51761..c4710ab 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,16 @@ endif WATCH := src/jade src/jade/templates src/stylus src/js src/resources Makefile -all: html css js static +all: html css js static avr boot pwr + +avr: + $(MAKE) -C src/avr + +boot: + $(MAKE) -C src/boot + +pwr: + $(MAKE) -C src/pwr copy: pkg rsync $(RSYNC_OPTS) pkg/$(PKG_NAME)/ $(DEST)/bbctrl/ @@ -127,6 +136,9 @@ tidy: clean: tidy rm -rf build html dist + @$(MAKE) -C src/avr clean + @$(MAKE) -C src/boot clean + @$(MAKE) -C src/pwr clean dist-clean: clean rm -rf node_modules -- 2.27.0