@@ -44,13 +44,13 @@ MATHICS3_MODULE_OPTION ?= --load-module pymathics.graph,pymathics.natlang
4444 test \
4545 texdoc
4646
47- SANDBOX ?=
47+ MATHICS3_SANDBOX ?=
4848ifeq ($(OS ) ,Windows_NT)
49- SANDBOX = t
49+ MATHICS3_SANDBOX = t
5050else
5151 UNAME_S := $(shell uname -s)
5252 ifeq ($(UNAME_S),Darwin)
53- SANDBOX = t
53+ MATHICS3_SANDBOX = t
5454 endif
5555endif
5656
@@ -69,17 +69,17 @@ build:
6969# because pip install doesn't handle
7070# INSTALL_REQUIRES properly
7171# : Set up to run from the source tree
72- develop : mathics/data/op -tables.json mathics/data/operator-tables.json
72+ develop : mathics/data/character -tables.json mathics/data/operator-tables.json
7373 $(PIP ) install -e .[dev]
7474
7575# See note above on ./setup.py
7676# : Set up to run from the source tree with full dependencies
77- develop-full : mathics/data/op -tables.json mathics/data/operators.json
77+ develop-full : mathics/data/character -tables.json mathics/data/operators.json
7878 $(PIP ) install -e .[dev,full]
7979
8080# See note above on ./setup.py
8181# : Set up to run from the source tree with full dependencies and Cython
82- develop-full-cython : mathics/data/op -tables.json mathics/data/operators.json
82+ develop-full-cython : mathics/data/character -tables.json mathics/data/operators.json
8383 $(PIP ) install -e .[dev,full,cython]
8484
8585
@@ -126,7 +126,7 @@ clean: clean-cython clean-cache
126126 ($( MAKE) -C " $$ dir" clean); \
127127 done ; \
128128 rm -f factorials || true ; \
129- rm -f mathics/data/op -tables || true ; \
129+ rm -f mathics/data/character -tables.json || true ; \
130130 rm -rf build || true
131131
132132mypy :
@@ -155,7 +155,7 @@ doctest-data: mathics/builtin/*.py mathics/doc/documentation/*.mdoc mathics/doc/
155155
156156# : Run tests that appear in docstring in the code. Use environment variable "DOCTEST_OPTIONS" for doctest options
157157doctest :
158- MATHICS_CHARACTER_ENCODING=" ASCII" SANDBOX =$(SANDBOX ) $(PYTHON ) mathics/docpipeline.py $(DOCTEST_OPTIONS )
158+ MATHICS_CHARACTER_ENCODING=" ASCII" MATHICS3_SANDBOX =$(MATHICS3_SANDBOX ) $(PYTHON ) mathics/docpipeline.py $(DOCTEST_OPTIONS )
159159
160160# : Run tests that appear in docstring in the code, stopping on the first error.
161161doctest-x :
@@ -166,7 +166,7 @@ latexdoc texdoc doc:
166166 (cd mathics/doc/latex && $( MAKE) doc)
167167
168168# : Build JSON ASCII to unicode opcode table and operator table
169- mathics/data/operator-tables.json mathics/data/op -tables.json mathics/data/operators.json :
169+ mathics/data/operator-tables.json mathics/data/character -tables.json mathics/data/operators.json :
170170 $(BASH ) ./admin-tools/make-JSON-tables.sh
171171
172172# : Remove ChangeLog
0 commit comments