pmfile 887 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. lib_sbrk,
  21. outputs = {"%U%/led"},
  22. install = {
  23. -- FIXME lib.bin in next line needs removing --- pm bug?
  24. pm.install("%BINDIR%%PLATDEP%/em_led"),
  25. pm.install(d.."ack.out.5", "%BINDIR%man/man5/ack.out.5"),
  26. pm.install(d.."led.6", "%BINDIR%man/man6/em_led.6"),
  27. }
  28. }
  29. -- Revision history
  30. -- $Log$
  31. -- Revision 1.2 2006-07-22 20:52:44 dtrg
  32. -- led now gets installed into the right place.
  33. --
  34. -- Revision 1.1 2006/07/22 20:04:41 dtrg
  35. -- Added support for the led link editor.