mirror of https://github.com/wolfSSL/wolfTPM.git
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
|
|
if BUILD_EXAMPLES
|
|
noinst_PROGRAMS += examples/timestamp/signed_timestamp
|
|
noinst_HEADERS += examples/timestamp/signed_timestamp.h
|
|
examples_timestamp_signed_timestamp_SOURCES = examples/timestamp/signed_timestamp.c \
|
|
examples/tpm_io.c \
|
|
examples/tpm_test_keys.c
|
|
examples_timestamp_signed_timestamp_LDADD = src/libwolftpm.la $(LIB_STATIC_ADD)
|
|
examples_timestamp_signed_timestamp_DEPENDENCIES = src/libwolftpm.la
|
|
endif
|
|
|
|
dist_example_DATA+= examples/timestamp/signed_timestamp.c
|
|
DISTCLEANFILES+= examples/timestamp/.libs/signed_timestamp
|
|
|
|
if BUILD_EXAMPLES
|
|
noinst_PROGRAMS += examples/timestamp/clock_set
|
|
noinst_HEADERS += examples/timestamp/clock_set.h
|
|
examples_timestamp_clock_set_SOURCES = examples/timestamp/clock_set.c \
|
|
examples/tpm_io.c
|
|
examples_timestamp_clock_set_LDADD = src/libwolftpm.la $(LIB_STATIC_ADD)
|
|
examples_timestamp_clock_set_DEPENDENCIES = src/libwolftpm.la
|
|
endif
|
|
|
|
dist_example_DATA+= examples/timestamp/clock_set.c
|
|
DISTCLEANFILES+= examples/timestamp/.libs/clock_set
|