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:
parent
be7559abfe
commit
edf1d26d49
2 changed files with 241 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue