Skip to content

Commit

Permalink
Allow BUILDDIR to be set from environment
Browse files Browse the repository at this point in the history
No reason not to allow this.
  • Loading branch information
victorlin committed Oct 15, 2024
1 parent 4ce71eb commit 1e58154
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 1e58154

Please sign in to comment.