Done a major overhaul of the way target include files are installed and

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.
This commit is contained in:
dtrg
2007-02-20 00:46:10 +00:00
parent 5d7360edf0
commit 2c98eae913
46 changed files with 322 additions and 170 deletions

View File

@@ -3,8 +3,8 @@
local d = ROOTDIR.."lang/occam/lib/"
lang_occam_runtime = acklibrary {
ACKINCLUDES = {PARENT, "%ROOTDIR%h", "%ROOTDIR%include/_tail_cc"},
lang_occam_lib_runtime = acklibrary {
ACKINCLUDES = {PARENT, "%ROOTDIR%h"},
ackfile (d.."builtin.c"),
ackfile (d.."chan_strct.c"),
@@ -17,5 +17,5 @@ lang_occam_runtime = acklibrary {
ackfile (d.."par_misc.e"),
ackfile (d.."parco.c"),
install = pm.install("%BINDIR%%PLATIND%/%ARCH%/tail_ocm")
install = pm.install("%BINDIR%%PLATIND%/%PLATFORM%/tail_ocm")
}