pmfile 596 B

12345678910111213141516171819202122232425262728293031
  1. -- $Source$
  2. -- $State$
  3. local d = "util/arch/"
  4. tool_aal = cprogram {
  5. CDEFINES = {PARENT, "AAL"},
  6. cfile (d.."archiver.c"),
  7. lib_print,
  8. lib_string,
  9. lib_system,
  10. lib_object,
  11. install = {
  12. pm.install("%BINDIR%bin/aal"),
  13. pm.install(d.."aal.1", "%BINDIR%man/man1/aal.1")
  14. }
  15. }
  16. -- Revision history
  17. -- $Log$
  18. -- Revision 1.3 2006-10-15 00:28:12 dtrg
  19. -- Updated to the version 0.1 of Prime Mover (which involves some syntax changes).
  20. --
  21. -- Revision 1.2 2006/07/30 23:45:35 dtrg
  22. -- Modified to install aal's manpage.
  23. --
  24. -- Revision 1.1 2006/07/20 23:18:18 dtrg
  25. -- First version in CVS.
  26. --