From: Guido van Rossum Date: Tue, 16 Nov 1999 15:58:32 +0000 (+0000) Subject: The 'test' target ought to depend on 'all', not just on python$(EXE) X-Git-Tag: v1.6a1~733 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bcb393f2b2ef1993b77fba9752f0318bc877b2e3;p=thirdparty%2FPython%2Fcpython.git The 'test' target ought to depend on 'all', not just on python$(EXE) -- otherwise shared libraries might not be rebuilt. --- diff --git a/Makefile.in b/Makefile.in index fd3cca67d211..08054334676d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -235,7 +235,7 @@ Modules: Parser Python Objects TESTOPTS= TESTPROG= $(srcdir)/Lib/test/regrtest.py TESTPYTHON= ./python$(EXE) -test: python$(EXE) +test: all -rm -f $(srcdir)/Lib/test/*.py[co] -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)