diff options
author | Guido van Rossum <guido@python.org> | 1995-01-02 18:33:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-02 18:33:54 (GMT) |
commit | 76be6eda96252cc978bd7c1c35dd4184c4aba8e1 (patch) | |
tree | d5ba2ca951c5389d667224c5181287557ddfe64e /Makefile.in | |
parent | a6c707c67944f7928cff34a1745cf1a94efc5925 (diff) | |
download | cpython-76be6eda96252cc978bd7c1c35dd4184c4aba8e1.zip cpython-76be6eda96252cc978bd7c1c35dd4184c4aba8e1.tar.gz cpython-76be6eda96252cc978bd7c1c35dd4184c4aba8e1.tar.bz2 |
The usual changes when a release is nearing...
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in index 7bbf57b..cb726df 100644 --- a/Makefile.in +++ b/Makefile.in @@ -33,18 +33,11 @@ RANLIB= @RANLIB@ # Machine-dependent subdirectories MACHDEP= @MACHDEP@ -# Install prefixes are treated specially by the configure script: -# it only changes these lines if it has received a --prefix=... or -# --exec-prefix=... command line option. Note that $(prefix) is -# also used when compiling config.c in Modules to set the default -# module search path, so if you change it later be sure to change it -# there too and rebuild. - # Install prefix for architecture-independent files -prefix= /usr/local +prefix= @prefix@ # Install prefix for architecture-dependent files -exec_prefix= $(prefix) +exec_prefix= @exec_prefix@ # Expanded directories MANDIR=$(prefix)/man @@ -93,7 +86,7 @@ python: Makefiles done # Test the interpreter (twice, once without .pyc files, once with) -TESTPATH= $(srcdir)/Lib:$(srcdir)/Lib/test +TESTPATH= $(srcdir)/Lib:$(srcdir)/Lib/test:./Modules test: python -rm -f $(srcdir)/Lib/test/*.pyc PYTHONPATH=$(TESTPATH) ./python -c 'import autotest' @@ -242,7 +235,7 @@ clobber: localclobber # Make things extra clean, before making a distribution distclean: clobber -$(MAKE) SUBDIRS="$(SUBDIRSTOO)" clobber - -rm -f config.status config.h Makefile + -rm -f config.status config.log config.cache config.h Makefile -for i in $(SUBDIRS) $(SUBDIRSTOO); do \ for f in $$i/*.in; do \ f=`basename "$$f" .in`; \ |