pmfile 774 B

12345678910111213141516171819202122232425262728293031323334353637
  1. -- $Source$
  2. -- $State$
  3. local d = ROOTDIR.."util/led/"
  4. tool_led = cprogram {
  5. cfile (d.."archive.c"),
  6. cfile (d.."error.c"),
  7. cfile (d.."extract.c"),
  8. cfile (d.."finish.c"),
  9. cfile (d.."main.c"),
  10. cfile (d.."memory.c"),
  11. cfile (d.."output.c"),
  12. cfile (d.."read.c"),
  13. cfile (d.."relocate.c"),
  14. cfile (d.."save.c"),
  15. cfile (d.."scan.c"),
  16. cfile (d.."sym.c"),
  17. cfile (d.."write.c"),
  18. lib_string,
  19. lib_object,
  20. outputs = {"%U%/led"},
  21. install = {
  22. -- FIXME lib.bin in next line needs removing --- pm bug?
  23. pm.install("%BINDIR%bin/led"),
  24. pm.install(d.."ack.out.5", "%BINDIR%man/man5/ack.out.5"),
  25. pm.install(d.."led.6", "%BINDIR%man/man6/led.6"),
  26. }
  27. }
  28. -- Revision history
  29. -- $Log$
  30. -- Revision 1.1 2006-07-22 20:04:41 dtrg
  31. -- Added support for the led link editor.
  32. --