2000-12-03 18:31:50 -04:00
|
|
|
import mkcwproject
|
|
|
|
import sys
|
|
|
|
import os
|
2001-01-03 12:44:56 -04:00
|
|
|
import string
|
2000-12-03 18:31:50 -04:00
|
|
|
|
2001-08-16 17:39:17 -03:00
|
|
|
PYTHONDIR = sys.prefix
|
|
|
|
PROJECTDIR = os.path.join(PYTHONDIR, ":Mac:Build")
|
2000-12-03 18:31:50 -04:00
|
|
|
MODULEDIRS = [ # Relative to projectdirs
|
|
|
|
"::Modules:%s",
|
|
|
|
"::Modules",
|
|
|
|
":::Modules",
|
|
|
|
]
|
|
|
|
|
2001-01-21 18:24:27 -04:00
|
|
|
# Global variable to control forced rebuild (otherwise the project is only rebuilt
|
|
|
|
# when it is changed)
|
|
|
|
FORCEREBUILD=0
|
|
|
|
|
2001-01-03 12:44:56 -04:00
|
|
|
def relpath(base, path):
|
|
|
|
"""Turn abs path into path relative to another. Only works for 2 abs paths
|
|
|
|
both pointing to folders"""
|
|
|
|
if not os.path.isabs(base) or not os.path.isabs(path):
|
|
|
|
raise 'Absolute paths only'
|
2001-01-21 18:24:27 -04:00
|
|
|
if base[-1] == ':':
|
|
|
|
base = base[:-1]
|
2001-01-03 12:44:56 -04:00
|
|
|
basefields = string.split(base, os.sep)
|
|
|
|
pathfields = string.split(path, os.sep)
|
|
|
|
commonfields = len(os.path.commonprefix((basefields, pathfields)))
|
|
|
|
basefields = basefields[commonfields:]
|
|
|
|
pathfields = pathfields[commonfields:]
|
2001-01-21 18:24:27 -04:00
|
|
|
pathfields = ['']*(len(basefields)+1) + pathfields
|
|
|
|
rv = string.join(pathfields, os.sep)
|
|
|
|
return rv
|
2001-01-03 12:44:56 -04:00
|
|
|
|
2001-01-23 18:36:26 -04:00
|
|
|
def genpluginproject(architecture, module,
|
2000-12-03 18:31:50 -04:00
|
|
|
project=None, projectdir=None,
|
|
|
|
sources=[], sourcedirs=[],
|
|
|
|
libraries=[], extradirs=[],
|
2001-08-19 19:29:57 -03:00
|
|
|
extraexportsymbols=[], outputdir=":::Lib:lib-dynload"):
|
2001-01-23 18:36:26 -04:00
|
|
|
if architecture == "all":
|
|
|
|
# For the time being we generate two project files. Not as nice as
|
|
|
|
# a single multitarget project, but easier to implement for now.
|
|
|
|
genpluginproject("ppc", module, project, projectdir, sources, sourcedirs,
|
|
|
|
libraries, extradirs, extraexportsymbols)
|
|
|
|
genpluginproject("carbon", module, project, projectdir, sources, sourcedirs,
|
|
|
|
libraries, extradirs, extraexportsymbols)
|
|
|
|
return
|
|
|
|
templatename = "template-%s" % architecture
|
|
|
|
targetname = "%s.%s" % (module, architecture)
|
|
|
|
dllname = "%s.%s.slb" % (module, architecture)
|
2000-12-03 18:31:50 -04:00
|
|
|
if not project:
|
2001-01-23 18:36:26 -04:00
|
|
|
if architecture != "ppc":
|
|
|
|
project = "%s.%s.mcp"%(module, architecture)
|
|
|
|
else:
|
|
|
|
project = "%s.mcp"%module
|
2000-12-03 18:31:50 -04:00
|
|
|
if not projectdir:
|
|
|
|
projectdir = PROJECTDIR
|
|
|
|
if not sources:
|
|
|
|
sources = [module + 'module.c']
|
|
|
|
if not sourcedirs:
|
|
|
|
for moduledir in MODULEDIRS:
|
|
|
|
if '%' in moduledir:
|
|
|
|
moduledir = moduledir % module
|
|
|
|
fn = os.path.join(projectdir, os.path.join(moduledir, sources[0]))
|
|
|
|
if os.path.exists(fn):
|
|
|
|
moduledir, sourcefile = os.path.split(fn)
|
2001-01-21 18:24:27 -04:00
|
|
|
sourcedirs = [relpath(projectdir, moduledir)]
|
2000-12-03 18:31:50 -04:00
|
|
|
sources[0] = sourcefile
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
print "Warning: %s: sourcefile not found: %s"%(module, sources[0])
|
|
|
|
sourcedirs = []
|
2001-01-23 18:36:26 -04:00
|
|
|
if architecture == "carbon":
|
|
|
|
prefixname = "mwerks_carbonplugin_config.h"
|
|
|
|
else:
|
|
|
|
prefixname = "mwerks_plugin_config.h"
|
2000-12-03 18:31:50 -04:00
|
|
|
dict = {
|
2001-01-21 18:24:27 -04:00
|
|
|
"sysprefix" : relpath(projectdir, sys.prefix),
|
2000-12-03 18:31:50 -04:00
|
|
|
"sources" : sources,
|
|
|
|
"extrasearchdirs" : sourcedirs + extradirs,
|
|
|
|
"libraries": libraries,
|
2001-08-19 19:29:57 -03:00
|
|
|
"mac_outputdir" : outputdir,
|
2000-12-03 18:31:50 -04:00
|
|
|
"extraexportsymbols" : extraexportsymbols,
|
2001-01-23 18:36:26 -04:00
|
|
|
"mac_targetname" : targetname,
|
|
|
|
"mac_dllname" : dllname,
|
|
|
|
"prefixname" : prefixname,
|
2000-12-03 18:31:50 -04:00
|
|
|
}
|
2001-01-23 18:36:26 -04:00
|
|
|
mkcwproject.mkproject(os.path.join(projectdir, project), module, dict,
|
|
|
|
force=FORCEREBUILD, templatename=templatename)
|
2000-12-03 18:31:50 -04:00
|
|
|
|
2001-01-21 18:24:27 -04:00
|
|
|
def genallprojects(force=0):
|
|
|
|
global FORCEREBUILD
|
|
|
|
FORCEREBUILD = force
|
2000-12-03 18:31:50 -04:00
|
|
|
# Standard Python modules
|
2001-01-23 18:36:26 -04:00
|
|
|
genpluginproject("all", "pyexpat",
|
2000-12-03 18:31:50 -04:00
|
|
|
sources=["pyexpat.c"],
|
|
|
|
libraries=["libexpat.ppc.lib"],
|
2000-12-29 12:07:30 -04:00
|
|
|
extradirs=["::::expat:*"])
|
2001-01-23 18:36:26 -04:00
|
|
|
genpluginproject("all", "zlib",
|
2000-12-03 18:31:50 -04:00
|
|
|
libraries=["zlib.ppc.Lib"],
|
|
|
|
extradirs=["::::imglibs:zlib:mac", "::::imglibs:zlib"])
|
2001-01-23 18:36:26 -04:00
|
|
|
genpluginproject("all", "gdbm",
|
2000-12-03 18:31:50 -04:00
|
|
|
libraries=["gdbm.ppc.gusi.lib"],
|
|
|
|
extradirs=["::::gdbm:mac", "::::gdbm"])
|
2001-02-12 10:50:52 -04:00
|
|
|
genpluginproject("all", "_weakref", sources=["_weakref.c"])
|
|
|
|
genpluginproject("all", "_symtable", sources=["symtablemodule.c"])
|
|
|
|
genpluginproject("all", "_testcapi")
|
2000-12-03 18:31:50 -04:00
|
|
|
|
|
|
|
# bgen-generated Toolbox modules
|
2001-08-19 19:29:57 -03:00
|
|
|
genpluginproject("carbon", "AE", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "AE", libraries=["ObjectSupportLib"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "App", libraries=["AppearanceLib"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "App", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Cm", libraries=["QuickTimeLib"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Cm", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Ctl", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Ctl", libraries=["ControlsLib", "AppearanceLib"],
|
|
|
|
outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Dlg", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Dlg", libraries=["DialogsLib", "AppearanceLib"],
|
|
|
|
outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Drag", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Drag", libraries=["DragLib"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "Evt", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "Fm", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Help", outputdir="::Lib:Carbon")
|
2001-01-23 18:36:26 -04:00
|
|
|
genpluginproject("ppc", "Icn", libraries=["IconServicesLib"])
|
2001-08-19 19:29:57 -03:00
|
|
|
genpluginproject("carbon", "Icn", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "List", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Menu", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Menu", libraries=["MenusLib", "ContextualMenu", "AppearanceLib"],
|
|
|
|
outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "Qd", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Qt", libraries=["QuickTimeLib"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Qt", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "Qdoffs", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "Res", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "Scrap", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Snd", libraries=["SoundLib"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Snd", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("all", "Sndihooks", sources=[":snd:Sndihooks.c"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "TE", libraries=["DragLib"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "TE", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Mlte", libraries=["Textension"], outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Mlte", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("carbon", "Win", outputdir="::Lib:Carbon")
|
|
|
|
genpluginproject("ppc", "Win", libraries=["WindowsLib", "AppearanceLib"],
|
|
|
|
outputdir="::Lib:Carbon")
|
2001-07-13 17:57:47 -03:00
|
|
|
# Carbon Only?
|
2001-08-19 19:29:57 -03:00
|
|
|
genpluginproject("carbon", "CF", outputdir="::Lib:Carbon")
|
2001-06-26 18:52:08 -03:00
|
|
|
|
2000-12-03 18:31:50 -04:00
|
|
|
# Other Mac modules
|
2001-01-23 18:36:26 -04:00
|
|
|
genpluginproject("all", "calldll", sources=["calldll.c"])
|
|
|
|
genpluginproject("all", "ColorPicker")
|
|
|
|
genpluginproject("ppc", "Printing")
|
|
|
|
genpluginproject("ppc", "waste",
|
2000-12-03 18:31:50 -04:00
|
|
|
sources=[
|
|
|
|
"wastemodule.c",
|
|
|
|
'WEAccessors.c', 'WEBirthDeath.c', 'WEDebug.c',
|
|
|
|
'WEDrawing.c', 'WEFontTables.c', 'WEHighLevelEditing.c',
|
|
|
|
'WEICGlue.c', 'WEInlineInput.c', 'WELineLayout.c', 'WELongCoords.c',
|
|
|
|
'WELowLevelEditing.c', 'WEMouse.c', 'WEObjects.c', 'WEScraps.c',
|
|
|
|
'WESelecting.c', 'WESelectors.c', 'WEUserSelectors.c', 'WEUtilities.c',
|
|
|
|
'WEObjectHandlers.c',
|
|
|
|
'WETabs.c',
|
|
|
|
'WETabHooks.c'],
|
|
|
|
libraries=['DragLib'],
|
2001-01-22 10:50:05 -04:00
|
|
|
extradirs=[
|
|
|
|
'::::Waste 1.3 Distribution:*',
|
|
|
|
'::::ICProgKit1.4:APIs']
|
2000-12-03 18:31:50 -04:00
|
|
|
)
|
2001-01-24 12:02:07 -04:00
|
|
|
# This is a hack, combining parts of Waste 2.0 with parts of 1.3
|
|
|
|
genpluginproject("carbon", "waste",
|
|
|
|
sources=[
|
|
|
|
"wastemodule.c",
|
|
|
|
"WEObjectHandlers.c",
|
|
|
|
"WETabs.c", "WETabHooks.c"],
|
|
|
|
libraries=["WASTE.Carbon.lib"],
|
|
|
|
extradirs=[
|
|
|
|
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:C_C++ Headers',
|
|
|
|
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:Static Libraries',
|
|
|
|
'::::Waste 1.3 Distribution:Extras:Sample Object Handlers',
|
|
|
|
'::::Waste 1.3 Distribution:Extras:Waste Tabs 1.3.2']
|
|
|
|
)
|
2001-01-23 18:36:26 -04:00
|
|
|
genpluginproject("ppc", "ctb")
|
|
|
|
genpluginproject("ppc", "icglue", sources=["icgluemodule.c"],
|
2000-12-03 18:31:50 -04:00
|
|
|
libraries=["ICGlueCFM-PPC.lib"],
|
|
|
|
extradirs=["::::ICProgKit1.4:APIs"])
|
2001-01-29 09:27:46 -04:00
|
|
|
genpluginproject("carbon", "icglue", sources=["icgluemodule.c"],
|
|
|
|
extradirs=["::::ICProgKit1.4:APIs"])
|
2001-01-23 18:36:26 -04:00
|
|
|
genpluginproject("ppc", "macspeech", libraries=["SpeechLib"])
|
2000-12-03 18:31:50 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
genallprojects()
|
|
|
|
|
2001-01-21 18:24:27 -04:00
|
|
|
|