pmfile 933 B

1234567891011121314151617181920212223242526272829303132333435
  1. -- $Source$
  2. -- $State$
  3. local d = "util/amisc/"
  4. local simple_tool = cprogram {
  5. class = "simple_tool",
  6. cfile (d.."%S%.c"),
  7. lib_object,
  8. outputs = {"%U%/%S%"},
  9. install = {
  10. pm.install("%U%/%S%", "%BINDIR%bin/%S%"),
  11. pm.install(d.."%S%.1", "%BINDIR%man/man1/%S%.1")
  12. }
  13. }
  14. tool_anm = simple_tool { S = "anm" }
  15. tool_ashow = simple_tool { S = "ashow" }
  16. tool_asize = simple_tool { S = "asize" }
  17. tool_astrip = simple_tool { S = "astrip" }
  18. tool_aslod = simple_tool { S = "aslod" }
  19. tool_aelflod = simple_tool { S = "aelflod" }
  20. -- Revision history
  21. -- $Log$
  22. -- Revision 1.3 2007-04-23 23:40:10 dtrg
  23. -- Added the aelflod tool for generating ELF executables. Added documentation for aelflod and ashow. Now installs the documentation when built.
  24. --
  25. -- Revision 1.2 2006/10/16 23:25:56 dtrg
  26. -- Added support for anm, asize, ashow, astrip and the new aslod tool.
  27. --
  28. -- Revision 1.1 2006/07/20 23:18:18 dtrg
  29. -- First version in CVS.