summaryrefslogtreecommitdiffstats
path: root/Mac/scripts
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-04-10 14:51:14 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-04-10 14:51:14 (GMT)
commitf04fa7259d2404a1b262b13c7ed8bb0884a22887 (patch)
tree394b43b92cbafe0986b509bc157dc216b1e153e4 /Mac/scripts
parent3422f2cae26104202ebee4fd4a768411dff67dcd (diff)
downloadcpython-f04fa7259d2404a1b262b13c7ed8bb0884a22887.zip
cpython-f04fa7259d2404a1b262b13c7ed8bb0884a22887.tar.gz
cpython-f04fa7259d2404a1b262b13c7ed8bb0884a22887.tar.bz2
Changed to allow the user to do partial builds
Diffstat (limited to 'Mac/scripts')
-rw-r--r--Mac/scripts/fullbuild.py40
1 files changed, 33 insertions, 7 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py
index 422a1c9..71edb55 100644
--- a/Mac/scripts/fullbuild.py
+++ b/Mac/scripts/fullbuild.py
@@ -13,6 +13,7 @@ import os
import sys
import macfs
import MacOS
+import EasyDialogs
import addpack
import aetools
@@ -27,11 +28,14 @@ import mkapplet
class MwShell(aetools.TalkTo, Metrowerks_Shell_Suite, Required_Suite):
pass
+RUNNING=[]
def buildmwproject(top, creator, projects):
"""Build projects with an MW compiler"""
- print 'Please start project mgr with signature', creator,'-'
- sys.stdin.readline()
+ if not creator in RUNNING:
+ print 'Please start project mgr with signature', creator,'-'
+ sys.stdin.readline()
+ RUNNING.append(creator)
try:
mgr = MwShell(creator)
except 'foo':
@@ -49,7 +53,7 @@ def buildmwproject(top, creator, projects):
except MacOS.Error, arg:
print '** Failed. Possible error:', arg
mgr.Close_Project()
- mgr.quit()
+## mgr.quit()
def buildapplet(top, dummy, list):
"""Create a PPC python applet"""
@@ -70,21 +74,29 @@ def buildapplet(top, dummy, list):
#
# The build instructions. Entries are (routine, arg, list-of-files)
# XXXX We could also include the builds for stdwin and such here...
-INSTRUCTIONS=[
+PPC_INSTRUCTIONS=[
(buildmwproject, "CWIE", [
":build.macppc.shared:PythonCore.µ",
":build.macppc.shared:PythonPPC.µ",
":build.macppc.shared:PythonApplet.µ",
-
+ ])
+]
+PLUGIN_INSTRUCTIONS=[
+ (buildmwproject, "CWIE", [
":PlugIns:ctbmodule.µ",
":PlugIns:imgmodules.µ",
":PlugIns:macspeechmodule.µ",
":PlugIns:mactcpmodules.µ",
":PlugIns:stdwinmodule.µ",
":PlugIns:toolboxmodules.µ",
-
+ ])
+]
+M68K_INSTRUCTIONS=[
+ (buildmwproject, "CWIE", [
":build.mac68k.stand:Python68K.µ",
- ]),
+ ])
+]
+APPLET_INSTRUCTIONS=[
(buildapplet, None, [
":Mac:scripts:EditPythonPrefs.py",
":Mac:scripts:mkapplet.py",
@@ -92,12 +104,26 @@ INSTRUCTIONS=[
":Mac:scripts:MkPluginAliases.py"
])
]
+
+ALLINST=[
+ ("PPC shared executable", PPC_INSTRUCTIONS),
+ ("PPC plugin modules", PLUGIN_INSTRUCTIONS),
+ ("68K executable", M68K_INSTRUCTIONS),
+ ("PPC applets", APPLET_INSTRUCTIONS)
+]
def main():
dir, ok = macfs.GetDirectory('Python source folder:')
if not ok:
sys.exit(0)
dir = dir.as_pathname()
+ INSTRUCTIONS = []
+ for string, inst in ALLINST:
+ answer = EasyDialogs.AskYesNoCancel("Build %s?"%string, 1)
+ if answer < 0:
+ sys.exit(0)
+ if answer:
+ INSTRUCTIONS = INSTRUCTIONS + inst
for routine, arg, list in INSTRUCTIONS:
routine(dir, arg, list)
print "All done!"