First stab at a Makefile that will create a MacPython that uses the
Apple-installed Python 2.2 from /usr/bin as it's underlying engine.
All the MacPython stuff is installed into /Applications/MacPython-OSX,
and .pth files and other magic are used to tie everything together.
So far only the raw windowing interpreter and BuildApplet work.
diff --git a/Mac/OSX/setup.jaguar.py b/Mac/OSX/setup.jaguar.py
new file mode 100644
index 0000000..ba19793
--- /dev/null
+++ b/Mac/OSX/setup.jaguar.py
@@ -0,0 +1,9 @@
+from distutils.core import Extension, setup
+
+setup(name="MacPython for Jaguar extensions", version="2.2",
+ ext_modules=[
+ Extension("OverrideFrom23._Res",
+ ["../Modules/res/_Resmodule.c"],
+ include_dirs=["../Include"],
+ extra_link_args=['-framework', 'Carbon']),
+ ])
\ No newline at end of file