1996-08-20 13:27:19 -03:00
|
|
|
|
This directory contains the CodeWarrior 9 projects. Here is what they
|
|
|
|
|
are for and where to put them (well, where *I* put them, at least),
|
|
|
|
|
and some info on the naming convention used.
|
1995-08-31 10:35:29 -03:00
|
|
|
|
|
|
|
|
|
Python68K.<2E>
|
1995-10-23 10:55:45 -03:00
|
|
|
|
Non-shared 68K python, full complement of modules. Put in
|
1996-08-20 13:27:19 -03:00
|
|
|
|
build.mac68k.stand. Uses mwerks_nonshared_config.h.
|
1995-08-31 10:35:29 -03:00
|
|
|
|
|
1996-08-20 13:27:19 -03:00
|
|
|
|
|
|
|
|
|
PythonCorePPC.<2E>
|
|
|
|
|
PPC shared library with core functionality. Put in
|
|
|
|
|
build.macppc.shared. Uses mwerks_shared_config.h.
|
|
|
|
|
MWCPythonCoreRuntime.<2E>
|
|
|
|
|
A special runtime library needed for PythonCorePPC. Put in
|
|
|
|
|
build.macppc.shared.
|
1995-08-31 10:35:29 -03:00
|
|
|
|
PythonPPC.<2E>
|
|
|
|
|
PPC shared application. Put in build.macppc.shared.
|
1996-08-20 13:27:19 -03:00
|
|
|
|
PythonAppletPPC.<2E>
|
1995-08-31 10:35:29 -03:00
|
|
|
|
PPC applet template. Put in build.macppc.shared.
|
|
|
|
|
|
1996-08-20 13:27:19 -03:00
|
|
|
|
PythonCoreCFM68K.<2E>
|
|
|
|
|
CFM68K shared library with core functionality. Put in
|
|
|
|
|
build.mac68k.shared. Uses mwerks_shared_config.h.
|
|
|
|
|
PythonCoreCFM68K.<2E>.exp
|
|
|
|
|
Exports for for PythonCoreCFM68K. Put in build.mac68k.shared.
|
|
|
|
|
PythonCFM68K.<2E>
|
|
|
|
|
CFM68K shared application. Put in build.mac68k.shared.
|
|
|
|
|
PythonAppletCFM68K.<2E>
|
|
|
|
|
CFM68K applet template. Put in build.mac68k.shared.
|
|
|
|
|
|
1995-08-31 10:35:29 -03:00
|
|
|
|
PythonPPCstandalone.<2E>
|
|
|
|
|
Non-shared PPC python. If you need it, put it in build.macppc.stand.
|
|
|
|
|
|
1996-08-20 13:27:19 -03:00
|
|
|
|
The rest of the files are for creating dynamically loadable plugin
|
|
|
|
|
modules, these should be put into the PlugIns folder.
|
|
|
|
|
|
|
|
|
|
As an example, ctb.ppc.mu and ctb.ppc.mu.exp are used to build the PPC
|
|
|
|
|
plugin module ctb.ppc.slb.
|
|
|
|
|
|
|
|
|
|
Similarly, ctb.CFM68K.mu and ctb.CFM68K.mu.exp are used to build the
|
|
|
|
|
CFM68K plugin module ctb.CFM68K.slb.
|
|
|
|
|
|
|
|
|
|
The projects with "modules" in their name are somewhat special: these
|
|
|
|
|
build shared libraries that contain more than one module (usually
|
|
|
|
|
related). The MkPluginAliases.py script (from Mac/scripts) knows about
|
|
|
|
|
all modules that live together, and will create the necessary aliases
|
|
|
|
|
to make it all work.
|
1996-02-20 12:36:10 -04:00
|
|
|
|
|
1996-08-20 13:27:19 -03:00
|
|
|
|
All plugin modules use mwerks_plugin_config.h as their header file,
|
|
|
|
|
with the exception of the _tkinter plugins, which use
|
|
|
|
|
mwerks_tkplugin_config.h.
|
1996-08-23 12:51:48 -03:00
|
|
|
|
|