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 dd21558 commit 409794aCopy full SHA for 409794a
doc/Makefile
@@ -1,5 +1,5 @@
1
# Makefile for Sphinx documentation
2
-#
+WATCH_FILES= find .. -type f -not -path '*/\.*' | grep -i '.*[.]rst\|CHANGES\|TODO\|.*conf\.py\|.*[.]py$$' 2> /dev/null
3
PYVERSION=$(shell python -c "import sys;v=sys.version_info[0];sys.stdout.write(str(v))")
4
HTTP_PORT = 8023
5
@@ -158,8 +158,6 @@ checkbuild:
158
rm -rf $(BUILDDIR)
159
$(SPHINXBUILD) -n -q ./ $(BUILDDIR)
160
161
-WATCH_FILES= find .. -type f -not -path '*/\.*' | grep -i '.*[.]rst\|CHANGES\|TODO\|.*conf\.py' 2> /dev/null
162
-
163
watch:
164
if command -v entr > /dev/null; then ${WATCH_FILES} | entr -c $(MAKE) html; else $(MAKE) html; fi
165
0 commit comments