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 35671a4 commit e059ae2Copy full SHA for e059ae2
.gitignore
@@ -3,4 +3,5 @@ build/
3
.vscode/
4
node_modules/
5
__pycache__/
6
-*.pyc
+*.pyc
7
+spec/**/generated
spec/Makefile
@@ -12,9 +12,13 @@ BUILDDIR = _build
12
help:
13
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
15
-.PHONY: help Makefile
+.PHONY: help Makefile clean
16
17
# Catch-all target: route all unknown targets to Sphinx using the new
18
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19
%: Makefile
20
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
21
+
22
+clean:
23
+ -rm -rf $(BUILDDIR)
24
+ -rm -rf "$(SOURCEDIR)/API_specification/generated"
0 commit comments