loom
35 строк · 764.0 Байт
1@ECHO OFF
2
3pushd %~dp0
4
5REM Command file for Sphinx documentation
6
7if "%SPHINXBUILD%" == "" (
8set SPHINXBUILD=sphinx-build
9)
10set SOURCEDIR=source
11set BUILDDIR=build
12
13if "%1" == "" goto help
14
15%SPHINXBUILD% >NUL 2>NUL
16if errorlevel 9009 (
17echo.
18echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
19echo.installed, then set the SPHINXBUILD environment variable to point
20echo.to the full path of the 'sphinx-build' executable. Alternatively you
21echo.may add the Sphinx directory to PATH.
22echo.
23echo.If you don't have Sphinx installed, grab it from
24echo.http://sphinx-doc.org/
25exit /b 1
26)
27
28%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
29goto end
30
31:help
32%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
33
34:end
35popd
36