diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-18 23:33:39 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-18 23:33:39 (GMT) |
commit | 4ccf3e14f017d7314bc9cbc44ad6a0eec417e437 (patch) | |
tree | e3ca2316b38c9c2afcb2aa3460968bcca99d00b5 /Mac | |
parent | 5d44b347c9e11c69cf02d9a080ebacfd18c57057 (diff) | |
download | cpython-4ccf3e14f017d7314bc9cbc44ad6a0eec417e437.zip cpython-4ccf3e14f017d7314bc9cbc44ad6a0eec417e437.tar.gz cpython-4ccf3e14f017d7314bc9cbc44ad6a0eec417e437.tar.bz2 |
Undid half of the previous checkin: continue using BuildApplet for most
applets. PackageManager is still built with bundlebuilder itself.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/OSX/Makefile | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 0d2e55c..9b72ebb 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -48,8 +48,8 @@ CACHERSRC=$(srcdir)/Mac/scripts/cachersrc.py compileall=$(srcdir)/Lib/compileall.py bundlebuilder=$(srcdir)/Lib/plat-mac/bundlebuilder.py -installapps: install_PythonLauncher install_Python install_BuildApplet \ - install_PackageManager install_IDE install_IDLE +installapps: install_PythonLauncher install_Python install_BuildApplet install_IDE \ + install_IDLE install_PackageManager install_PythonLauncher: cd $(srcdir)/Mac/OSX/PythonLauncher/PythonLauncher.pbproj ; \ @@ -104,18 +104,12 @@ install_IDE: $(INSTALLED_PYTHONW) echo PythonIDE needs the \"waste\" extension module; \ echo See Mac/OSX/README for details; \ else \ - echo $(INSTALLED_PYTHONW) $(bundlebuilder) \ - --builddir $(PYTHONAPPSDIR)/ \ - --resource $(srcdir)/Mac/Tools/IDE/PythonIDE.rsrc \ - --mainprogram $(srcdir)/Mac/Tools/IDE/PythonIDE.py \ - --iconfile $(srcdir)/Mac/Tools/IDE/PythonIDE.icns \ - --creator Pide build; \ - $(INSTALLED_PYTHONW) $(bundlebuilder) \ - --builddir $(PYTHONAPPSDIR)/ \ - --resource $(srcdir)/Mac/Tools/IDE/PythonIDE.rsrc \ - --mainprogram $(srcdir)/Mac/Tools/IDE/PythonIDE.py \ - --iconfile $(srcdir)/Mac/Tools/IDE/PythonIDE.icns \ - --creator Pide build; \ + echo $(INSTALLED_PYTHONW) $(srcdir)/Mac/scripts/BuildApplet.py \ + --output $(PYTHONAPPSDIR)/PythonIDE.app --noargv \ + $(srcdir)/Mac/Tools/IDE/PythonIDE.py ; \ + $(INSTALLED_PYTHONW) $(srcdir)/Mac/scripts/BuildApplet.py \ + --output $(PYTHONAPPSDIR)/PythonIDE.app --noargv \ + $(srcdir)/Mac/Tools/IDE/PythonIDE.py; \ fi install_PackageManager: $(INSTALLED_PYTHONW) |