We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eccc9cc + 7bdd91f commit 33b6a24Copy full SHA for 33b6a24
1 file changed
docs/Makefile
@@ -21,13 +21,16 @@
21
22
.PHONY: user admin dev all
23
24
+main:
25
+ sphinx-autobuild --port 0 /app/docs/main /app/_build
26
+
27
user:
- sphinx-build -b html user_manual build/user_manual
28
+ sphinx-build -b html user_manual /app/_build/user
29
30
admin:
- sphinx-build -b html admin_manual build/admin_manual
31
+ sphinx-build -b html admin_manual /app/_build/admin
32
33
dev:
- sphinx-build -b html developer_manual build/developer_manual
34
+ sphinx-build -b html developer_manual /app/_build/dev
35
-all: user admin dev
36
+all: main user admin dev
0 commit comments