summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-11-16 15:58:32 (GMT)
committerGuido van Rossum <guido@python.org>1999-11-16 15:58:32 (GMT)
commitbcb393f2b2ef1993b77fba9752f0318bc877b2e3 (patch)
treee0fbe810ae6912ac5a8fdaa4d5d079756a5f6bfc /Makefile.in
parent0eefa3fbbfa476334516dda1be398188f993c35d (diff)
downloadcpython-bcb393f2b2ef1993b77fba9752f0318bc877b2e3.zip
cpython-bcb393f2b2ef1993b77fba9752f0318bc877b2e3.tar.gz
cpython-bcb393f2b2ef1993b77fba9752f0318bc877b2e3.tar.bz2
The 'test' target ought to depend on 'all', not just on python$(EXE)
-- otherwise shared libraries might not be rebuilt.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index fd3cca6..0805433 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)