5c5f711cbb
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.
17 lines
304 B
Plaintext
17 lines
304 B
Plaintext
-- $Source$
|
|
-- $State$
|
|
-- $Revision$
|
|
|
|
local d = ROOTDIR.."mach/i86/libend/"
|
|
|
|
libend_i86 = acklibrary {
|
|
outputs = {"%U%/libend-%PLATFORM%.a"},
|
|
|
|
ackfile (d.."edata.s"),
|
|
ackfile (d.."em_end.s"),
|
|
ackfile (d.."end.s"),
|
|
ackfile (d.."etext.s"),
|
|
|
|
install = pm.install("%BINDIR%lib/%PLATFORM%/libend.a"),
|
|
}
|