15 lines
380 B
Plaintext
15 lines
380 B
Plaintext
|
# vim:ft=automake
|
||
|
# included from Top Level Makefile.am
|
||
|
# All paths should be given relative to the root
|
||
|
|
||
|
if BUILD_MCAPI
|
||
|
check_PROGRAMS += mcapi/test
|
||
|
noinst_PROGRAMS += mcapi/test
|
||
|
mcapi_test_SOURCES = mcapi/crypto.c \
|
||
|
mcapi/test.c
|
||
|
mcapi_test_LDADD = src/libcyassl.la
|
||
|
mcapi_test_DEPENDENCIES = src/libcyassl.la
|
||
|
endif
|
||
|
|
||
|
noinst_HEADERS += mcapi/crypto.h
|