blob: 2a485c61ac20891691dd09e26986d74dc7fae19c [file] [log] [blame]
Ronald Oussoren836b0392006-05-14 19:56:34 +00001# 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@
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +00006builddir = ..
7srcdir=@srcdir@
Ronald Oussoren4fbb0802006-06-11 20:23:29 +00008prefix=@prefix@
Ronald Oussoren836b0392006-05-14 19:56:34 +00009LIBDEST=$(prefix)/lib/python$(VERSION)
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +000010RUNSHARED=@RUNSHARED@
11BUILDEXE=@BUILDEXEEXT@
12BUILDPYTHON=$(builddir)/python$(BUILDEXE)
Ronald Oussoren836b0392006-05-14 19:56:34 +000013DESTDIR=
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +000014LDFLAGS=@LDFLAGS@
Ronald Oussoren5b787322006-06-06 19:50:24 +000015FRAMEWORKUNIXTOOLSPREFIX=@FRAMEWORKUNIXTOOLSPREFIX@
Ronald Oussoren580c7fe2008-05-02 19:45:11 +000016PYTHONFRAMEWORK=@PYTHONFRAMEWORK@
17
Ronald Oussoren836b0392006-05-14 19:56:34 +000018
19# These are normally glimpsed from the previous set
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +000020bindir=$(prefix)/bin
Ronald Oussoren580c7fe2008-05-02 19:45:11 +000021PYTHONAPPSDIR=/Applications/$(PYTHONFRAMEWORK) $(VERSION)
Ronald Oussoren836b0392006-05-14 19:56:34 +000022APPINSTALLDIR=$(prefix)/Resources/Python.app
23
24# Variables for installing the "normal" unix binaries
Ronald Oussoren580c7fe2008-05-02 19:45:11 +000025INSTALLED_PYTHONAPP=$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)
Ronald Oussoren836b0392006-05-14 19:56:34 +000026
27# Items more-or-less copied from the main Makefile
28DIRMODE=755
29FILEMODE=644
30INSTALL=@INSTALL@
31INSTALL_SYMLINK=ln -fsn
32INSTALL_PROGRAM=@INSTALL_PROGRAM@
33INSTALL_SCRIPT= @INSTALL_SCRIPT@
34INSTALL_DATA=@INSTALL_DATA@
35LN=@LN@
36STRIPFLAG=-s
37CPMAC=/Developer/Tools/CpMac
38
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +000039APPTEMPLATE=$(srcdir)/Resources/app
Ronald Oussoren836b0392006-05-14 19:56:34 +000040APPSUBDIRS=MacOS Resources Resources/English.lproj \
41 Resources/English.lproj/Documentation \
42 Resources/English.lproj/Documentation/doc \
43 Resources/English.lproj/Documentation/ide
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +000044DOCDIR=$(srcdir)/Resources/app/Resources/English.lproj/Documentation
Ronald Oussoren836b0392006-05-14 19:56:34 +000045DOCINDEX=$(DOCDIR)/"Documentation idx"
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +000046CACHERSRC=$(srcdir)/scripts/cachersrc.py
47compileall=$(srcdir)/../Lib/compileall.py
Ronald Oussoren836b0392006-05-14 19:56:34 +000048
49installapps: install_Python install_BuildApplet install_PythonLauncher \
50 install_IDLE checkapplepython install_pythonw install_versionedtools
51
Ronald Oussoren5640ce22008-06-05 12:58:24 +000052installapps4way: install_Python4way install_BuildApplet install_PythonLauncher install_IDLE install_pythonw4way install_versionedtools
53
54
Ronald Oussoren836b0392006-05-14 19:56:34 +000055install_pythonw: pythonw
56 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)"
57 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/python$(VERSION)"
58 ln -sf python$(VERSION) "$(DESTDIR)$(prefix)/bin/python"
59 ln -sf pythonw$(VERSION) "$(DESTDIR)$(prefix)/bin/pythonw"
60
Ronald Oussoren5640ce22008-06-05 12:58:24 +000061
62# Install 3 variants of python/pythonw:
63# - 32-bit (i386 and ppc)
64# - 64-bit (x86_64 and ppc64)
65# - all (all four architectures)
66# - Make 'python' and 'pythonw' aliases for the 32-bit variant
67install_pythonw4way: pythonw-32 pythonw-64 pythonw
68 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw-64 "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)-64"
69 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw-64 "$(DESTDIR)$(prefix)/bin/python$(VERSION)-64"
70 ln -sf python$(VERSION)-64 "$(DESTDIR)$(prefix)/bin/python-64"
71 ln -sf pythonw$(VERSION)-64 "$(DESTDIR)$(prefix)/bin/pythonw-64"
72
73 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw-32 "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)-32"
74 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw-32 "$(DESTDIR)$(prefix)/bin/python$(VERSION)-32"
75 ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python-32"
76 ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw-32"
77
78 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)-all"
79 $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/python$(VERSION)-all"
80 ln -sf python$(VERSION)-all "$(DESTDIR)$(prefix)/bin/python-all"
81 ln -sf pythonw$(VERSION)-all "$(DESTDIR)$(prefix)/bin/pythonw-all"
82
83 ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)"
84 ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python$(VERSION)"
85 ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw"
86 ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python"
87
Ronald Oussoren836b0392006-05-14 19:56:34 +000088#
89# Install unix tools in /usr/local/bin. These are just aliases for the
90# actual installation inside the framework.
91#
92installunixtools:
Ronald Oussoren5b787322006-06-06 19:50:24 +000093 if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
94 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
Ronald Oussoren836b0392006-05-14 19:56:34 +000095 fi
Ronald Oussoren5b787322006-06-06 19:50:24 +000096 for fn in python pythonw idle pydoc python-config smtpd.py \
97 python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
Ronald Oussoren5640ce22008-06-05 12:58:24 +000098 pydoc$(VERSION) python$(VERSION)-config smtpd$(VERSION).py ;\
Ronald Oussoren836b0392006-05-14 19:56:34 +000099 do \
Ronald Oussoren5b787322006-06-06 19:50:24 +0000100 ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
Ronald Oussoren836b0392006-05-14 19:56:34 +0000101 done
102
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000103
104# TODO: install symlinks for -32, -64 and -all as well
105installunixtools4way: installunixtools
106
107
Ronald Oussoren5b787322006-06-06 19:50:24 +0000108#
109# Like installunixtools, but only install links to the versioned binaries.
110#
111altinstallunixtools:
112 if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
113 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
114 fi
115 for fn in python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
Mark Dickinson1b6c4c82008-06-25 15:29:32 +0000116 pydoc$(VERSION) python$(VERSION)-config smtpd$(VERSION).py ;\
Ronald Oussoren5b787322006-06-06 19:50:24 +0000117 do \
118 ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
119 done
120
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000121# TODO: -32, -64 and -all variants
122altinstallunixtools4way: altinstallunixtools
Ronald Oussoren5b787322006-06-06 19:50:24 +0000123
Ronald Oussoren836b0392006-05-14 19:56:34 +0000124# By default most tools are installed without a version in their basename, to
125# make it easier to install (and use) several python versions side-by-side move
126# the tools to a version-specific name and add the non-versioned name as an
127# alias.
128install_versionedtools:
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000129 for fn in idle pydoc ;\
Ronald Oussoren836b0392006-05-14 19:56:34 +0000130 do \
Ronald Oussorenda89b992006-05-23 11:04:24 +0000131 if [ -h "$(DESTDIR)$(prefix)/bin/$${fn}" ]; then \
132 continue ;\
133 fi ;\
Ronald Oussoren836b0392006-05-14 19:56:34 +0000134 mv "$(DESTDIR)$(prefix)/bin/$${fn}" "$(DESTDIR)$(prefix)/bin/$${fn}$(VERSION)" ;\
Ronald Oussoren3e3cb792006-05-18 09:04:15 +0000135 ln -sf "$${fn}$(VERSION)" "$(DESTDIR)$(prefix)/bin/$${fn}" ;\
Ronald Oussoren836b0392006-05-14 19:56:34 +0000136 done
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000137 if [ ! -h "$(DESTDIR)$(prefix)/bin/python-config" ]; then \
138 mv "$(DESTDIR)$(prefix)/bin/python-config" "$(DESTDIR)$(prefix)/bin/python$(VERSION)-config" ;\
139 ln -sf "python$(VERSION)-config" "$(DESTDIR)$(prefix)/bin/python-config" ; \
140 fi
Ronald Oussorenda89b992006-05-23 11:04:24 +0000141 if [ ! -h "$(DESTDIR)$(prefix)/bin/smtpd.py" ]; then \
142 mv "$(DESTDIR)$(prefix)/bin/smtpd.py" "$(DESTDIR)$(prefix)/bin/smtpd$(VERSION).py" ;\
143 ln -sf "smtpd$(VERSION).py" "$(DESTDIR)$(prefix)/bin/smtpd.py" ;\
144 fi
Ronald Oussoren836b0392006-05-14 19:56:34 +0000145
146
Ronald Oussorena6790f12006-09-17 19:23:27 +0000147pythonw: $(srcdir)/Tools/pythonw.c Makefile
Ronald Oussoren836b0392006-05-14 19:56:34 +0000148 $(CC) $(LDFLAGS) -o $@ $(srcdir)/Tools/pythonw.c \
Ronald Oussoren580c7fe2008-05-02 19:45:11 +0000149 -DPYTHONWEXECUTABLE='"$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)"'
Ronald Oussoren836b0392006-05-14 19:56:34 +0000150
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000151pythonw-32: $(srcdir)/Tools/pythonw.c Makefile
152 $(CC) $(LDFLAGS) -o $@ -arch i386 -arch ppc $(srcdir)/Tools/pythonw.c \
153 -DPYTHONWEXECUTABLE='"$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)-32"'
154
155pythonw-64: $(srcdir)/Tools/pythonw.c Makefile
156 $(CC) $(LDFLAGS) -o $@ -arch x86_64 -arch ppc64 $(srcdir)/Tools/pythonw.c \
157 -DPYTHONWEXECUTABLE='"$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)-64"'
Ronald Oussoren836b0392006-05-14 19:56:34 +0000158
159install_PythonLauncher:
160 cd PythonLauncher && make install DESTDIR=$(DESTDIR)
161
162install_Python:
163 @if test ! -f $(DOCINDEX); then \
164 echo WARNING: you should run Apple Help Indexing Tool on $(DOCDIR); \
165 fi
166 @for i in "$(PYTHONAPPSDIR)" "$(APPINSTALLDIR)" "$(APPINSTALLDIR)/Contents"; do \
167 if test ! -d "$(DESTDIR)$$i"; then \
168 echo "Creating directory $(DESTDIR)$$i"; \
169 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$$i"; \
170 fi;\
171 done
172 @for i in $(APPSUBDIRS); do \
173 if test ! -d "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; then \
174 echo "Creating directory $(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
175 $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
176 else true; \
177 fi; \
178 done
179 @for d in . $(APPSUBDIRS); \
180 do \
181 a=$(APPTEMPLATE)/$$d; \
182 if test ! -d $$a; then continue; else true; fi; \
183 b="$(DESTDIR)$(APPINSTALLDIR)/Contents/$$d"; \
184 for i in $$a/*; \
185 do \
186 case $$i in \
187 *CVS) ;; \
188 *.svn) ;; \
189 *.py[co]) ;; \
190 *.orig) ;; \
191 *~) ;; \
192 *idx) \
193 echo $(CPMAC) "$$i" $$b; \
194 $(CPMAC) "$$i" "$$b"; \
195 ;; \
196 *) \
197 if test -d $$i; then continue; fi; \
198 if test -x $$i; then \
199 echo $(INSTALL_SCRIPT) "$$i" "$$b"; \
200 $(INSTALL_SCRIPT) "$$i" "$$b"; \
201 else \
202 echo $(INSTALL_DATA) "$$i" "$$b"; \
203 $(INSTALL_DATA) "$$i" "$$b"; \
204 fi;; \
205 esac; \
206 done; \
207 done
Ronald Oussoren580c7fe2008-05-02 19:45:11 +0000208 $(INSTALL_PROGRAM) $(STRIPFLAG) $(BUILDPYTHON) "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)"
Ronald Oussoren836b0392006-05-14 19:56:34 +0000209
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000210install_Python4way: install_Python
211 lipo -extract i386 -extract ppc7400 -output "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)-32" "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)"
212 lipo -extract x86_64 -extract ppc64 -output "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)-64" "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)"
213
214
215
Ronald Oussoren836b0392006-05-14 19:56:34 +0000216install_IDLE:
217 cd IDLE && make install
218
219install_BuildApplet:
Ronald Oussoren5aa0b4d2008-07-22 07:06:33 +0000220 $(RUNSHARED) @ARCH_RUN_32BIT@ $(BUILDPYTHON) $(srcdir)/scripts/BuildApplet.py \
Ronald Oussoren836b0392006-05-14 19:56:34 +0000221 --destroot "$(DESTDIR)" \
Ronald Oussoren5640ce22008-06-05 12:58:24 +0000222 --python=$(prefix)/Resources/Python.app/Contents/MacOS/$(PYTHONFRAMEWORK)`test -f "$(DESTDIR)$(prefix)/Resources/Python.app/Contents/MacOS/$(PYTHONFRAMEWORK)-32" && echo "-32"` \
Ronald Oussoren3e3cb792006-05-18 09:04:15 +0000223 --output "$(DESTDIR)$(PYTHONAPPSDIR)/Build Applet.app" \
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000224 $(srcdir)/scripts/BuildApplet.py
Ronald Oussoren836b0392006-05-14 19:56:34 +0000225
226MACLIBDEST=$(LIBDEST)/plat-mac
227MACTOOLSDEST=$(prefix)/Mac/Tools
228MACTOOLSSRC=$(srcdir)/Mac/Tools
229MACTOOLSSUBDIRS=IDE
230
231installmacsubtree:
232 @for i in $(MACTOOLSDEST); \
233 do \
234 if test ! -d $(DESTDIR)$$i; then \
235 echo "Creating directory $(DESTDIR)$$i"; \
236 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
237 else true; \
238 fi; \
239 done
240 @for d in $(MACTOOLSSUBDIRS); \
241 do \
242 a=$(MACTOOLSSRC)/$$d; \
243 if test ! -d $$a; then continue; else true; fi; \
244 b=$(DESTDIR)$(MACTOOLSDEST)/$$d; \
245 if test ! -d $$b; then \
246 echo "Creating directory $$b"; \
247 $(INSTALL) -d -m $(DIRMODE) $$b; \
248 else true; \
249 fi; \
250 done
251 @for d in $(MACTOOLSSUBDIRS); \
252 do \
253 a=$(MACTOOLSSRC)/$$d; \
254 if test ! -d $$a; then continue; else true; fi; \
255 b=$(DESTDIR)$(MACTOOLSDEST)/$$d; \
256 for i in $$a/*; \
257 do \
258 case $$i in \
259 *CVS) ;; \
260 *.svn) ;; \
261 *.py[co]) ;; \
262 *.orig) ;; \
263 *~) ;; \
264 *.rsrc) \
265 echo $(CPMAC) $$i $$b ; \
266 $(CPMAC) $$i $$b ; \
267 ;; \
268 *) \
269 if test -d $$i; then continue; fi; \
270 if test -x $$i; then \
271 echo $(INSTALL_SCRIPT) $$i $$b; \
272 $(INSTALL_SCRIPT) $$i $$b; \
273 else \
274 echo $(INSTALL_DATA) $$i $$b; \
275 $(INSTALL_DATA) $$i $$b; \
276 fi;; \
277 esac; \
278 done; \
279 done
280
281
Ronald Oussoren5aa0b4d2008-07-22 07:06:33 +0000282 $(RUNSHARED) @ARCH_RUN_32BIT@ $(BUILDPYTHON) $(CACHERSRC) -v $(DESTDIR)$(MACLIBDEST) $(DESTDIR)$(MACTOOLSDEST)
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000283 $(RUNSHARED) $(BUILDPYTHON) -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
284 $(RUNSHARED) $(BUILDPYTHON) -O -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
Ronald Oussoren836b0392006-05-14 19:56:34 +0000285
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000286$(INSTALLED_PYTHONAPP): install_Python
Ronald Oussoren836b0392006-05-14 19:56:34 +0000287
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000288installextras: $(srcdir)/Extras.ReadMe.txt $(srcdir)/Extras.install.py
Ronald Oussoren836b0392006-05-14 19:56:34 +0000289 $(INSTALL) -d "$(DESTDIR)$(PYTHONAPPSDIR)/Extras"
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000290 $(INSTALL) $(srcdir)/Extras.ReadMe.txt "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/ReadMe.txt"
291 $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Extras.install.py $(srcdir)/../Demo \
Ronald Oussoren836b0392006-05-14 19:56:34 +0000292 "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/Demo"
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000293 $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Extras.install.py $(srcdir)/Demo \
294 "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/Demo.Mac"
Ronald Oussoren836b0392006-05-14 19:56:34 +0000295
296
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000297checkapplepython: $(srcdir)/Tools/fixapplepython23.py
298 @if ! $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Tools/fixapplepython23.py -n; then \
Ronald Oussoren836b0392006-05-14 19:56:34 +0000299 echo "* WARNING: Apple-installed Python 2.3 will have trouble building extensions from now on."; \
Ronald Oussoren32f5d8f2006-06-07 19:02:03 +0000300 echo "* WARNING: Run $(srcdir)/Tools/fixapplepython23.py with \"sudo\" to fix this."; \
Ronald Oussoren836b0392006-05-14 19:56:34 +0000301 fi
302
303
304clean:
305 rm pythonw
306 cd PythonLauncher && make clean
307 cd IDLE && make clean
Ronald Oussorena6790f12006-09-17 19:23:27 +0000308
309Makefile: $(srcdir)/Makefile.in ../config.status
310 cd .. && CONFIG_FILES=Mac/Makefile CONFIG_HEADERS= $(SHELL) ./config.status