Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

make.bat 799 B

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

Press p or to see the previous file or, n or to see the next file

Comments

Loading...