diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-03-23 15:03:26 +0100 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2022-03-23 15:03:26 +0100 |
commit | 7b329c6143bbb615366c67db16ca8c6ae57e5448 (patch) | |
tree | 48515c174ecd4885b389218f723382be86b0429f /make.bat | |
download | club1-docs-7b329c6143bbb615366c67db16ca8c6ae57e5448.tar.gz club1-docs-7b329c6143bbb615366c67db16ca8c6ae57e5448.zip |
initial commit
run Welcome to the Sphinx 4.3.2 quickstart utility.
Please enter values for the following settings (just press Enter to
accept a default value, if one is given in brackets).
Selected root path: .
Error: an existing conf.py has been found in the selected root path.
sphinx-quickstart will not overwrite existing Sphinx projects.
> Please enter a new root path (or just Enter to exit) []:
Diffstat (limited to 'make.bat')
-rw-r--r-- | make.bat | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/make.bat b/make.bat new file mode 100644 index 0000000..153be5e --- /dev/null +++ b/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+ set SPHINXBUILD=sphinx-build
+)
+set SOURCEDIR=.
+set BUILDDIR=_build
+
+if "%1" == "" goto help
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+ echo.
+ echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
+ echo.installed, then set the SPHINXBUILD environment variable to point
+ echo.to the full path of the 'sphinx-build' executable. Alternatively you
+ echo.may add the Sphinx directory to PATH.
+ echo.
+ echo.If you don't have Sphinx installed, grab it from
+ echo.https://www.sphinx-doc.org/
+ exit /b 1
+)
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+
+:end
+popd
|