sbattach: Add too to manage detached signatures

Add a third tool (`sbattach`) to attach and detach signatures from
PE/COFF files.

Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
Jeremy Kerr 2012-06-12 16:56:15 +08:00
parent be7559abfe
commit edf1d26d49
2 changed files with 241 additions and 1 deletions

View file

@ -1,7 +1,7 @@
AM_CFLAGS = -Wall -Wextra
bin_PROGRAMS = sbsign sbverify
bin_PROGRAMS = sbsign sbverify sbattach
coff_headers = coff/external.h coff/pe.h coff/i386.h coff/x86_64.h
@ -17,6 +17,10 @@ sbverify_SOURCES = sbverify.c $(common_SOURCES)
sbverify_LDADD = $(common_LDADD)
sbverify_CFLAGS = $(AM_CFLAGS) $(common_CFLAGS)
sbattach_SOURCES = sbattach.c $(common_SOURCES)
sbattach_LDADD = $(common_LDADD)
sbattach_CFLAGS = $(AM_CFLAGS) $(common_CFLAGS)
man1_MANS = docs/sbsign.1 docs/sbverify.1
EXTRA_DIST = docs/sbsign.1.in docs/sbverify.1.in