Skip to content

Commit 647602c

Browse files
committed
Minor fixes in Makefile
1 parent 82dd118 commit 647602c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ help:
4141
# treated as errors, which is good to skip simple Sphinx syntax mistakes.
4242
.PHONY: build
4343
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";
4747

4848

4949
# setup: After running "venv" target, prepare that virtual environment with
@@ -78,7 +78,7 @@ serve:
7878
# could have been created by the actions in other targets of this script
7979
.PHONY: clean
8080
clean:
81-
rm -fr $(VENV)
81+
rm -rf $(VENV)
8282
rm -rf $(POSPELL_TMP_DIR)
8383
find -name '*.mo' -delete
8484

0 commit comments

Comments
 (0)