@@ -76,9 +76,9 @@ def buildapplet(top, dummy, list):
7676# XXXX We could also include the builds for stdwin and such here...
7777PPC_INSTRUCTIONS = [
7878 (buildmwproject , "CWIE" , [
79- ":build.macppc.shared:PythonCore .µ" ,
79+ ":build.macppc.shared:PythonCorePPC .µ" ,
8080 ":build.macppc.shared:PythonPPC.µ" ,
81- ":build.macppc.shared:PythonApplet .µ" ,
81+ ":build.macppc.shared:PythonAppletPPC .µ" ,
8282 ])
8383]
8484CFM68K_INSTRUCTIONS = [
@@ -88,29 +88,43 @@ def buildapplet(top, dummy, list):
8888 ":build.mac68k.shared:PythonAppletCFM68K.µ" ,
8989 ])
9090]
91+ FAT_INSTRUCTIONS = [
92+ (buildmwproject , "CWIE" , [
93+ ":build.macppc.shared:Python.µ" ,
94+ ":build.macppc.shared:PythonApplet.µ" ,
95+ ])
96+ ]
9197PLUGIN_INSTRUCTIONS = [
9298 (buildmwproject , "CWIE" , [
93- ":PlugIns:ctbmodule .ppc.µ" ,
99+ ":PlugIns:ctb .ppc.µ" ,
94100 ":PlugIns:imgmodules.ppc.µ" ,
95- ":PlugIns:macspeechmodule .ppc.µ" ,
101+ ":PlugIns:macspeech .ppc.µ" ,
96102 ":PlugIns:toolboxmodules.ppc.µ" ,
97- ":PlugIns:wastemodule.ppc.µ" ,
98- ":PlugIns:_tkintermodule.ppc.µ" ,
103+ ":PlugIns:qtmodules.ppc.µ" ,
104+ ":PlugIns:waste.ppc.µ" ,
105+ ":PlugIns:_tkinter.ppc.µ" ,
99106 ])
100107]
101108CFM68KPLUGIN_INSTRUCTIONS = [
102109 (buildmwproject , "CWIE" , [
103- ":PlugIns:ctbmodule.CFM68K.µ" ,
110+ ":PlugIns:ctb.CFM68K.µ" ,
111+ ":PlugIns:imgmodules.ppc.µ" ,
104112 ":PlugIns:toolboxmodules.CFM68K.µ" ,
105- ":PlugIns:wastemodule.CFM68K.µ" ,
106- ":PlugIns:_tkintermodule.CFM68K.µ" ,
113+ ":PlugIns:qtmodules.CFM68K.µ" ,
114+ ":PlugIns:waste.CFM68K.µ" ,
115+ ":PlugIns:_tkinter.CFM68K.µ" ,
107116 ])
108117]
109118M68K_INSTRUCTIONS = [
110119 (buildmwproject , "CWIE" , [
111120 ":build.mac68k.stand:Python68K.µ" ,
112121 ])
113122]
123+ PPCSTAND_INSTRUCTIONS = [
124+ (buildmwproject , "CWIE" , [
125+ ":build.macppc.stand:PythonStandalone.µ" ,
126+ ])
127+ ]
114128APPLET_INSTRUCTIONS = [
115129 (buildapplet , None , [
116130 ":Mac:scripts:EditPythonPrefs.py" ,
@@ -124,7 +138,10 @@ def buildapplet(top, dummy, list):
124138 ("PPC shared executable" , PPC_INSTRUCTIONS ),
125139 ("PPC plugin modules" , PLUGIN_INSTRUCTIONS ),
126140 ("CFM68K shared executable" , CFM68K_INSTRUCTIONS ),
141+ ("CFM68K plugin modules" , CFM68KPLUGIN_INSTRUCTIONS ),
142+ ("FAT shared executables" , FAT_INSTRUCTIONS ),
127143 ("68K standalone executable" , M68K_INSTRUCTIONS ),
144+ ("PPC standalone executable" , PPCSTAND_INSTRUCTIONS ),
128145 ("Applets" , APPLET_INSTRUCTIONS )
129146]
130147
0 commit comments