Specify pathnames in a way that works on both OS9 and OSX.

You'll still have to manually edit it, though...
This commit is contained in:
Jack Jansen 2002-08-04 21:56:12 +00:00
parent bae7734eef
commit 7ea8143fe5
1 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@
#
import sys, os
# Where to find the Universal Header include files:
MWERKSDIR="Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:"
INCLUDEDIR=MWERKSDIR + "MacOS Support:Universal:Interfaces:CIncludes:"
MWERKSDIR="/Applications/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/"
INCLUDEDIR=os.path.join(MWERKSDIR, "MacOS Support", "Universal", "Interfaces", "CIncludes")
# Where to put the python definitions file:
TOOLBOXDIR=os.path.join(sys.prefix, ":Mac:Lib:Carbon:")
TOOLBOXDIR=os.path.join(sys.prefix, "Mac", "Lib", "Carbon")
# Creator for C files:
CREATOR="CWIE"