|
41 | 41 | # treated as errors, which is good to skip simple Sphinx syntax mistakes.
|
42 | 42 | .PHONY: build
|
43 | 43 | build: setup
|
44 |
| -PYTHONWARNINGS=ignore::FutureWarning$(VENV)/bin/sphinx-build -j auto -W --keep-going -b html -d$(OUTPUT_DOCTREE) -D language=$(LANGUAGE).$(OUTPUT_HTML)&&\ |
45 |
| -@echo"Success! Open file://`pwd`/$(OUTPUT_HTML)/index.html,"\ |
46 |
| -"or run 'make serve' to see them in http://localhost:8000"; |
| 44 | +PYTHONWARNINGS=ignore::FutureWarning$(VENV)/bin/sphinx-build -j auto -W --keep-going -b html -d$(OUTPUT_DOCTREE) -D language=$(LANGUAGE).$(OUTPUT_HTML)&&\ |
| 45 | +echo"Success! Open file://`pwd`/$(OUTPUT_HTML)/index.html,"\ |
| 46 | +"or run 'make serve' to see them in http://localhost:8000"; |
47 | 47 |
|
48 | 48 |
|
49 | 49 | # setup: After running "venv" target, prepare that virtual environment with
|
|
78 | 78 | # could have been created by the actions in other targets of this script
|
79 | 79 | .PHONY: clean
|
80 | 80 | clean:
|
81 |
| -rm -fr$(VENV) |
| 81 | +rm -rf$(VENV) |
82 | 82 | rm -rf$(POSPELL_TMP_DIR)
|
83 | 83 | find -name'*.mo' -delete
|
84 | 84 |
|
|