diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-30 22:23:40 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-30 22:23:40 (GMT) |
commit | 83f898c86c5ce68eaddd8f729a67ae2d7d0666ec (patch) | |
tree | 26e50187e882dc0a162131ec1b0e44408f9f3e84 /Mac/OSX/Makefile | |
parent | 5efc50d8afd31dc4cb0ef1b58899943eb0e4cb67 (diff) | |
download | cpython-83f898c86c5ce68eaddd8f729a67ae2d7d0666ec.zip cpython-83f898c86c5ce68eaddd8f729a67ae2d7d0666ec.tar.gz cpython-83f898c86c5ce68eaddd8f729a67ae2d7d0666ec.tar.bz2 |
Adapted for the move of Mac/Lib to Lib/plat-mac. Makefile.pre.in now
knows about plat-mac subdirectories, and configure adds a variable
EXTRAPLATDIR. These together take care of copying Lib/plat-mac to
the destination on darwin.
Adding plat-mac is still done with a .pth file which is only created when
you do a framework build. I'm not 100% happy with this, but fixing it
really needs a functional pythonw in non-framework builds, and I don't
think I can do that before 2.3a1 (but I'll try:-).
Diffstat (limited to 'Mac/OSX/Makefile')
-rw-r--r-- | Mac/OSX/Makefile | 84 |
1 files changed, 4 insertions, 80 deletions
diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 2c1c488..41f4acd 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -135,27 +135,12 @@ install_BuildApplet: $(INSTALLED_PYTHONW) --output $(PYTHONAPPSDIR)/BuildApplet.app \ $(srcdir)/Mac/scripts/BuildApplet.py -MACLIBDEST=$(prefix)/Mac/Lib -MACLIBSRC=$(srcdir)/Mac/Lib -MACLIBSUBDIRS= \ - Carbon \ - lib-scriptpackages \ - lib-scriptpackages/_builtinSuites \ - lib-scriptpackages/CodeWarrior \ - lib-scriptpackages/Explorer \ - lib-scriptpackages/Finder \ - lib-scriptpackages/Netscape \ - lib-scriptpackages/StdSuites \ - lib-scriptpackages/Terminal \ - mkcwproject \ - mkcwproject/template \ - mkcwproject/template-carbon \ - mkcwproject/template-ppc +MACLIBDEST=$(LIBDEST)/plat-mac MACTOOLSDEST=$(prefix)/Mac/Tools MACTOOLSSRC=$(srcdir)/Mac/Tools MACTOOLSSUBDIRS=IDE installmacsubtree: - @for i in $(MACLIBDEST) $(MACTOOLSDEST); \ + @for i in $(MACTOOLSDEST); \ do \ if test ! -d $$i; then \ echo "Creating directory $$i"; \ @@ -163,60 +148,6 @@ installmacsubtree: else true; \ fi; \ done - @for d in $(MACLIBSUBDIRS); \ - do \ - a=$(MACLIBSRC)/$$d; \ - if test ! -d $$a; then continue; else true; fi; \ - b=$(MACLIBDEST)/$$d; \ - if test ! -d $$b; then \ - echo "Creating directory $$b"; \ - $(INSTALL) -d -m $(DIRMODE) $$b; \ - else true; \ - fi; \ - done - @for i in $(MACLIBSRC)/*.py; \ - do \ - if test -x $$i; then \ - $(INSTALL_SCRIPT) $$i $(MACLIBDEST); \ - echo $(INSTALL_SCRIPT) $$i $(MACLIBDEST); \ - else \ - $(INSTALL_DATA) $$i $(MACLIBDEST); \ - echo $(INSTALL_DATA) $$i $(MACLIBDEST); \ - fi; \ - done - @for i in $(MACLIBSRC)/*.rsrc; \ - do \ - echo $(CPMAC) $$i $(MACLIBDEST) ; \ - $(CPMAC) $$i $(MACLIBDEST) ; \ - done - @for d in $(MACLIBSUBDIRS); \ - do \ - a=$(MACLIBSRC)/$$d; \ - if test ! -d $$a; then continue; else true; fi; \ - b=$(MACLIBDEST)/$$d; \ - for i in $$a/*; \ - do \ - case $$i in \ - *CVS) ;; \ - *.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 @for d in $(MACTOOLSSUBDIRS); \ do \ a=$(MACTOOLSSRC)/$$d; \ @@ -260,8 +191,8 @@ installmacsubtree: $(INSTALL_DATA) $(PTHFILE) $(LIBDEST)/site-packages/ $(PYTHON) $(CACHERSRC) -v $(MACLIBDEST) $(MACTOOLSDEST) - $(PYTHON) -Wi -tt $(compileall) -x badsyntax $(MACLIBDEST) $(MACTOOLSDEST) - $(PYTHON) -O -Wi -tt $(compileall) -x badsyntax $(MACLIBDEST) $(MACTOOLSDEST) + $(PYTHON) -Wi -tt $(compileall) -x badsyntax $(MACTOOLSDEST) + $(PYTHON) -O -Wi -tt $(compileall) -x badsyntax $(MACTOOLSDEST) # # We use the full name here in stead of $(INSTALLED_PYTHONW), because @@ -278,10 +209,3 @@ installunixtools: $(INSTALLED_PYTHON) $(INSTALLED_PYTHONW) echo "#!/bin/sh" > pythonw.sh echo "exec \"$(INSTALLED_PYTHONW)\" \"\$$@\"" >> pythonw.sh $(INSTALL) pythonw.sh $(bindir)/pythonw - -# This is for development purposes: create a Mac.pth that refers to the source -# directories -dontinstallmacsubtree: - l=`cd $(srcdir)/Mac/Lib; pwd`; \ - echo $$l > $(MACLIBDEST)/site-packages/Mac.pth ; \ - echo $$l/lib-scriptpackages >> $(MACLIBDEST)/site-packages/Mac.pth |