diff options
author | Guido van Rossum <guido@python.org> | 1996-07-31 17:37:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-31 17:37:07 (GMT) |
commit | 276de58927ea8986ba6ead3e64e0689bbbeb5ebc (patch) | |
tree | d7a8668ebeeab252466bc0a3c82eb494b9244fd2 | |
parent | a68acba5adf0ef9a6a5902c5b25541b057590eaa (diff) | |
download | cpython-276de58927ea8986ba6ead3e64e0689bbbeb5ebc.zip cpython-276de58927ea8986ba6ead3e64e0689bbbeb5ebc.tar.gz cpython-276de58927ea8986ba6ead3e64e0689bbbeb5ebc.tar.bz2 |
Collect together all detailed installation directories.
-rw-r--r-- | Modules/Makefile.pre.in | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 05479f6..cd53ae6 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -39,13 +39,24 @@ prefix= @prefix@ # Install prefix for architecture-dependent files exec_prefix= @exec_prefix@ +# Expanded directories +BINDIR= $(exec_prefix)/bin +LIBDIR= $(exec_prefix)/lib +MANDIR= $(prefix)/man +INCLUDEDIR= $(prefix)/include +SCRIPTDIR= $(prefix)/lib + +# Detailed destination directories +BINLIBDEST= $(LIBDIR)/python$(VERSION) +LIBDEST= $(SCRIPTDIR)/python$(VERSION) +INCLUDEPY= $(INCLUDEDIR)/python$(VERSION) +LIBP= $(LIBDIR)/python$(VERSION) + # Symbols used for using shared libraries SO= @SO@ LDSHARED= @LDSHARED@ CCSHARED= @CCSHARED@ LINKFORSHARED= @LINKFORSHARED@ -LIBDIR= $(exec_prefix)/lib -BINLIBDEST= $(LIBDIR)/python$(VERSION) DESTSHARED= $(BINLIBDEST)/sharedmodules # Portable install script (configure doesn't always guess right) |