summaryrefslogtreecommitdiffstats
path: root/Mac/mwerks
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/mwerks')
-rw-r--r--Mac/mwerks/projects/README-Projectfiles52
-rw-r--r--Mac/mwerks/projects/build.macfreeze/frozen.prjbin139610 -> 0 bytes
-rw-r--r--Mac/mwerks/projects/build.macfreeze/frozenbundle.rsrcbin5556 -> 0 bytes
-rw-r--r--Mac/mwerks/projects/build.macfreeze/templatefrozenconfig.c65
4 files changed, 0 insertions, 117 deletions
diff --git a/Mac/mwerks/projects/README-Projectfiles b/Mac/mwerks/projects/README-Projectfiles
deleted file mode 100644
index 2d6f8c1..0000000
--- a/Mac/mwerks/projects/README-Projectfiles
+++ /dev/null
@@ -1,52 +0,0 @@
-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.
-
-Python68K.µ
- Non-shared 68K python, full complement of modules. Put in
- build.mac68k.stand. Uses mwerks_nonshared_config.h.
-
-
-PythonCorePPC.µ
- PPC shared library with core functionality. Put in
- build.macppc.shared. Uses mwerks_shared_config.h.
-MWCPythonCoreRuntime.µ
- A special runtime library needed for PythonCorePPC. Put in
- build.macppc.shared.
-PythonPPC.µ
- PPC shared application. Put in build.macppc.shared.
-PythonAppletPPC.µ
- PPC applet template. Put in build.macppc.shared.
-
-PythonCoreCFM68K.µ
- CFM68K shared library with core functionality. Put in
- build.mac68k.shared. Uses mwerks_shared_config.h.
-PythonCoreCFM68K.µ.exp
- Exports for for PythonCoreCFM68K. Put in build.mac68k.shared.
-PythonCFM68K.µ
- CFM68K shared application. Put in build.mac68k.shared.
-PythonAppletCFM68K.µ
- CFM68K applet template. Put in build.mac68k.shared.
-
-PythonPPCstandalone.µ
- Non-shared PPC python. If you need it, put it in build.macppc.stand.
-
-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.
-
-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.
-
diff --git a/Mac/mwerks/projects/build.macfreeze/frozen.prj b/Mac/mwerks/projects/build.macfreeze/frozen.prj
deleted file mode 100644
index 184028e..0000000
--- a/Mac/mwerks/projects/build.macfreeze/frozen.prj
+++ /dev/null
Binary files differ
diff --git a/Mac/mwerks/projects/build.macfreeze/frozenbundle.rsrc b/Mac/mwerks/projects/build.macfreeze/frozenbundle.rsrc
deleted file mode 100644
index fa2c02a..0000000
--- a/Mac/mwerks/projects/build.macfreeze/frozenbundle.rsrc
+++ /dev/null
Binary files differ
diff --git a/Mac/mwerks/projects/build.macfreeze/templatefrozenconfig.c b/Mac/mwerks/projects/build.macfreeze/templatefrozenconfig.c
deleted file mode 100644
index 1924136..0000000
--- a/Mac/mwerks/projects/build.macfreeze/templatefrozenconfig.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/* Generated automatically from /ufs/jack/src/python/build.irix6/tmp/lib/python1.5/config/config.c.in by makesetup. */
-/* -*- C -*- ***********************************************
-Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
-The Netherlands.
-
- All Rights Reserved
-
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted,
-provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in
-supporting documentation, and that the names of Stichting Mathematisch
-Centrum or CWI or Corporation for National Research Initiatives or
-CNRI not be used in advertising or publicity pertaining to
-distribution of the software without specific, written prior
-permission.
-
-While CWI is the initial source for this software, a modified version
-is made available by the Corporation for National Research Initiatives
-(CNRI) at the Internet address ftp://ftp.python.org.
-
-STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
-CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
-DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
-PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-
-******************************************************************/
-
-/* Module configuration */
-
-/* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */
-
-/* This file contains the table of built-in modules.
- See init_builtin() in import.c. */
-
-#include "Python.h"
-
-
-/* -- ADDMODULE MARKER 1 -- */
-
-extern void PyMarshal_Init();
-extern void initimp();
-
-struct _inittab _PyImport_Inittab[] = {
-
-/* -- ADDMODULE MARKER 2 -- */
-
- /* This module "lives in" with marshal.c */
- {"marshal", PyMarshal_Init},
-
- /* This lives it with import.c */
- {"imp", initimp},
-
- /* These entries are here for sys.builtin_module_names */
- {"__main__", NULL},
- {"__builtin__", NULL},
- {"sys", NULL},
-
- /* Sentinel */
- {0, 0}
-};