From: dtrg Date: Mon, 16 Oct 2006 23:25:56 +0000 (+0000) Subject: Added support for anm, asize, ashow, astrip and the new aslod tool. X-Git-Tag: release-6-0-pre-1~39 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c0ecde554ac8b211867c75c7d9acd47f85a2e88b;p=ack.git Added support for anm, asize, ashow, astrip and the new aslod tool. --- diff --git a/pmfile b/pmfile index c103d2fbd..fbc8c0bce 100644 --- a/pmfile +++ b/pmfile @@ -121,6 +121,11 @@ default = group { tool_ego, tool_topgen, tool_led, + tool_anm, + tool_ashow, + tool_asize, + tool_astrip, + tool_aslod, lang_cem_compiler, lang_cem_ansi_compiler, diff --git a/util/amisc/pmfile b/util/amisc/pmfile index cdaf7e637..1ed9d5b42 100644 --- a/util/amisc/pmfile +++ b/util/amisc/pmfile @@ -3,15 +3,26 @@ local d = "util/amisc/" -tool_tabgen = cprogram { - cfile (d.."tabgen.c"), +local simple_tool = cprogram { + class = "simple_tool", - outputs = {"%U%/tabgen"}, - install = pm.install(TOOLDIR.."tabgen") + cfile (d.."%S%.c"), + 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 -- $Log$ --- Revision 1.1 2006-07-20 23:18:18 dtrg --- First version in CVS. +-- Revision 1.2 2006-10-16 23:25:56 dtrg +-- 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.