27 lines
718 B
Text
27 lines
718 B
Text
|
|
||
|
bin_PROGRAMS = sbsign sbverify
|
||
|
|
||
|
coff_headers = coff/external.h coff/pe.h coff/i386.h coff/x86_64.h
|
||
|
|
||
|
common_SOURCES = idc.c idc.h image.c image.h $(coff_headers)
|
||
|
common_LDADD = lib/ccan/libccan.a $(libcrypto_LIBS)
|
||
|
common_CFLAGS = -I$(srcdir)/lib/ccan/
|
||
|
|
||
|
sbsign_SOURCES = sbsign.c $(common_SOURCES)
|
||
|
sbsign_LDADD = $(common_LDADD)
|
||
|
sbsign_CFLAGS = $(common_CFLAGS)
|
||
|
|
||
|
sbverify_SOURCES = sbverify.c $(common_SOURCES)
|
||
|
sbverify_LDADD = $(common_LDADD)
|
||
|
sbverify_CFLAGS = $(common_CFLAGS)
|
||
|
|
||
|
man1_MANS = docs/sbsign.1 docs/sbverify.1
|
||
|
|
||
|
EXTRA_DIST = docs/sbsign.1.in docs/sbverify.1.in
|
||
|
|
||
|
$(builddir)/docs/%.1: $(srcdir)/docs/%.1.in $(builddir)/%
|
||
|
$(MKDIR_P) $(@D)
|
||
|
$(HELP2MAN) --no-info -i $< -o $@ $(builddir)/$*
|
||
|
|
||
|
SUBDIRS = lib/ccan
|