diff options
author | unknown <msvensson@shellback.(none)> | 2006-04-11 23:51:14 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-04-11 23:51:14 +0200 |
commit | 066431faa5da523cc413cde118d14dd396baaad4 (patch) | |
tree | 104c454524a118364ed5b482aa73171ca953a272 /extra/yassl/testsuite | |
parent | 4a2cd8701bf6c16f77c93e1795215f8021eb2552 (diff) | |
download | mariadb-git-066431faa5da523cc413cde118d14dd396baaad4.tar.gz |
Add new yaSSL files
Add benchmark, testsuite and taocrypt/test as places where to
produce Makfiles and build - very useful for debugging
config/ac-macros/yassl.m4:
Add Makefiles for yassl testsuite and benchmark
extra/yassl/Makefile.am:
Add new subdir testsuite
extra/yassl/taocrypt/Makefile.am:
Add new subdir test for the taocrypt test
extra/yassl/taocrypt/src/Makefile.am:
Add all new files for yaSSL and organize them alphabetically
extra/yassl/taocrypt/benchmark/Makefile.am:
New BitKeeper file ``extra/yassl/taocrypt/benchmark/Makefile.am''
extra/yassl/taocrypt/test/Makefile.am:
New BitKeeper file ``extra/yassl/taocrypt/test/Makefile.am''
extra/yassl/testsuite/Makefile.am:
New BitKeeper file ``extra/yassl/testsuite/Makefile.am''
Diffstat (limited to 'extra/yassl/testsuite')
-rw-r--r-- | extra/yassl/testsuite/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/extra/yassl/testsuite/Makefile.am b/extra/yassl/testsuite/Makefile.am new file mode 100644 index 00000000000..3a07ac316e1 --- /dev/null +++ b/extra/yassl/testsuite/Makefile.am @@ -0,0 +1,11 @@ +INCLUDES = -I../include -I../taocrypt/include -I../mySTL +bin_PROGRAMS = testsuite +testsuite_SOURCES = testsuite.cpp ../taocrypt/test/test.cpp \ + ../examples/client/client.cpp ../examples/server/server.cpp \ + ../examples/echoclient/echoclient.cpp \ + ../examples/echoserver/echoserver.cpp +testsuite_LDFLAGS = -L../src/ -L../taocrypt/src $(PTHREAD_LDFLAGS) +testsuite_CXXFLAGS = -DYASSL_PURE_C -DNO_MAIN_DRIVER -Wall -Wno-unused $(PTHREAD_CFLAGS) +testsuite_LDADD = -lyassl -ltaocrypt $(EXTRA_PTHREAD) $(EXTRA_SOCKET) +testsuite_DEPENDENCIES = ../src/libyassl.la ../taocrypt/src/libtaocrypt.la +EXTRA_DIST = testsuite.dsp test.hpp input quit make.bat |