summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-02-22 21:17:30 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-02-22 21:17:30 (GMT)
commit27e35527ff2201045102eb9f4cc73776aa002b0a (patch)
tree5694d6c3d0fabd8235498e0733ab801925270be3 /Makefile
parent42abed4b37fcc0a37842f67b6a6e2f130021d20d (diff)
docs: Use sphinx to gather together all the wasp docs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c2ff1b5..b038685 100644
--- a/Makefile
+++ b/Makefile
@@ -54,10 +54,14 @@ debug:
-ex "attach 1" \
-ex "load"
+docs:
+ $(MAKE) -C docs html
+
+
sim:
PYTHONDONTWRITEBYTECODE=1 \
PYTHONPATH=$(PWD)/wasp/boards/simulator:$(PWD)/wasp \
- python3 -i wasp/boot.py
+ python3 -i wasp/main.py
-.PHONY: bootloader micropython
+.PHONY: bootloader docs micropython