diff options
author | Guido van Rossum <guido@python.org> | 1996-07-31 17:30:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-31 17:30:37 (GMT) |
commit | bed23fe1ceb8313b8f911d30ced82e6eef6f9145 (patch) | |
tree | 46fe7f5c409abe44cbe52bb1ecdae60a877a7d83 /Makefile.in | |
parent | b8dccd29b375a09e4e5e5207d2e5e11e9a14443c (diff) | |
download | cpython-bed23fe1ceb8313b8f911d30ced82e6eef6f9145.zip cpython-bed23fe1ceb8313b8f911d30ced82e6eef6f9145.tar.gz cpython-bed23fe1ceb8313b8f911d30ced82e6eef6f9145.tar.bz2 |
Collect together all detailed installation directories.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 77e54f6..ba92f80 100644 --- a/Makefile.in +++ b/Makefile.in @@ -93,12 +93,18 @@ 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@ -DESTSHARED= $(LIBDIR)/python$(VERSION)/sharedmodules +DESTSHARED= $(BINLIBDEST)/sharedmodules # Shell used by make (some versions default to the login shell, which is bad) SHELL= /bin/sh @@ -192,7 +198,6 @@ maninstall: $(MANDIR)/man1/python.1 # Install the library -LIBDEST= $(SCRIPTDIR)/python$(VERSION) MACHDEPS= $(MACHDEP) LIBSUBDIRS= stdwin tkinter test $(MACHDEPS) libinstall: python $(srcdir)/Lib/$(MACHDEP) @@ -261,7 +266,6 @@ $(srcdir)/Lib/$(MACHDEP): (cd $(srcdir)/Lib/$(MACHDEP); ./regen) # Install the include files -INCLUDEPY= $(INCLUDEDIR)/python$(VERSION) inclinstall: @for i in $(INCLUDEDIR) $(INCLUDEPY); \ do \ @@ -280,7 +284,6 @@ inclinstall: # Install the lib*.a files and miscellaneous stuff needed by extensions # This goes into $(exec_prefix) -LIBP= $(LIBDIR)/python$(VERSION) LIBPL= $(LIBP)/config libainstall: all @for i in $(LIBDIR) $(LIBP) $(LIBPL); \ |