# HG changeset patch # User levon@movementarian.org # Date 1130190769 25200 # Node ID 76239f0cb0dcab94719722bf45bdceb6adf08002 # Parent a7e8408ac79c6e044209e0fda18e618abaf6ea0d Use $(MAKE) not make diff -r a7e8408ac79c -r 76239f0cb0dc Makefile --- a/Makefile Mon Oct 24 14:52:41 2005 -0700 +++ b/Makefile Mon Oct 24 14:52:49 2005 -0700 @@ -10,7 +10,7 @@ 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 @@ cd tests && ./run-tests doc: - make -C doc + $(MAKE) -C doc .PHONY: all clean dist tests doc