M Makefile +1 -1
@@ 29,7 29,7 @@ super-star-trek-$(VERS).tar.gz: $(SOURCE
dist: sst-$(VERS).tar.gz
check: #pylint
- cd test; make --quiet
+ cd test; $(MAKE) --quiet
COMMON_PYLINT = --rcfile=/dev/null --reports=n \
--msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" \
M test/Makefile +2 -2
@@ 4,9 4,9 @@ PYTHON=python
all:
@echo "With Python 2:"
- @make -e PYTHON=python2 regress
+ @$(MAKE) -e PYTHON=python2 regress
@echo "With Python 3:"
- @make -e PYTHON=python3 regress
+ @$(MAKE) -e PYTHON=python3 regress
@echo "No diff output is good news."
.SUFFIXES: .log .chk