59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
-- $Source$
|
|
-- $State$
|
|
|
|
local d = ROOTDIR.."util/misc/"
|
|
|
|
tool_em_decode = cprogram {
|
|
cfile (d.."convert.c"),
|
|
|
|
lib_read_emkV,
|
|
lib_eme,
|
|
lib_em_data,
|
|
lib_alloc,
|
|
lib_print,
|
|
lib_string,
|
|
lib_system,
|
|
|
|
outputs = {"%U%/em_decode"},
|
|
install = {
|
|
-- FIXME lib.bin in next line needs removing --- pm bug?
|
|
pm.install("%BINDIR%lib.bin/em_decode"),
|
|
pm.install(d.."em_decode.6", "%BINDIR%man/man6/em_decode.6"),
|
|
}
|
|
}
|
|
|
|
tool_em_encode = cprogram {
|
|
cfile (d.."convert.c"),
|
|
|
|
lib_read_emeV,
|
|
lib_emk,
|
|
lib_em_data,
|
|
lib_alloc,
|
|
lib_print,
|
|
lib_string,
|
|
lib_system,
|
|
|
|
outputs = {"%U%/em_encode"},
|
|
install = {
|
|
pm.install("%BINDIR%%PLATDEP%/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
|
|
-- $Log$
|
|
-- Revision 1.2 2006-07-22 20:10:41 dtrg
|
|
-- Added support for the esize object inspection tool.
|
|
--
|
|
-- Revision 1.1 2006/07/20 23:24:28 dtrg
|
|
-- First version in CVS. |