diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-08-20 16:35:30 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-08-20 16:35:30 (GMT) |
commit | 25b361fc1423b68c02b691ba523c263e9dc1c641 (patch) | |
tree | 09d28b26c23d2df84af7afd9765861cf525a79b5 /Mac/scripts/fullbuild.py | |
parent | e420178ba602bad8b3aca4c156bc5fdeaa3f6ab5 (diff) | |
download | cpython-25b361fc1423b68c02b691ba523c263e9dc1c641.zip cpython-25b361fc1423b68c02b691ba523c263e9dc1c641.tar.gz cpython-25b361fc1423b68c02b691ba523c263e9dc1c641.tar.bz2 |
Adapted for cfm68k, new names and split off of qt.
Diffstat (limited to 'Mac/scripts/fullbuild.py')
-rw-r--r-- | Mac/scripts/fullbuild.py | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py index 4abd079..f092a1d 100644 --- a/Mac/scripts/fullbuild.py +++ b/Mac/scripts/fullbuild.py @@ -81,14 +81,29 @@ PPC_INSTRUCTIONS=[ ":build.macppc.shared:PythonApplet.µ", ]) ] +CFM68K_INSTRUCTIONS=[ + (buildmwproject, "CWIE", [ + ":build.mac68k.shared:PythonCoreCFM68K.µ", + ":build.mac68k.shared:PythonCFM68K.µ", + ":build.mac68k.shared:PythonAppletCFM68K.µ", + ]) +] PLUGIN_INSTRUCTIONS=[ (buildmwproject, "CWIE", [ - ":PlugIns:ctbmodule.µ", - ":PlugIns:imgmodules.µ", - ":PlugIns:macspeechmodule.µ", - ":PlugIns:toolboxmodules.µ", - ":PlugIns:wastemodule.µ", - ":PlugIns:_tkintermodule.µ", + ":PlugIns:ctbmodule.ppc.µ", + ":PlugIns:imgmodules.ppc.µ", + ":PlugIns:macspeechmodule.ppc.µ", + ":PlugIns:toolboxmodules.ppc.µ", + ":PlugIns:wastemodule.ppc.µ", + ":PlugIns:_tkintermodule.ppc.µ", + ]) +] +CFM68KPLUGIN_INSTRUCTIONS=[ + (buildmwproject, "CWIE", [ + ":PlugIns:ctbmodule.CFM68K.µ", + ":PlugIns:toolboxmodules.CFM68K.µ", + ":PlugIns:wastemodule.CFM68K.µ", + ":PlugIns:_tkintermodule.CFM68K.µ", ]) ] M68K_INSTRUCTIONS=[ @@ -108,8 +123,9 @@ APPLET_INSTRUCTIONS=[ ALLINST=[ ("PPC shared executable", PPC_INSTRUCTIONS), ("PPC plugin modules", PLUGIN_INSTRUCTIONS), - ("68K executable", M68K_INSTRUCTIONS), - ("PPC applets", APPLET_INSTRUCTIONS) + ("CFM68K shared executable", CFM68K_INSTRUCTIONS), + ("68K standalone executable", M68K_INSTRUCTIONS), + ("Applets", APPLET_INSTRUCTIONS) ] def main(): |