pmfile 793 B

1234567891011121314151617181920212223242526272829303132333435
  1. -- $Source$
  2. -- $State$
  3. local d = ROOTDIR.."modules/src/flt_arith/"
  4. lib_flt_arith = file (LIBDIR.."libflt_arith.a")
  5. module_flt_arith = clibrary {
  6. cfile (d.."flt_ar2flt.c"),
  7. cfile (d.."flt_div.c"),
  8. cfile (d.."flt_flt2ar.c"),
  9. cfile (d.."flt_modf.c"),
  10. cfile (d.."flt_str2fl.c"),
  11. cfile (d.."flt_cmp.c"),
  12. cfile (d.."flt_add.c"),
  13. cfile (d.."b64_add.c"),
  14. cfile (d.."flt_mul.c"),
  15. cfile (d.."flt_nrm.c"),
  16. cfile (d.."b64_sft.c"),
  17. cfile (d.."flt_umin.c"),
  18. cfile (d.."flt_chk.c"),
  19. cfile (d.."split.c"),
  20. cfile (d.."ucmp.c"),
  21. outputs = {"%U%/libflt_arith.a"},
  22. install = {
  23. pm.install(LIBDIR.."libflt_arith.a"),
  24. pm.install(d.."flt_arith.h", HEADERDIR.."flt_arith.h")
  25. }
  26. }
  27. -- Revision history
  28. -- $Log$
  29. -- Revision 1.1 2006-07-20 23:18:18 dtrg
  30. -- First version in CVS.
  31. --