Added support for the esize object inspection tool.

This commit is contained in:
dtrg 2006-07-22 20:10:41 +00:00
parent aa2dab31cf
commit 8499270aef
2 changed files with 21 additions and 5 deletions

6
pmfile
View file

@ -99,6 +99,7 @@ default = group {
-- tool_ceg, -- tool_ceg,
tool_em_decode, tool_em_decode,
tool_em_encode, tool_em_encode,
tool_esize,
tool_opt, tool_opt,
tool_ego, tool_ego,
tool_topgen, tool_topgen,
@ -158,7 +159,10 @@ configure = simple {
-- Revision history -- Revision history
-- $Log$ -- $Log$
-- Revision 1.5 2006-07-22 20:04:41 dtrg -- Revision 1.6 2006-07-22 20:10:41 dtrg
-- Added support for the esize object inspection tool.
--
-- Revision 1.5 2006/07/22 20:04:41 dtrg
-- Added support for the led link editor. -- Added support for the led link editor.
-- --
-- Revision 1.4 2006/07/22 12:31:19 dtrg -- Revision 1.4 2006/07/22 12:31:19 dtrg

View file

@ -35,13 +35,25 @@ tool_em_encode = cprogram {
outputs = {"%U%/em_encode"}, outputs = {"%U%/em_encode"},
install = { install = {
-- FIXME lib.bin in next line needs removing --- pm bug? pm.install("%BINDIR%%PLATDEP%/em_encode"),
pm.install("%BINDIR%lib.bin/em_encode"), pm.install(d.."em_decode.6", "%BINDIR%man/man6/em_decode.6")
}
}
tool_esize = cprogram {
cfile (d.."esize.c"),
outputs = {"%U%/esize"},
install = {
pm.install("%BINDIR%/bin/esize"),
pm.install(d.."esize.1", "%BINDIR%man/man1/esize.1")
} }
} }
-- Revision history -- Revision history
-- $Log$ -- $Log$
-- Revision 1.1 2006-07-20 23:24:28 dtrg -- Revision 1.2 2006-07-22 20:10:41 dtrg
-- First version in CVS. -- Added support for the esize object inspection tool.
-- --
-- Revision 1.1 2006/07/20 23:24:28 dtrg
-- First version in CVS.