From: Eric S. Raymond Date: Wed, 24 Apr 2019 19:30:40 +0000 (-0400) Subject: BSD friendliness. X-Git-Tag: 2.6~16 X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=commitdiff_plain;h=f738d498a8cd1b2e72836f597b7a4ae8e087afcc BSD friendliness. --- diff --git a/Makefile b/Makefile index 7aa6fad..c1d6685 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ super-star-trek-$(VERS).tar.gz: $(SOURCES) sst.6 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}" \ diff --git a/test/Makefile b/test/Makefile index 9c27e03..cf908be 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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