aboutsummaryrefslogtreecommitdiffstats
path: root/docs/make.bat
diff options
context:
space:
mode:
authorLibravatar Fred-Barclay <Fred-Barclay@users.noreply.github.com>2018-10-05 21:10:16 -0500
committerLibravatar Fred-Barclay <Fred-Barclay@users.noreply.github.com>2018-10-05 21:10:16 -0500
commit09124f0f330b2788a9396ef75eb3c10787c183df (patch)
tree27627ac0c918931717787214eb2a1ee468f08056 /docs/make.bat
parentmerges (diff)
downloadfirejail-09124f0f330b2788a9396ef75eb3c10787c183df.tar.gz
firejail-09124f0f330b2788a9396ef75eb3c10787c183df.tar.zst
firejail-09124f0f330b2788a9396ef75eb3c10787c183df.zip
Begin work on docsdocs
Diffstat (limited to 'docs/make.bat')
-rw-r--r--docs/make.bat36
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/make.bat b/docs/make.bat
new file mode 100644
index 000000000..90a332e2e
--- /dev/null
+++ b/docs/make.bat
@@ -0,0 +1,36 @@
1@ECHO OFF
2
3pushd %~dp0
4
5REM Command file for Sphinx documentation
6
7if "%SPHINXBUILD%" == "" (
8 set SPHINXBUILD=sphinx-build
9)
10set SOURCEDIR=.
11set BUILDDIR=_build
12set SPHINXPROJ=Firejail
13
14if "%1" == "" goto help
15
16%SPHINXBUILD% >NUL 2>NUL
17if errorlevel 9009 (
18 echo.
19 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
20 echo.installed, then set the SPHINXBUILD environment variable to point
21 echo.to the full path of the 'sphinx-build' executable. Alternatively you
22 echo.may add the Sphinx directory to PATH.
23 echo.
24 echo.If you don't have Sphinx installed, grab it from
25 echo.http://sphinx-doc.org/
26 exit /b 1
27)
28
29%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
30goto end
31
32:help
33%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
34
35:end
36popd