Skip to content

Commit 33b6a24

Browse files
authored
Merge pull request #16 from LibreSign/fix/makefile
fix: makefile, added main and fixed the path of all static files
2 parents eccc9cc + 7bdd91f commit 33b6a24

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

docs/Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,16 @@
2121

2222
.PHONY: user admin dev all
2323

24+
main:
25+
sphinx-autobuild --port 0 /app/docs/main /app/_build
26+
2427
user:
25-
sphinx-build -b html user_manual build/user_manual
28+
sphinx-build -b html user_manual /app/_build/user
2629

2730
admin:
28-
sphinx-build -b html admin_manual build/admin_manual
31+
sphinx-build -b html admin_manual /app/_build/admin
2932

3033
dev:
31-
sphinx-build -b html developer_manual build/developer_manual
34+
sphinx-build -b html developer_manual /app/_build/dev
3235

33-
all: user admin dev
36+
all: main user admin dev

0 commit comments

Comments
 (0)