| 1 | #
|
|---|
| 2 | # Local customizations for generating the Carbon interface modules.
|
|---|
| 3 | # Edit this file to reflect where things should be on your system.
|
|---|
| 4 | # Note that pathnames are unix-style for OSX MachoPython/unix-Python,
|
|---|
| 5 | # but mac-style for MacPython, whether running on OS9 or OSX.
|
|---|
| 6 | #
|
|---|
| 7 |
|
|---|
| 8 | import sys, os
|
|---|
| 9 |
|
|---|
| 10 | Error = "bgenlocations.Error"
|
|---|
| 11 | #
|
|---|
| 12 | # Where bgen is. For unix-Python bgen isn't installed, so you have to refer to
|
|---|
| 13 | # the source tree here.
|
|---|
| 14 | BGENDIR="/Users/jack/src/python/Tools/bgen/bgen"
|
|---|
| 15 |
|
|---|
| 16 | #
|
|---|
| 17 | # Where to find the Universal Header include files. If you have CodeWarrior
|
|---|
| 18 | # installed you can use the Universal Headers from there, otherwise you can
|
|---|
| 19 | # download them from the Apple website. Bgen can handle both unix- and mac-style
|
|---|
| 20 | # end of lines, so don't worry about that.
|
|---|
| 21 | #
|
|---|
| 22 | INCLUDEDIR="/Users/jack/src/Universal/Interfaces/CIncludes"
|
|---|
| 23 |
|
|---|
| 24 | #
|
|---|
| 25 | # Where to put the python definitions files. Note that, on unix-Python,
|
|---|
| 26 | # if you want to commit your changes to the CVS repository this should refer to
|
|---|
| 27 | # your source directory, not your installed directory.
|
|---|
|
|---|