pmfile 628 B

12345678910111213141516171819202122232425262728
  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 = pm.install("%BINDIR%bin/%S%")
  10. }
  11. tool_anm = simple_tool { S = "anm" }
  12. tool_ashow = simple_tool { S = "ashow" }
  13. tool_asize = simple_tool { S = "asize" }
  14. tool_astrip = simple_tool { S = "astrip" }
  15. tool_aslod = simple_tool { S = "aslod" }
  16. -- Revision history
  17. -- $Log$
  18. -- Revision 1.2 2006-10-16 23:25:56 dtrg
  19. -- Added support for anm, asize, ashow, astrip and the new aslod tool.
  20. --
  21. -- Revision 1.1 2006/07/20 23:18:18 dtrg
  22. -- First version in CVS.