pmfile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. -- $Source$
  2. -- $State$
  3. local d = ROOTDIR.."util/misc/"
  4. tool_em_decode = cprogram {
  5. cfile (d.."convert.c"),
  6. lib_read_emkV,
  7. lib_eme,
  8. lib_em_data,
  9. lib_alloc,
  10. lib_print,
  11. lib_string,
  12. lib_system,
  13. outputs = {"%U%/em_decode"},
  14. install = {
  15. -- FIXME lib.bin in next line needs removing --- pm bug?
  16. pm.install("%BINDIR%lib.bin/em_decode"),
  17. pm.install(d.."em_decode.6", "%BINDIR%man/man6/em_decode.6"),
  18. }
  19. }
  20. tool_em_encode = cprogram {
  21. cfile (d.."convert.c"),
  22. lib_read_emeV,
  23. lib_emk,
  24. lib_em_data,
  25. lib_alloc,
  26. lib_print,
  27. lib_string,
  28. lib_system,
  29. outputs = {"%U%/em_encode"},
  30. install = {
  31. pm.install("%BINDIR%%PLATDEP%/em_encode"),
  32. pm.install(d.."em_decode.6", "%BINDIR%man/man6/em_decode.6")
  33. }
  34. }
  35. tool_esize = cprogram {
  36. cfile (d.."esize.c"),
  37. outputs = {"%U%/esize"},
  38. install = {
  39. pm.install("%BINDIR%/bin/esize"),
  40. pm.install(d.."esize.1", "%BINDIR%man/man1/esize.1")
  41. }
  42. }
  43. -- Revision history
  44. -- $Log$
  45. -- Revision 1.2 2006-07-22 20:10:41 dtrg
  46. -- Added support for the esize object inspection tool.
  47. --
  48. -- Revision 1.1 2006/07/20 23:24:28 dtrg
  49. -- First version in CVS.