2006-07-27 22:51:38 +00:00
|
|
|
-- $Source$
|
|
|
|
-- $State$
|
|
|
|
|
|
|
|
local d = ROOTDIR.."lang/cem/libcc/math/"
|
|
|
|
|
|
|
|
lang_cem_math_runtime = acklibrary {
|
2007-02-20 00:46:10 +00:00
|
|
|
ACKINCLUDES = {PARENT, "%ROOTDIR%h"},
|
2006-07-27 22:51:38 +00:00
|
|
|
|
|
|
|
ackfile (d.."asin.c"),
|
|
|
|
ackfile (d.."atan2.c"),
|
|
|
|
ackfile (d.."atan.c"),
|
|
|
|
ackfile (d.."ceil.c"),
|
|
|
|
ackfile (d.."fabs.c"),
|
|
|
|
ackfile (d.."gamma.c"),
|
|
|
|
ackfile (d.."hypot.c"),
|
|
|
|
ackfile (d.."jn.c"),
|
|
|
|
ackfile (d.."j0.c"),
|
|
|
|
ackfile (d.."j1.c"),
|
|
|
|
ackfile (d.."log10.c"),
|
|
|
|
ackfile (d.."pow.c"),
|
|
|
|
ackfile (d.."log.c"),
|
|
|
|
ackfile (d.."sin.c"),
|
|
|
|
ackfile (d.."sinh.c"),
|
|
|
|
ackfile (d.."sqrt.c"),
|
|
|
|
ackfile (d.."tan.c"),
|
|
|
|
ackfile (d.."tanh.c"),
|
|
|
|
ackfile (d.."exp.c"),
|
|
|
|
ackfile (d.."floor.c"),
|
|
|
|
|
2007-02-26 22:36:56 +00:00
|
|
|
install = pm.install("%BINDIR%%PLATIND%/%PLATFORM%/libm-knr.a")
|
2006-07-27 22:51:38 +00:00
|
|
|
}
|