From 940e970f6e57bc39b77b7a45babd372803af2414 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 2 Aug 2002 15:32:12 +0000 Subject: [PATCH] Also create BuildApplet. It's useful enough as a standalone application. --- Mac/OSX/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index f505bc5f50b..7b4922e8aba 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -44,7 +44,7 @@ RESOURCEDIR=$(srcdir)/Mac/Resources RESOURCEFILE=python.rsrc RFCONVERTER=$(srcdir)/Mac/Lib/applesingle.py -install_all: install_PythonLauncher install_Python install_IDE +install_all: install_PythonLauncher install_Python install_IDE install_BuildApplet install_PythonLauncher: cd $(srcdir)/Mac/OSX/PythonLauncher/PythonLauncher.pbproj ; \ @@ -102,6 +102,11 @@ install_IDE: $(INSTALLED_PYTHONW) --output $(PYTHONAPPSDIR)/PythonIDE.app --noargv \ $(srcdir)/Mac/Tools/IDE/PythonIDE.py +install_BuildApplet: $(INSTALLED_PYTHONW) + $(INSTALLED_PYTHONW) $(srcdir)/Mac/scripts/BuildApplet.py \ + --output $(PYTHONAPPSDIR)/BuildApplet.app \ + $(srcdir)/Mac/scripts/BuildApplet.py + LIBDEST=$(prefix)/Mac/Lib LIBSRC=$(srcdir)/Mac/Lib LIBSUBDIRS= \