mirror of https://github.com/wolfSSL/wolfTPM.git
22 lines
936 B
Plaintext
22 lines
936 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_io.c \
|
|
examples/tpm_io_atmel.c \
|
|
examples/tpm_io_barebox.c \
|
|
examples/tpm_io_linux.c \
|
|
examples/tpm_io_st.c \
|
|
examples/tpm_io_qnx.c \
|
|
examples/tpm_io_xilinx.c \
|
|
examples/tpm_test_keys.c
|
|
examples_pkcs7_pkcs7_LDADD = src/libwolftpm.la $(LIB_STATIC_ADD)
|
|
examples_pkcs7_pkcs7_DEPENDENCIES = src/libwolftpm.la
|
|
endif
|
|
|
|
dist_example_DATA+= examples/pkcs7/pkcs7.c
|
|
DISTCLEANFILES+= examples/pkcs7/.libs/pkcs7
|