Split built programs and scripts for tests

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19223 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-12-05 19:57:07 +00:00
parent 52d401d7cd
commit 8079e0a3dd

View File

@@ -45,20 +45,25 @@ install-build-headers:: $(hcryptoinclude_HEADERS)
fi ; \ fi ; \
done done
TESTS = \ PROGRAM_TESTS = \
destest \ destest \
mdtest \ mdtest \
rc2test \ rc2test \
rctest \ rctest \
test_bn \ test_bn \
test_crypto \
test_cipher \ test_cipher \
test_engine_dso \ test_engine_dso \
test_hmac \ test_hmac \
test_pkcs5 \ test_pkcs5 \
test_pkcs12 test_pkcs12
check_PROGRAMS = $(TESTS) test_rsa SCRIPT_TESTS = \
test_crypto
check_PROGRAMS = $(PROGRAM_TESTS) test_rsa
check_SCRIPTS = $(SCRIPT_TESTS)
TESTS = $(PROGRAM_TESTS) $(SCRIPT_TESTS)
LDADD = $(lib_LTLIBRARIES) $(LIB_roken) LDADD = $(lib_LTLIBRARIES) $(LIB_roken)