File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1
1
.git
2
+ build
3
+ .python-version
Original file line number Diff line number Diff line change
1
+ # Makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line.
5
+ SPHINXOPTS =
6
+ SPHINXBUILD = sphinx-build
7
+ PAPER =
8
+ BUILDDIR = build
9
+
10
+ # Internal variables.
11
+ PAPEROPT_a4 = -D latex_paper_size=a4
12
+ PAPEROPT_letter = -D latex_paper_size=letter
13
+ ALLSPHINXOPTS = -d $(BUILDDIR ) /doctrees $(PAPEROPT_$(PAPER ) ) $(SPHINXOPTS ) .
14
+ # the i18n builder cannot share the environment and doctrees with the others
15
+ I18NSPHINXOPTS = $(PAPEROPT_$(PAPER ) ) $(SPHINXOPTS ) .
16
+
17
+ .PHONY : help clean html
18
+
19
+ help :
20
+ @echo " Please use \` make <target>' where <target> is one of"
21
+ @echo " html to make standalone HTML files"
22
+
23
+ clean :
24
+ -rm -rf $(BUILDDIR ) /*
25
+
26
+ html :
27
+ $(SPHINXBUILD ) -b html $(ALLSPHINXOPTS ) $(BUILDDIR ) /html
28
+ @echo
29
+ @echo " Build finished. The HTML pages are in $( BUILDDIR) /html."
You can’t perform that action at this time.
0 commit comments