Kaydet (Commit) 05797152 authored tarafından Jack Jansen's avatar Jack Jansen

Fixed names of vairous plugins to build, added a couple and added

possibility to create standalone pythons and fat pythons (the latter
not functional yet).
üst f57df795
......@@ -76,9 +76,9 @@ def buildapplet(top, dummy, list):
# XXXX We could also include the builds for stdwin and such here...
PPC_INSTRUCTIONS=[
(buildmwproject, "CWIE", [
":build.macppc.shared:PythonCore.",
":build.macppc.shared:PythonCorePPC.",
":build.macppc.shared:PythonPPC.",
":build.macppc.shared:PythonApplet.",
":build.macppc.shared:PythonAppletPPC.",
])
]
CFM68K_INSTRUCTIONS=[
......@@ -88,22 +88,31 @@ CFM68K_INSTRUCTIONS=[
":build.mac68k.shared:PythonAppletCFM68K.",
])
]
FAT_INSTRUCTIONS=[
(buildmwproject, "CWIE", [
":build.macppc.shared:Python.",
":build.macppc.shared:PythonApplet.",
])
]
PLUGIN_INSTRUCTIONS=[
(buildmwproject, "CWIE", [
":PlugIns:ctbmodule.ppc.",
":PlugIns:ctb.ppc.",
":PlugIns:imgmodules.ppc.",
":PlugIns:macspeechmodule.ppc.",
":PlugIns:macspeech.ppc.",
":PlugIns:toolboxmodules.ppc.",
":PlugIns:wastemodule.ppc.",
":PlugIns:_tkintermodule.ppc.",
":PlugIns:qtmodules.ppc.",
":PlugIns:waste.ppc.",
":PlugIns:_tkinter.ppc.",
])
]
CFM68KPLUGIN_INSTRUCTIONS=[
(buildmwproject, "CWIE", [
":PlugIns:ctbmodule.CFM68K.",
":PlugIns:ctb.CFM68K.",
":PlugIns:imgmodules.ppc.",
":PlugIns:toolboxmodules.CFM68K.",
":PlugIns:wastemodule.CFM68K.",
":PlugIns:_tkintermodule.CFM68K.",
":PlugIns:qtmodules.CFM68K.",
":PlugIns:waste.CFM68K.",
":PlugIns:_tkinter.CFM68K.",
])
]
M68K_INSTRUCTIONS=[
......@@ -111,6 +120,11 @@ M68K_INSTRUCTIONS=[
":build.mac68k.stand:Python68K.",
])
]
PPCSTAND_INSTRUCTIONS=[
(buildmwproject, "CWIE", [
":build.macppc.stand:PythonStandalone.",
])
]
APPLET_INSTRUCTIONS=[
(buildapplet, None, [
":Mac:scripts:EditPythonPrefs.py",
......@@ -124,7 +138,10 @@ ALLINST=[
("PPC shared executable", PPC_INSTRUCTIONS),
("PPC plugin modules", PLUGIN_INSTRUCTIONS),
("CFM68K shared executable", CFM68K_INSTRUCTIONS),
("CFM68K plugin modules", CFM68KPLUGIN_INSTRUCTIONS),
("FAT shared executables", FAT_INSTRUCTIONS),
("68K standalone executable", M68K_INSTRUCTIONS),
("PPC standalone executable", PPCSTAND_INSTRUCTIONS),
("Applets", APPLET_INSTRUCTIONS)
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment