diff options
author | holgerd77 <Holger.Drewes@gmail.com> | 2017-08-29 01:40:18 +0800 |
---|---|---|
committer | holgerd77 <Holger.Drewes@gmail.com> | 2017-08-30 01:23:44 +0800 |
commit | 60c19d22eb79aed3084ede5d4a0725235376c6b3 (patch) | |
tree | 71ac0d6031e5251cd9ea72ffffd1f17d855f22af /docs/make.bat | |
parent | 953d6f51c3a54bc9015208a258f5a88841d2b919 (diff) | |
download | dexon-tests-60c19d22eb79aed3084ede5d4a0725235376c6b3.tar dexon-tests-60c19d22eb79aed3084ede5d4a0725235376c6b3.tar.gz dexon-tests-60c19d22eb79aed3084ede5d4a0725235376c6b3.tar.bz2 dexon-tests-60c19d22eb79aed3084ede5d4a0725235376c6b3.tar.lz dexon-tests-60c19d22eb79aed3084ede5d4a0725235376c6b3.tar.xz dexon-tests-60c19d22eb79aed3084ede5d4a0725235376c6b3.tar.zst dexon-tests-60c19d22eb79aed3084ede5d4a0725235376c6b3.zip |
Add initial Sphinx docs directory, added docs/_build/ folder to .gitignore
Diffstat (limited to 'docs/make.bat')
-rw-r--r-- | docs/make.bat | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 000000000..ee5da4ee2 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,36 @@ +@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+ set SPHINXBUILD=python -msphinx
+)
+set SOURCEDIR=.
+set BUILDDIR=_build
+set SPHINXPROJ=EthereumTests
+
+if "%1" == "" goto help
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+ echo.
+ echo.The Sphinx module was not found. Make sure you have Sphinx installed,
+ echo.then set the SPHINXBUILD environment variable to point to the full
+ echo.path of the 'sphinx-build' executable. Alternatively you may add the
+ echo.Sphinx directory to PATH.
+ echo.
+ echo.If you don't have Sphinx installed, grab it from
+ echo.http://sphinx-doc.org/
+ exit /b 1
+)
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
+
+:end
+popd
|