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.
1 parent c089e07 commit bae472bCopy full SHA for bae472b
docs/Makefile
@@ -5,7 +5,7 @@ SPHINXOPTS = -j auto
5
SPHINXBUILD = $(POETRY) run sphinx-build
6
PAPER =
7
BUILDDIR = _build
8
-SOURCEDIR = source
+SOURCEDIR = _source
9
10
# Internal variables
11
PAPEROPT_a4 = -D latex_paper_size=a4
@@ -24,6 +24,11 @@ setupenv:
24
.PHONY: setup
25
setup:
26
$(POETRY) install
27
+ $(POETRY) update
28
+ cd .. && doxygen Doxyfile.in
29
+ @if [ ! -d "$(SOURCEDIR)" ]; then mkdir -p "$(SOURCEDIR)"; fi
30
+ cp -RL source/* $(SOURCEDIR)
31
+ # cd $(SOURCEDIR) && find . -name README.md -execdir mv '{}' index.md ';'
32
33
.PHONY: update
34
update:
0 commit comments