Added support for the Basic and Occam language runtimes.

This commit is contained in:
dtrg
2006-07-27 21:58:13 +00:00
parent d29b1ef7d0
commit f3a9a3bc40
5 changed files with 94 additions and 37 deletions

21
lang/occam/lib/pmfile Normal file
View File

@@ -0,0 +1,21 @@
-- $Source$
-- $State$
local d = ROOTDIR.."lang/occam/lib/"
lang_occam_runtime = acklibrary {
ACKINCLUDES = {PARENT, "-I%ROOTDIR%h", "-I%ROOTDIR%include/_tail_cc"},
ackfile (d.."builtin.c"),
ackfile (d.."chan_strct.c"),
ackfile (d.."channel.c"),
ackfile (d.."co.c"),
ackfile (d.."misc.e"),
ackfile (d.."now.c"),
ackfile (d.."ocrt.c"),
ackfile (d.."par.c"),
ackfile (d.."par_misc.e"),
ackfile (d.."parco.c"),
install = pm.install("%BINDIR%%PLATIND%/%ARCH%/tail_ocm.a")
}

View File

@@ -4,13 +4,4 @@
local d = ROOTDIR.."lang/occam/"
include (d.."comp/pmfile")
lang_occam = group {
lang_m2_compiler
}
-- Revision history
-- $Log$
-- Revision 1.1 2006-07-26 18:23:32 dtrg
-- Added support for the Occam compiler.
--
include (d.."lib/pmfile")