Added xx and xxsubtype modules, for completeness and because xxsubtype is used by the test suite.

This commit is contained in:
Jack Jansen 2001-08-29 22:08:06 +00:00
parent 028f2d5d89
commit 7c10008917
2 changed files with 7 additions and 0 deletions

View File

@ -239,6 +239,8 @@ I_PPC_PLUGINS : (buildmwproject, "CWIE", [
(":Mac:Build:_weakref.mcp", "_weakref.ppc"),
(":Mac:Build:_symtable.mcp", "_symtable.ppc"),
(":Mac:Build:_testcapi.mcp", "_testcapi.ppc"),
(":Mac:Build:xx.mcp", "xx.ppc"),
(":Mac:Build:xxsubtype.mcp", "xxsubtype.ppc"),
(":Mac:Build:pyexpat.mcp", "pyexpat.ppc"),
(":Mac:Build:calldll.mcp", "calldll.ppc"),
(":Mac:Build:ctb.mcp", "ctb.ppc"),
@ -279,6 +281,8 @@ I_CARBON_PLUGINS : (buildmwproject, "CWIE", [
(":Mac:Build:_weakref.carbon.mcp", "_weakref.carbon"),
(":Mac:Build:_symtable.carbon.mcp", "_symtable.carbon"),
(":Mac:Build:_testcapi.carbon.mcp", "_testcapi.carbon"),
(":Mac:Build:xx.carbon.mcp", "xx.carbon"),
(":Mac:Build:xxsubtype.carbon.mcp", "xxsubtype.carbon"),
(":Mac:Build:pyexpat.carbon.mcp", "pyexpat.carbon"),
(":Mac:Build:calldll.carbon.mcp", "calldll.carbon"),
(":Mac:Build:gdbm.carbon.mcp", "gdbm.carbon"),

View File

@ -109,7 +109,10 @@ def genallprojects(force=0):
extradirs=["::::gdbm:mac", "::::gdbm"])
genpluginproject("all", "_weakref", sources=["_weakref.c"])
genpluginproject("all", "_symtable", sources=["symtablemodule.c"])
# Example/test modules
genpluginproject("all", "_testcapi")
genpluginproject("all", "xx")
genpluginproject("all", "xxsubtype", sources=["xxsubtype.c"])
# bgen-generated Toolbox modules
genpluginproject("carbon", "_AE", outputdir="::Lib:Carbon")