pmfile 888 B

123456789101112131415161718192021222324252627282930313233343536373839
  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%%PLATDEP%/em_led"),
  24. pm.install(d.."ack.out.5", "%BINDIR%man/man5/ack.out.5"),
  25. pm.install(d.."led.6", "%BINDIR%man/man6/em_led.6"),
  26. }
  27. }
  28. -- Revision history
  29. -- $Log: pmfile,v $
  30. -- Revision 1.2 2006/07/22 20:52:44 dtrg
  31. -- led now gets installed into the right place.
  32. --
  33. -- Revision 1.1 2006/07/22 20:04:41 dtrg
  34. -- Added support for the led link editor.