Do not use ?= for defining macros

To define make macros one may use make arguments, so inheriting them from
environment is not needed. I also do not see nmake supporting `?=` (not sure
that anybody will use this though).
This commit is contained in:
Foo 2015-07-20 08:18:47 +03:00
parent 06a15ee999
commit 22e9dfd885

View File

@ -1,8 +1,8 @@
# Makefile for Sphinx documentation # Makefile for Sphinx documentation
SPHINXOPTS ?= SPHINXOPTS =
SPHINXBUILD ?= sphinx-build SPHINXBUILD = sphinx-build
PAPER ?= PAPER =
BUILDDIR ?= _build BUILDDIR = _build
# Internal variables # Internal variables
PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_a4 = -D latex_paper_size=a4