mirror of https://github.com/wolfSSL/wolfTPM.git
16 lines
552 B
Plaintext
16 lines
552 B
Plaintext
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
|
|
if BUILD_EXAMPLES
|
|
noinst_PROGRAMS += examples/native/native_test
|
|
noinst_HEADERS += examples/native/native_test.h
|
|
examples_native_native_test_SOURCES = examples/native/native_test.c
|
|
examples_native_native_test_LDADD = src/libwolftpm.la $(LIB_STATIC_ADD)
|
|
examples_native_native_test_DEPENDENCIES = src/libwolftpm.la
|
|
endif
|
|
|
|
example_nativedir = $(exampledir)/native
|
|
dist_example_native_DATA = examples/native/native_test.c
|
|
|
|
DISTCLEANFILES+= examples/native/.libs/native_test
|