diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-01-07 16:24:18 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-01-07 16:24:18 (GMT) |
commit | 52e87f377311464ac29a1ab7f7b582642bdb6452 (patch) | |
tree | 34048e38c40f3c75cf61e834c9d40cddec3efd0c /Mac/scripts | |
parent | b28efe669c379466014124e6c1fdad102fe78156 (diff) | |
download | cpython-52e87f377311464ac29a1ab7f7b582642bdb6452.zip cpython-52e87f377311464ac29a1ab7f7b582642bdb6452.tar.gz cpython-52e87f377311464ac29a1ab7f7b582642bdb6452.tar.bz2 |
Added icglue modules and (optionally) NumPy and PIL extensions
Diffstat (limited to 'Mac/scripts')
-rw-r--r-- | Mac/scripts/fullbuild.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py index 5adc785..378049c 100644 --- a/Mac/scripts/fullbuild.py +++ b/Mac/scripts/fullbuild.py @@ -88,6 +88,7 @@ PLUGIN_INSTRUCTIONS=[ (buildmwproject, "CWIE", [ ":PlugIns:ctb.ppc.µ", ":PlugIns:gdbm.ppc.µ", + ":PlugIns:icglue.ppc.µ", ":PlugIns:imgmodules.ppc.µ", ":PlugIns:macspeech.ppc.µ", ":PlugIns:toolboxmodules.ppc.µ", @@ -100,6 +101,7 @@ CFM68KPLUGIN_INSTRUCTIONS=[ (buildmwproject, "CWIE", [ ":PlugIns:ctb.CFM68K.µ", ":PlugIns:gdbm.CFM68K.µ", + ":PlugIns:icglue.CFM68K.µ", ":PlugIns:imgmodules.CFM68K.µ", ":PlugIns:toolboxmodules.CFM68K.µ", ":PlugIns:qtmodules.CFM68K.µ", @@ -117,6 +119,14 @@ PPCSTAND_INSTRUCTIONS=[ ":build.macppc.stand:PythonStandalone.µ", ]) ] +EXTENSION_INSTRUCTIONS=[ + (buildmwproject, "CWIE", [ + ":Extensions:Imaging:_imaging.ppc.µ", + ":Extensions:Imaging:_imaging.CFM68K.µ", + ":Extensions:NumPy:numpymodules.ppc.µ", + ":Extensions:NumPy:numpymodules.CFM68K.µ", + ]) +] APPLET_INSTRUCTIONS=[ (buildapplet, None, [ ":Mac:scripts:EditPythonPrefs.py", @@ -133,6 +143,7 @@ ALLINST=[ ("FAT shared executables", FAT_INSTRUCTIONS), ("68K standalone executable", M68K_INSTRUCTIONS), ("PPC standalone executable", PPCSTAND_INSTRUCTIONS), + ("Extensions", EXTENSION_INSTRUCTIONS), ("Applets", APPLET_INSTRUCTIONS) ] |