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 af88a61 commit 3b05576Copy full SHA for 3b05576
Makefile
@@ -1,16 +1,15 @@
1
-# You can set these variables from the command line, and also
2
-# from the environment for the first two.
+# You can set these variables from the command line.
3
SPHINXOPTS ?= -W --keep-going
4
-SOURCEDIR = ./spec
+SOURCEDIR = spec
5
BUILDDIR = _site
6
7
-.PHONY: all clean build
+.PHONY: default clean build
8
9
-all: clean build
+default: clean build
10
11
clean:
12
-rm -rf $(BUILDDIR)
13
- -rm -rf $(SOURCEDIR)/**/generated
+ -find . -type d -name generated -exec rm -rf {} +
14
15
build:
16
-mkdir -p $(BUILDDIR)
0 commit comments