# HG changeset patch # User levon@movementarian.org # Date 1130190769 25200 # Node ID 76239f0cb0dcab94719722bf45bdceb6adf08002 # Parent a7e8408ac79c6e044209e0fda18e618abaf6ea0d Use $(MAKE) not make diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ install: clean: -$(PYTHON) setup.py clean --all # ignore errors of this command find . -name '*.py[co]' -exec rm -f '{}' ';' - make -C doc clean + $(MAKE) -C doc clean dist: tests doc TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest @@ -19,7 +19,7 @@ tests: cd tests && ./run-tests doc: - make -C doc + $(MAKE) -C doc .PHONY: all clean dist tests doc