2006-07-20 23:24:28 +00:00
|
|
|
-- $Source$
|
|
|
|
-- $State$
|
|
|
|
|
|
|
|
local d = "util/amisc/"
|
|
|
|
|
2006-10-16 23:25:56 +00:00
|
|
|
local simple_tool = cprogram {
|
|
|
|
class = "simple_tool",
|
2006-07-20 23:24:28 +00:00
|
|
|
|
2006-10-16 23:25:56 +00:00
|
|
|
cfile (d.."%S%.c"),
|
|
|
|
lib_object,
|
|
|
|
|
|
|
|
outputs = {"%U%/%S%"},
|
2007-04-23 23:40:10 +00:00
|
|
|
install = {
|
|
|
|
pm.install("%U%/%S%", "%BINDIR%bin/%S%"),
|
|
|
|
pm.install(d.."%S%.1", "%BINDIR%man/man1/%S%.1")
|
|
|
|
}
|
2006-07-20 23:24:28 +00:00
|
|
|
}
|
|
|
|
|
2006-10-16 23:25:56 +00:00
|
|
|
tool_anm = simple_tool { S = "anm" }
|
|
|
|
tool_ashow = simple_tool { S = "ashow" }
|
|
|
|
tool_asize = simple_tool { S = "asize" }
|
|
|
|
tool_astrip = simple_tool { S = "astrip" }
|
|
|
|
tool_aslod = simple_tool { S = "aslod" }
|
2007-04-23 23:40:10 +00:00
|
|
|
tool_aelflod = simple_tool { S = "aelflod" }
|
2006-10-16 23:25:56 +00:00
|
|
|
|
2006-07-20 23:24:28 +00:00
|
|
|
-- Revision history
|
|
|
|
-- $Log$
|
2007-04-23 23:40:10 +00:00
|
|
|
-- Revision 1.3 2007-04-23 23:40:10 dtrg
|
|
|
|
-- Added the aelflod tool for generating ELF executables. Added documentation for aelflod and ashow. Now installs the documentation when built.
|
|
|
|
--
|
|
|
|
-- Revision 1.2 2006/10/16 23:25:56 dtrg
|
2006-10-16 23:25:56 +00:00
|
|
|
-- Added support for anm, asize, ashow, astrip and the new aslod tool.
|
2006-07-20 23:24:28 +00:00
|
|
|
--
|
2006-10-16 23:25:56 +00:00
|
|
|
-- Revision 1.1 2006/07/20 23:18:18 dtrg
|
|
|
|
-- First version in CVS.
|