Added support for anm, asize, ashow, astrip and the new aslod tool.
This commit is contained in:
parent
47e1c27c05
commit
c0ecde554a
2 changed files with 22 additions and 6 deletions
5
pmfile
5
pmfile
|
@ -121,6 +121,11 @@ default = group {
|
||||||
tool_ego,
|
tool_ego,
|
||||||
tool_topgen,
|
tool_topgen,
|
||||||
tool_led,
|
tool_led,
|
||||||
|
tool_anm,
|
||||||
|
tool_ashow,
|
||||||
|
tool_asize,
|
||||||
|
tool_astrip,
|
||||||
|
tool_aslod,
|
||||||
|
|
||||||
lang_cem_compiler,
|
lang_cem_compiler,
|
||||||
lang_cem_ansi_compiler,
|
lang_cem_ansi_compiler,
|
||||||
|
|
|
@ -3,15 +3,26 @@
|
||||||
|
|
||||||
local d = "util/amisc/"
|
local d = "util/amisc/"
|
||||||
|
|
||||||
tool_tabgen = cprogram {
|
local simple_tool = cprogram {
|
||||||
cfile (d.."tabgen.c"),
|
class = "simple_tool",
|
||||||
|
|
||||||
outputs = {"%U%/tabgen"},
|
cfile (d.."%S%.c"),
|
||||||
install = pm.install(TOOLDIR.."tabgen")
|
lib_object,
|
||||||
|
|
||||||
|
outputs = {"%U%/%S%"},
|
||||||
|
install = pm.install("%BINDIR%bin/%S%")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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" }
|
||||||
|
|
||||||
-- Revision history
|
-- Revision history
|
||||||
-- $Log$
|
-- $Log$
|
||||||
-- Revision 1.1 2006-07-20 23:18:18 dtrg
|
-- Revision 1.2 2006-10-16 23:25:56 dtrg
|
||||||
-- First version in CVS.
|
-- Added support for anm, asize, ashow, astrip and the new aslod tool.
|
||||||
--
|
--
|
||||||
|
-- Revision 1.1 2006/07/20 23:18:18 dtrg
|
||||||
|
-- First version in CVS.
|
||||||
|
|
Loading…
Reference in a new issue