mirror of https://github.com/wolfSSL/wolfTPM.git
17 lines
556 B
Plaintext
17 lines
556 B
Plaintext
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
|
|
if BUILD_EXAMPLES
|
|
noinst_PROGRAMS += examples/pkcs7/pkcs7
|
|
noinst_HEADERS += examples/pkcs7/pkcs7.h
|
|
examples_pkcs7_pkcs7_SOURCES = examples/pkcs7/pkcs7.c \
|
|
examples/tpm_test_keys.c
|
|
examples_pkcs7_pkcs7_LDADD = src/libwolftpm.la $(LIB_STATIC_ADD)
|
|
examples_pkcs7_pkcs7_DEPENDENCIES = src/libwolftpm.la
|
|
endif
|
|
|
|
example_pkcs7dir = $(exampledir)/pkcs7
|
|
dist_example_pkcs7_DATA = examples/pkcs7/pkcs7.c
|
|
|
|
DISTCLEANFILES+= examples/pkcs7/.libs/pkcs7
|