2006-05-14 16:56:34 -03:00
|
|
|
# This file can be invoked from the various frameworkinstall... targets in the
|
|
|
|
# main Makefile. The next couple of variables are overridden on the
|
|
|
|
# commandline in that case.
|
|
|
|
|
|
|
|
VERSION=@VERSION@
|
2006-06-07 16:02:03 -03:00
|
|
|
builddir = ..
|
|
|
|
srcdir=@srcdir@
|
2006-06-11 17:23:29 -03:00
|
|
|
prefix=@prefix@
|
2006-05-14 16:56:34 -03:00
|
|
|
LIBDEST=$(prefix)/lib/python$(VERSION)
|
2006-06-07 16:02:03 -03:00
|
|
|
RUNSHARED=@RUNSHARED@
|
|
|
|
BUILDEXE=@BUILDEXEEXT@
|
|
|
|
BUILDPYTHON=$(builddir)/python$(BUILDEXE)
|
2006-05-14 16:56:34 -03:00
|
|
|
DESTDIR=
|
2006-06-07 16:02:03 -03:00
|
|
|
LDFLAGS=@LDFLAGS@
|
2006-06-06 16:50:24 -03:00
|
|
|
FRAMEWORKUNIXTOOLSPREFIX=@FRAMEWORKUNIXTOOLSPREFIX@
|
2008-05-02 16:45:11 -03:00
|
|
|
PYTHONFRAMEWORK=@PYTHONFRAMEWORK@
|
2009-03-30 16:56:25 -03:00
|
|
|
PYTHONFRAMEWORKIDENTIFIER=@PYTHONFRAMEWORKIDENTIFIER@
|
2009-12-24 09:30:58 -04:00
|
|
|
LIPO_32BIT_FLAGS=@LIPO_32BIT_FLAGS@
|
2010-01-17 12:25:57 -04:00
|
|
|
CC=@CC@
|
2008-05-02 16:45:11 -03:00
|
|
|
|
2006-05-14 16:56:34 -03:00
|
|
|
|
|
|
|
# These are normally glimpsed from the previous set
|
2006-06-07 16:02:03 -03:00
|
|
|
bindir=$(prefix)/bin
|
2008-05-02 16:45:11 -03:00
|
|
|
PYTHONAPPSDIR=/Applications/$(PYTHONFRAMEWORK) $(VERSION)
|
2006-05-14 16:56:34 -03:00
|
|
|
APPINSTALLDIR=$(prefix)/Resources/Python.app
|
|
|
|
|
|
|
|
# Variables for installing the "normal" unix binaries
|
2008-05-02 16:45:11 -03:00
|
|
|
INSTALLED_PYTHONAPP=$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)
|
2006-05-14 16:56:34 -03:00
|
|
|
|
|
|
|
# Items more-or-less copied from the main Makefile
|
|
|
|
DIRMODE=755
|
|
|
|
FILEMODE=644
|
|
|
|
INSTALL=@INSTALL@
|
|
|
|
INSTALL_SYMLINK=ln -fsn
|
|
|
|
INSTALL_PROGRAM=@INSTALL_PROGRAM@
|
|
|
|
INSTALL_SCRIPT= @INSTALL_SCRIPT@
|
|
|
|
INSTALL_DATA=@INSTALL_DATA@
|
|
|
|
LN=@LN@
|
|
|
|
STRIPFLAG=-s
|
|
|
|
CPMAC=/Developer/Tools/CpMac
|
|
|
|
|
2006-06-07 16:02:03 -03:00
|
|
|
APPTEMPLATE=$(srcdir)/Resources/app
|
2009-05-19 17:12:17 -03:00
|
|
|
APPSUBDIRS=MacOS Resources
|
2006-06-07 16:02:03 -03:00
|
|
|
CACHERSRC=$(srcdir)/scripts/cachersrc.py
|
|
|
|
compileall=$(srcdir)/../Lib/compileall.py
|
2006-05-14 16:56:34 -03:00
|
|
|
|
2009-12-24 09:30:58 -04:00
|
|
|
installapps: install_Python install_pythonw install_BuildApplet install_PythonLauncher \
|
|
|
|
install_IDLE checkapplepython install_versionedtools
|
2008-06-05 09:58:24 -03:00
|
|
|
|
|
|
|
|
2006-05-14 16:56:34 -03:00
|
|
|
install_pythonw: pythonw
|
|
|
|
$(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)"
|
|
|
|
$(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/python$(VERSION)"
|
|
|
|
ln -sf python$(VERSION) "$(DESTDIR)$(prefix)/bin/python"
|
|
|
|
ln -sf pythonw$(VERSION) "$(DESTDIR)$(prefix)/bin/pythonw"
|
2009-12-24 09:30:58 -04:00
|
|
|
ifneq ($(LIPO_32BIT_FLAGS),)
|
|
|
|
lipo $(LIPO_32BIT_FLAGS) -output $(DESTDIR)$(prefix)/bin/python$(VERSION)-32 pythonw
|
|
|
|
lipo $(LIPO_32BIT_FLAGS) -output $(DESTDIR)$(prefix)/bin/pythonw$(VERSION)-32 pythonw
|
2008-06-05 09:58:24 -03:00
|
|
|
ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python-32"
|
|
|
|
ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw-32"
|
2009-12-24 09:30:58 -04:00
|
|
|
endif
|
2008-06-05 09:58:24 -03:00
|
|
|
|
|
|
|
|
2006-05-14 16:56:34 -03:00
|
|
|
#
|
|
|
|
# Install unix tools in /usr/local/bin. These are just aliases for the
|
|
|
|
# actual installation inside the framework.
|
|
|
|
#
|
|
|
|
installunixtools:
|
2006-06-06 16:50:24 -03:00
|
|
|
if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
|
|
|
|
$(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
|
2006-05-14 16:56:34 -03:00
|
|
|
fi
|
2006-06-06 16:50:24 -03:00
|
|
|
for fn in python pythonw idle pydoc python-config smtpd.py \
|
|
|
|
python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
|
2008-06-05 09:58:24 -03:00
|
|
|
pydoc$(VERSION) python$(VERSION)-config smtpd$(VERSION).py ;\
|
2006-05-14 16:56:34 -03:00
|
|
|
do \
|
2006-06-06 16:50:24 -03:00
|
|
|
ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
|
2006-05-14 16:56:34 -03:00
|
|
|
done
|
|
|
|
|
2008-06-05 09:58:24 -03:00
|
|
|
|
2006-06-06 16:50:24 -03:00
|
|
|
#
|
|
|
|
# Like installunixtools, but only install links to the versioned binaries.
|
|
|
|
#
|
|
|
|
altinstallunixtools:
|
|
|
|
if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
|
|
|
|
$(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
|
|
|
|
fi
|
|
|
|
for fn in python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
|
2008-06-25 12:29:32 -03:00
|
|
|
pydoc$(VERSION) python$(VERSION)-config smtpd$(VERSION).py ;\
|
2006-06-06 16:50:24 -03:00
|
|
|
do \
|
|
|
|
ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
|
|
|
|
done
|
|
|
|
|
2006-05-14 16:56:34 -03:00
|
|
|
# By default most tools are installed without a version in their basename, to
|
|
|
|
# make it easier to install (and use) several python versions side-by-side move
|
|
|
|
# the tools to a version-specific name and add the non-versioned name as an
|
|
|
|
# alias.
|
|
|
|
install_versionedtools:
|
2008-06-05 09:58:24 -03:00
|
|
|
for fn in idle pydoc ;\
|
2006-05-14 16:56:34 -03:00
|
|
|
do \
|
2006-05-23 08:04:24 -03:00
|
|
|
if [ -h "$(DESTDIR)$(prefix)/bin/$${fn}" ]; then \
|
|
|
|
continue ;\
|
|
|
|
fi ;\
|
2006-05-14 16:56:34 -03:00
|
|
|
mv "$(DESTDIR)$(prefix)/bin/$${fn}" "$(DESTDIR)$(prefix)/bin/$${fn}$(VERSION)" ;\
|
2006-05-18 06:04:15 -03:00
|
|
|
ln -sf "$${fn}$(VERSION)" "$(DESTDIR)$(prefix)/bin/$${fn}" ;\
|
2006-05-14 16:56:34 -03:00
|
|
|
done
|
2008-06-05 09:58:24 -03:00
|
|
|
if [ ! -h "$(DESTDIR)$(prefix)/bin/python-config" ]; then \
|
|
|
|
mv "$(DESTDIR)$(prefix)/bin/python-config" "$(DESTDIR)$(prefix)/bin/python$(VERSION)-config" ;\
|
|
|
|
ln -sf "python$(VERSION)-config" "$(DESTDIR)$(prefix)/bin/python-config" ; \
|
|
|
|
fi
|
2006-05-23 08:04:24 -03:00
|
|
|
if [ ! -h "$(DESTDIR)$(prefix)/bin/smtpd.py" ]; then \
|
|
|
|
mv "$(DESTDIR)$(prefix)/bin/smtpd.py" "$(DESTDIR)$(prefix)/bin/smtpd$(VERSION).py" ;\
|
|
|
|
ln -sf "smtpd$(VERSION).py" "$(DESTDIR)$(prefix)/bin/smtpd.py" ;\
|
|
|
|
fi
|
2006-05-14 16:56:34 -03:00
|
|
|
|
|
|
|
|
2006-09-17 16:23:27 -03:00
|
|
|
pythonw: $(srcdir)/Tools/pythonw.c Makefile
|
2010-03-07 05:04:06 -04:00
|
|
|
$(CC) $(LDFLAGS) -DPYTHONFRAMEWORK='"$(PYTHONFRAMEWORK)"' -o $@ $(srcdir)/Tools/pythonw.c -I.. -I$(srcdir)/../Include ../$(PYTHONFRAMEWORK).framework/Versions/$(VERSION)/$(PYTHONFRAMEWORK)
|
2006-05-14 16:56:34 -03:00
|
|
|
|
|
|
|
install_PythonLauncher:
|
|
|
|
cd PythonLauncher && make install DESTDIR=$(DESTDIR)
|
|
|
|
|
|
|
|
install_Python:
|
|
|
|
@for i in "$(PYTHONAPPSDIR)" "$(APPINSTALLDIR)" "$(APPINSTALLDIR)/Contents"; do \
|
|
|
|
if test ! -d "$(DESTDIR)$$i"; then \
|
|
|
|
echo "Creating directory $(DESTDIR)$$i"; \
|
|
|
|
$(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$$i"; \
|
|
|
|
fi;\
|
|
|
|
done
|
|
|
|
@for i in $(APPSUBDIRS); do \
|
|
|
|
if test ! -d "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; then \
|
|
|
|
echo "Creating directory $(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
|
|
|
|
$(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
|
|
|
|
else true; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
@for d in . $(APPSUBDIRS); \
|
|
|
|
do \
|
|
|
|
a=$(APPTEMPLATE)/$$d; \
|
|
|
|
if test ! -d $$a; then continue; else true; fi; \
|
|
|
|
b="$(DESTDIR)$(APPINSTALLDIR)/Contents/$$d"; \
|
|
|
|
for i in $$a/*; \
|
|
|
|
do \
|
|
|
|
case $$i in \
|
|
|
|
*CVS) ;; \
|
|
|
|
*.svn) ;; \
|
|
|
|
*.py[co]) ;; \
|
|
|
|
*.orig) ;; \
|
|
|
|
*~) ;; \
|
|
|
|
*idx) \
|
|
|
|
echo $(CPMAC) "$$i" $$b; \
|
|
|
|
$(CPMAC) "$$i" "$$b"; \
|
|
|
|
;; \
|
|
|
|
*) \
|
|
|
|
if test -d $$i; then continue; fi; \
|
|
|
|
if test -x $$i; then \
|
|
|
|
echo $(INSTALL_SCRIPT) "$$i" "$$b"; \
|
|
|
|
$(INSTALL_SCRIPT) "$$i" "$$b"; \
|
|
|
|
else \
|
|
|
|
echo $(INSTALL_DATA) "$$i" "$$b"; \
|
|
|
|
$(INSTALL_DATA) "$$i" "$$b"; \
|
|
|
|
fi;; \
|
|
|
|
esac; \
|
|
|
|
done; \
|
|
|
|
done
|
2008-05-02 16:45:11 -03:00
|
|
|
$(INSTALL_PROGRAM) $(STRIPFLAG) $(BUILDPYTHON) "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/$(PYTHONFRAMEWORK)"
|
2009-03-30 16:56:25 -03:00
|
|
|
sed -e "s!%bundleid%!$(PYTHONFRAMEWORKIDENTIFIER)!g" \
|
|
|
|
-e "s!%version%!`$(RUNSHARED) $(BUILDPYTHON) \
|
|
|
|
-c 'import platform; print(platform.python_version())'`!g" \
|
|
|
|
< "$(DESTDIR)$(APPINSTALLDIR)/Contents/Info.plist.in" \
|
|
|
|
> "$(DESTDIR)$(APPINSTALLDIR)/Contents/Info.plist"
|
|
|
|
rm "$(DESTDIR)$(APPINSTALLDIR)/Contents/Info.plist.in"
|
2006-05-14 16:56:34 -03:00
|
|
|
|
2008-06-05 09:58:24 -03:00
|
|
|
|
2006-05-14 16:56:34 -03:00
|
|
|
install_IDLE:
|
|
|
|
cd IDLE && make install
|
|
|
|
|
|
|
|
install_BuildApplet:
|
2008-07-22 04:06:33 -03:00
|
|
|
$(RUNSHARED) @ARCH_RUN_32BIT@ $(BUILDPYTHON) $(srcdir)/scripts/BuildApplet.py \
|
2006-05-14 16:56:34 -03:00
|
|
|
--destroot "$(DESTDIR)" \
|
2009-12-24 09:30:58 -04:00
|
|
|
--python=$(prefix)/Resources/Python.app/Contents/MacOS/Python \
|
2006-05-18 06:04:15 -03:00
|
|
|
--output "$(DESTDIR)$(PYTHONAPPSDIR)/Build Applet.app" \
|
2006-06-07 16:02:03 -03:00
|
|
|
$(srcdir)/scripts/BuildApplet.py
|
2009-12-24 09:30:58 -04:00
|
|
|
ifneq ($(LIPO_32BIT_FLAGS),)
|
|
|
|
rm "$(DESTDIR)$(PYTHONAPPSDIR)/Build Applet.app/Contents/MacOS/Python"
|
|
|
|
lipo $(LIPO_32BIT_FLAGS) -output "$(DESTDIR)$(PYTHONAPPSDIR)/Build Applet.app/Contents/MacOS/Python" $(BUILDPYTHON)
|
|
|
|
endif
|
2006-05-14 16:56:34 -03:00
|
|
|
|
|
|
|
MACLIBDEST=$(LIBDEST)/plat-mac
|
|
|
|
MACTOOLSDEST=$(prefix)/Mac/Tools
|
|
|
|
MACTOOLSSRC=$(srcdir)/Mac/Tools
|
|
|
|
MACTOOLSSUBDIRS=IDE
|
|
|
|
|
|
|
|
installmacsubtree:
|
|
|
|
@for i in $(MACTOOLSDEST); \
|
|
|
|
do \
|
|
|
|
if test ! -d $(DESTDIR)$$i; then \
|
|
|
|
echo "Creating directory $(DESTDIR)$$i"; \
|
|
|
|
$(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
|
|
|
|
else true; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
@for d in $(MACTOOLSSUBDIRS); \
|
|
|
|
do \
|
|
|
|
a=$(MACTOOLSSRC)/$$d; \
|
|
|
|
if test ! -d $$a; then continue; else true; fi; \
|
|
|
|
b=$(DESTDIR)$(MACTOOLSDEST)/$$d; \
|
|
|
|
if test ! -d $$b; then \
|
|
|
|
echo "Creating directory $$b"; \
|
|
|
|
$(INSTALL) -d -m $(DIRMODE) $$b; \
|
|
|
|
else true; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
@for d in $(MACTOOLSSUBDIRS); \
|
|
|
|
do \
|
|
|
|
a=$(MACTOOLSSRC)/$$d; \
|
|
|
|
if test ! -d $$a; then continue; else true; fi; \
|
|
|
|
b=$(DESTDIR)$(MACTOOLSDEST)/$$d; \
|
|
|
|
for i in $$a/*; \
|
|
|
|
do \
|
|
|
|
case $$i in \
|
|
|
|
*CVS) ;; \
|
|
|
|
*.svn) ;; \
|
|
|
|
*.py[co]) ;; \
|
|
|
|
*.orig) ;; \
|
|
|
|
*~) ;; \
|
|
|
|
*.rsrc) \
|
|
|
|
echo $(CPMAC) $$i $$b ; \
|
|
|
|
$(CPMAC) $$i $$b ; \
|
|
|
|
;; \
|
|
|
|
*) \
|
|
|
|
if test -d $$i; then continue; fi; \
|
|
|
|
if test -x $$i; then \
|
|
|
|
echo $(INSTALL_SCRIPT) $$i $$b; \
|
|
|
|
$(INSTALL_SCRIPT) $$i $$b; \
|
|
|
|
else \
|
|
|
|
echo $(INSTALL_DATA) $$i $$b; \
|
|
|
|
$(INSTALL_DATA) $$i $$b; \
|
|
|
|
fi;; \
|
|
|
|
esac; \
|
|
|
|
done; \
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2008-07-22 04:06:33 -03:00
|
|
|
$(RUNSHARED) @ARCH_RUN_32BIT@ $(BUILDPYTHON) $(CACHERSRC) -v $(DESTDIR)$(MACLIBDEST) $(DESTDIR)$(MACTOOLSDEST)
|
2006-06-07 16:02:03 -03:00
|
|
|
$(RUNSHARED) $(BUILDPYTHON) -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
|
|
|
|
$(RUNSHARED) $(BUILDPYTHON) -O -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST)
|
2006-05-14 16:56:34 -03:00
|
|
|
|
2006-06-07 16:02:03 -03:00
|
|
|
$(INSTALLED_PYTHONAPP): install_Python
|
2006-05-14 16:56:34 -03:00
|
|
|
|
2006-06-07 16:02:03 -03:00
|
|
|
installextras: $(srcdir)/Extras.ReadMe.txt $(srcdir)/Extras.install.py
|
2006-05-14 16:56:34 -03:00
|
|
|
$(INSTALL) -d "$(DESTDIR)$(PYTHONAPPSDIR)/Extras"
|
2006-06-07 16:02:03 -03:00
|
|
|
$(INSTALL) $(srcdir)/Extras.ReadMe.txt "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/ReadMe.txt"
|
|
|
|
$(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Extras.install.py $(srcdir)/../Demo \
|
2006-05-14 16:56:34 -03:00
|
|
|
"$(DESTDIR)$(PYTHONAPPSDIR)/Extras/Demo"
|
2006-06-07 16:02:03 -03:00
|
|
|
$(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Extras.install.py $(srcdir)/Demo \
|
|
|
|
"$(DESTDIR)$(PYTHONAPPSDIR)/Extras/Demo.Mac"
|
2006-05-14 16:56:34 -03:00
|
|
|
|
|
|
|
|
2006-06-07 16:02:03 -03:00
|
|
|
checkapplepython: $(srcdir)/Tools/fixapplepython23.py
|
|
|
|
@if ! $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Tools/fixapplepython23.py -n; then \
|
2006-05-14 16:56:34 -03:00
|
|
|
echo "* WARNING: Apple-installed Python 2.3 will have trouble building extensions from now on."; \
|
2006-06-07 16:02:03 -03:00
|
|
|
echo "* WARNING: Run $(srcdir)/Tools/fixapplepython23.py with \"sudo\" to fix this."; \
|
2006-05-14 16:56:34 -03:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm pythonw
|
|
|
|
cd PythonLauncher && make clean
|
|
|
|
cd IDLE && make clean
|
2006-09-17 16:23:27 -03:00
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in ../config.status
|
|
|
|
cd .. && CONFIG_FILES=Mac/Makefile CONFIG_HEADERS= $(SHELL) ./config.status
|