We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4366403 commit 659e92bCopy full SHA for 659e92b
Makefile
@@ -6,15 +6,20 @@ PYTHON ?= python
6
MATHICS3_MODULE_OPTION ?=--load-module pymathics.trepan,pymathics.graph,pymathics.natlang
7
8
#: Default target - same as "develop"
9
-all: user-docs
+all: doctest-data rst-documentation user-docs
10
11
.PHONY: developer-docs clean
12
13
-#: Build developer guide
14
-user-docs: setup
+
+doctest-data: setup
15
MATHICS_CHARACTER_ENCODING="UTF-8" $(PYTHON) -m mathics.docpipeline --output $(MATHICS3_MODULE_OPTION)
16
$(PYTHON) generate/testdata.py
17
18
+rst-documentation:
19
$(PYTHON) generate/doc2rst.py $(MATHICS3_MODULE_OPTION)
20
21
+#: Build developer guide
22
+user-docs:
23
$(MAKE) -C docs html latexpdf
24
25
requirements.txt
@@ -1,4 +1,3 @@
1
-asymptote
2
sphinx
3
mathics3
4
matplotlib
0 commit comments