summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-10-20 23:16:32 (GMT)
committerGuido van Rossum <guido@python.org>1997-10-20 23:16:32 (GMT)
commitcf809d6e48f2db77f70e53bd40fef4c7f2a9fe84 (patch)
tree364acd8e40600648955f387752b64c86541f053a /Makefile.in
parent304dd2defbb13c9e5e8b96020eaa00cd9c18d4b1 (diff)
downloadcpython-cf809d6e48f2db77f70e53bd40fef4c7f2a9fe84.zip
cpython-cf809d6e48f2db77f70e53bd40fef4c7f2a9fe84.tar.gz
cpython-cf809d6e48f2db77f70e53bd40fef4c7f2a9fe84.tar.bz2
Rename sharedmodules to lib-dynload.
Treat .pyo files like .pyc files.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 0d5650c..3649626 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -114,7 +114,7 @@ SO= @SO@
LDSHARED= @LDSHARED@
CCSHARED= @CCSHARED@
LINKFORSHARED= @LINKFORSHARED@
-DESTSHARED= $(BINLIBDEST)/sharedmodules
+DESTSHARED= $(BINLIBDEST)/lib-dynload
# Shell used by make (some versions default to the login shell, which is bad)
SHELL= /bin/sh
@@ -204,7 +204,7 @@ TESTOPTS=
TESTPROG= $(srcdir)/Lib/test/regrtest.py
TESTPYTHON= ./python
test: python
- -rm -f $(srcdir)/Lib/test/*.pyc
+ -rm -f $(srcdir)/Lib/test/*.py[co]
-PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
@@ -295,7 +295,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR)
do \
case $$i in \
*CVS) ;; \
- *.pyc) ;; \
+ *.py[co]) ;; \
*~) ;; \
*) \
if test -x $$i; then \