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.
install
doc/Makefile
1 parent 0445d77 commit e312a2aCopy full SHA for e312a2a
doc/Makefile
@@ -1,5 +1,9 @@
1
# Minimal makefile for Sphinx documentation
2
#
3
+prefix = $(PWD)
4
+docdir = $(prefix)/share/doc/als
5
+MKDIR = mkdir -p
6
+CP = cp -p
7
8
# You can set these variables from the command line, and also
9
# from the environment for the first two.
@@ -18,3 +22,10 @@ help:
18
22
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19
23
%: Makefile
20
24
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
25
+
26
+install:
27
+ $(MKDIR) $(docdir)/html
28
29
+ ${MKDIR} $(docdir)/html/users_guide/
30
+ -${CP} -r _build/html/* $(docdir)/html/users_guide/
31
0 commit comments