diff options
author | Guido van Rossum <guido@python.org> | 1997-10-20 23:16:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-20 23:16:32 (GMT) |
commit | cf809d6e48f2db77f70e53bd40fef4c7f2a9fe84 (patch) | |
tree | 364acd8e40600648955f387752b64c86541f053a /Makefile.in | |
parent | 304dd2defbb13c9e5e8b96020eaa00cd9c18d4b1 (diff) | |
download | cpython-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.in | 6 |
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 \ |