pmfile 708 B

12345678910111213141516171819202122232425262728293031
  1. -- $Source$
  2. -- $State$
  3. local d = ROOTDIR.."lang/cem/libcc/math/"
  4. lang_cem_math_runtime = acklibrary {
  5. ACKINCLUDES = {PARENT, "%ROOTDIR%h", "%ROOTDIR%include/_tail_cc"},
  6. ackfile (d.."asin.c"),
  7. ackfile (d.."atan2.c"),
  8. ackfile (d.."atan.c"),
  9. ackfile (d.."ceil.c"),
  10. ackfile (d.."fabs.c"),
  11. ackfile (d.."gamma.c"),
  12. ackfile (d.."hypot.c"),
  13. ackfile (d.."jn.c"),
  14. ackfile (d.."j0.c"),
  15. ackfile (d.."j1.c"),
  16. ackfile (d.."log10.c"),
  17. ackfile (d.."pow.c"),
  18. ackfile (d.."log.c"),
  19. ackfile (d.."sin.c"),
  20. ackfile (d.."sinh.c"),
  21. ackfile (d.."sqrt.c"),
  22. ackfile (d.."tan.c"),
  23. ackfile (d.."tanh.c"),
  24. ackfile (d.."exp.c"),
  25. ackfile (d.."floor.c"),
  26. install = pm.install("%BINDIR%%PLATIND%/%ARCH%/tail_m")
  27. }