summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-30 20:42:12 (GMT)
committerGuido van Rossum <guido@python.org>1996-07-30 20:42:12 (GMT)
commit64b65677c969a2e1212ad642d6ea0e0019f89c52 (patch)
tree99d1700f152895bb12b3401723711cb473de79d5 /Makefile.in
parent02ca3ab4f7f3660d627438621b38771a8a31fe59 (diff)
downloadcpython-64b65677c969a2e1212ad642d6ea0e0019f89c52.zip
cpython-64b65677c969a2e1212ad642d6ea0e0019f89c52.tar.gz
cpython-64b65677c969a2e1212ad642d6ea0e0019f89c52.tar.bz2
Some more install changes:
- "make install" now depends on "make altinstall" for most of the work, and the binary is always installed as python<version> first, with a hard link to python made by "make bininstall". - Create the machine dependent directory if it doesn't exist, and attempt to run the regen script in it (unfortunately this will fail unless you have h2py in your $PATH - help!)
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in42
1 files changed, 26 insertions, 16 deletions
diff --git a/Makefile.in b/Makefile.in
index e578cf9..332cba8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -60,6 +60,11 @@
# different betas of the same version will overwrite each other in
# installation unless you override the VERSION Make variable.)
#
+# In fact, "make install" or "make bininstall" installs the binary
+# as python<version> and makes a hard link to python, so when
+# installing a new version in the future, nothing of the current
+# version will be lost (except for the man page).
+#
# If recursive makes fail, try invoking make as "make MAKE=make".
#
# See also the section "Build instructions" in the README file.
@@ -145,26 +150,21 @@ test: python
PYTHONPATH=$(TESTPATH) ./python -c 'import autotest'
# Install everything
-install: bininstall maninstall libinstall inclinstall \
- libainstall sharedinstall
+install: altintall bininstall maninstall
-# Install most things with $(VERSION) affixed
+# Install almost everything without disturbing previous versions
altinstall: altbininstall libinstall inclinstall libainstall sharedinstall
-# Install the interpreter
-bininstall: python
- @for i in $(BINDIR); \
- do \
- if test ! -d $$i; then \
- echo "Creating directory $$i"; \
- mkdir $$i; \
- chmod 755 $$i; \
- else true; \
- fi; \
- done
- $(INSTALL_PROGRAM) python $(BINDIR)/python
+# Install the interpreter (by creating a hard link to python$(VERSION))
+bininstall: altbininstall
+ -if test -f $(BINDIR)/python; \
+ then rm -f $(BINDIR)/python; \
+ else true; \
+ fi
+ (cd $(BINDIR); ln python$(VERSION) python)
# Install the interpreter with $(VERSION) affixed
+# This goes into $(exec_prefix)
altbininstall: python
@for i in $(BINDIR); \
do \
@@ -194,7 +194,7 @@ maninstall:
# Install the library
LIBDEST= $(SCRIPTDIR)/python$(VERSION)
LIBSUBDIRS= stdwin tkinter test $(MACHDEP)
-libinstall: python
+libinstall: python $(srcdir)/Lib/$(MACHDEP)
@for i in $(SCRIPTDIR) $(LIBDEST); \
do \
if test ! -d $$i; then \
@@ -251,6 +251,14 @@ libinstall: python
PYTHONPATH=$(LIBDEST) \
./python $(LIBDEST)/compileall.py $(LIBDEST)
+# Create the MACHDEP source directory, if one wasn't distributed..
+# XXX This requires Tools/scripts/h2py.py which requires /usr/local/bin/python.
+# Oh well, it's a hint that something should be done.
+$(srcdir)/Lib/$(MACHDEP):
+ mkdir $(srcdir)/Lib/$(MACHDEP)
+ cp $(srcdir)/Lib/generic/regen $(srcdir)/Lib/$(MACHDEP)/regen
+ (cd $(srcdir)/Lib/$(MACHDEP); ./regen)
+
# Install the include files
INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
inclinstall:
@@ -270,6 +278,7 @@ inclinstall:
done
# 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
@@ -298,6 +307,7 @@ libainstall: all
$(INSTALL_DATA) Modules/main.o $(LIBPL)/main.o
# Install the dynamically loadable modules
+# This goes into $(exec_prefix)
sharedinstall:
cd Modules; $(MAKE) \
OPT="$(OPT)" \