how platform libraries are built. The ARCH pm variable has now been renamed PLATFORM (which is more accurate) and a different ARCH variable added, which represents the CPU family rather than the hardware platform.
21 lines
264 B
Text
21 lines
264 B
Text
-- $Source$
|
|
-- $State$
|
|
|
|
local d = ROOTDIR.."mach/i86/"
|
|
|
|
include (d.."libem/pmfile")
|
|
include (d.."libend/pmfile")
|
|
|
|
mach_i86 = group {
|
|
proto_as,
|
|
proto_ncg { ARCHDIR = "i86" },
|
|
ego_descr,
|
|
}
|
|
|
|
support_i86 = group {
|
|
OPTIMISATION = "-O",
|
|
|
|
libem_i86,
|
|
libend_i86,
|
|
}
|
|
|