Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

36 lines
791B

  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%
  23. goto end
  24. :help
  25. %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
  26. :end
  27. popd