source: trunk/essentials/dev-lang/python/Mac/Makefile.in@ 3317

Last change on this file since 3317 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 7.8 KB
Line 
1# This file can be invoked from the various frameworkinstall... targets in the
2# main Makefile. The next couple of variables are overridden on the
3# commandline in that case.
4
5VERSION=@VERSION@
6builddir = ..
7srcdir=@srcdir@
8prefix=@prefix@
9LIBDEST=$(prefix)/lib/python$(VERSION)
10RUNSHARED=@RUNSHARED@
11BUILDEXE=@BUILDEXEEXT@
12BUILDPYTHON=$(builddir)/python$(BUILDEXE)
13DESTDIR=
14LDFLAGS=@LDFLAGS@
15FRAMEWORKUNIXTOOLSPREFIX=@FRAMEWORKUNIXTOOLSPREFIX@
16
17# These are normally glimpsed from the previous set
18bindir=$(prefix)/bin
19PYTHONAPPSDIR=/Applications/MacPython $(VERSION)
20APPINSTALLDIR=$(prefix)/Resources/Python.app
21
22# Variables for installing the "normal" unix binaries
23INSTALLED_PYTHONAPP=$(APPINSTALLDIR)/Contents/MacOS/Python
24
25# Items more-or-less copied from the main Makefile
26DIRMODE=755
27FILEMODE=644
28INSTALL=@INSTALL@
29INSTALL_SYMLINK=ln -fsn
30INSTALL_PROGRAM=@INSTALL_PROGRAM@
31INSTALL_SCRIPT= @INSTALL_SCRIPT@
32INSTALL_DATA=@INSTALL_DATA@
33LN=@LN@
34STRIPFLAG=-s
35CPMAC=/Developer/Tools/CpMac
36
37APPTEMPLATE=$(srcdir)/Resources/app
38APPSUBDIRS=MacOS Resources Resources/English.lproj \
39 Resources/English.lproj/Documentation \
40 Resources/English.lproj/Documentation/doc \
41 Resources/English.lproj/Documentation/ide
42DOCDIR=$(srcdir)/Resources/app/Resources/English.lproj/Documentation
43DOCINDEX=$(DOCDIR)/"Documentation idx"
44CACHERSRC=$(srcdir)/scripts/cachersrc.py
45compileall=$(srcdir)/../Lib/compileall.py
46
47installapps: install_Python install_BuildApplet install_PythonLauncher \
48 install_IDLE checkapplepython install_pythonw install_versionedtools
49
50install_pythonw: pythonw
51 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)"
52 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/python$(VERSION)"
53 ln -sf python$(VERSION) "$(DESTDIR)$(prefix)/bin/python"
54 ln -sf pythonw$(VERSION) "$(DESTDIR)$(prefix)/bin/pythonw"
55
56#
57# Install unix tools in /usr/local/bin. These are just aliases for the
58# actual installation inside the framework.
59#
60installunixtools:
61 if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
62 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
63 fi
64 for fn in python pythonw idle pydoc python-config smtpd.py \
65 python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
66 pydoc$(VERSION) python-config$(VERSION) smtpd$(VERSION).py ;\
67 do \
68 ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
69 done
70
71#
72# Like installunixtools, but only install links to the versioned binaries.
73#
74altinstallunixtools:
75 if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
76 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
77 fi
78 for fn in python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
79 pydoc$(VERSION) python-config$(VERSION) smtpd$(VERSION).py ;\
80 do \
81 ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
82 done
83
84
85# By default most tools are installed without a version in their basename, to
86# make it easier to install (and use) several python versions side-by-side move
87# the tools to a version-specific name and add the non-versioned name as an
88# alias.
89install_versionedtools:
90 for fn in idle pydoc python-config ;\
91 do \
92 if [ -h "$(DESTDIR)$(prefix)/bin/$${fn}" ]; then \
93 continue ;\
94 fi ;\
95 mv "$(DESTDIR)$(prefix)/bin/$${fn}" "$(DESTDIR)$(prefix)/bin/$${fn}$(VERSION)" ;\
96 ln -sf "$${fn}$(VERSION)" "$(DESTDIR)$(prefix)/bin/$${fn}" ;\
97 done
98 if [ ! -h "$(DESTDIR)$(prefix)/bin/smtpd.py" ]; then \
99 mv "$(DESTDIR)$(prefix)/bin/smtpd.py" "$(DESTDIR)$(prefix)/bin/smtpd$(VERSION).py" ;\
100 ln -sf "smtpd$(VERSION).py" "$(DESTDIR)$(prefix)/bin/smtpd.py" ;\
101 fi
102
103
104pythonw: $(srcdir)/Tools/pythonw.c
105 $(CC) $(LDFLAGS) -o $@ $(srcdir)/Tools/pythonw.c \
106 -DPYTHONWEXECUTABLE='"$(APPINSTALLDIR)/Contents/MacOS/Python"'
107
108
109install_PythonLauncher:
110 cd PythonLauncher && make install DESTDIR=$(DESTDIR)
111
112install_Python:
113 @if test ! -f $(DOCINDEX); then \
114 echo WARNING: you should run Apple Help Indexing Tool on $(DOCDIR); \
115 fi
116 @for i in "$(PYTHONAPPSDIR)" "$(APPINSTALLDIR)" "$(APPINSTALLDIR)/Contents"; do \
117 if test ! -d "$(DESTDIR)$$i"; then \
118 echo "Creating directory $(DESTDIR)$$i"; \
119 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$$i"; \
120 fi;\
121 done
122 @for i in $(APPSUBDIRS); do \
123 if test ! -d "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; then \
124 echo "Creating directory $(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
125 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
126 else true; \
127 fi; \
128 done
129 @for d in . $(APPSUBDIRS); \
130 do \
131 a=$(APPTEMPLATE)/$$d; \
132 if test ! -d $$a; then continue; else true; fi; \
133 b="$(DESTDIR)$(APPINSTALLDIR)/Contents/$$d"; \
134 for i in $$a/*; \
135 do \
136 case $$i in \
137 *CVS) ;; \
138 *.svn) ;; \
139 *.py[co]) ;; \
140 *.orig) ;; \
141 *~) ;; \
142 *idx) \
143 echo $(CPMAC) "$$i" $$b; \
144 $(CPMAC) "$$i" "$$b"; \
145 ;; \
146 *) \
147 if test -d $$i; then continue; fi; \
148 if test -x $$i; then \
149 echo $(INSTALL_SCRIPT) "$$i" "$$b"; \
150 $(INSTALL_SCRIPT) "$$i" "$$b"; \
151 else \
152 echo $(INSTALL_DATA) "$$i" "$$b"; \
153 $(INSTALL_DATA) "$$i" "$$b"; \
154 fi;; \
155 esac; \
156 done; \
157 done
158 $(INSTALL_PROGRAM) $(STRIPFLAG) $(BUILDPYTHON) "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/Python"
159
160install_IDLE:
161 cd IDLE && make install