3def238360
Add autoconf & automake metadata, plus required files for automake to run without complaint. Requires an update to ccan, to get the --build-type argument to create-ccan-tree. Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
26 lines
718 B
Makefile
26 lines
718 B
Makefile
|
|
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
|