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.
21 lines
439 B
Plaintext
21 lines
439 B
Plaintext
-- $Source$
|
|
-- $State$
|
|
|
|
local d = ROOTDIR.."lang/occam/"
|
|
|
|
include (d.."comp/pmfile")
|
|
include (d.."lib/pmfile")
|
|
|
|
local headers = group {
|
|
install = {
|
|
pm.install(d.."headers/dec.ocm", "%BINDIR%include/occam/dec.ocm"),
|
|
pm.install(d.."headers/printd.ocm", "%BINDIR%include/occam/printd.ocm"),
|
|
pm.install(d.."headers/prints.ocm", "%BINDIR%include/occam/prints.ocm"),
|
|
}
|
|
}
|
|
|
|
lang_occam_runtime = group {
|
|
headers,
|
|
lang_occam_lib_runtime
|
|
}
|