Skip to content

Commit

Permalink
Merge pull request #1156: docs: Allow BUILDDIR to be set from environ…
Browse files Browse the repository at this point in the history
…ment
  • Loading branch information
victorlin authored Oct 17, 2024
2 parents 4ce71eb + 1e58154 commit 7e594bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
#

# You can set these variables from the command line, and also
# from the environment for the first two.
# from the environment for the first three.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
BUILDDIR ?= build
SOURCEDIR = src
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
help:
Expand Down
4 changes: 3 additions & 1 deletion docs/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
if "%BUILDDIR%" == "" (
set BUILDDIR=build
)
set SOURCEDIR=src
set BUILDDIR=build

if "%1" == "" goto help

Expand Down

0 comments on commit 7e594bc

Please sign in to comment.