summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-10-30 08:00:59 +0000
committerRichard Levitte <levitte@openssl.org>2001-10-30 08:00:59 +0000
commita7b42009c43876f126790b3dc4260e3728695cc4 (patch)
treedd9105aee8ac45cdfe118a2b9e3b13ecd026ab7f /test
parent7b5ffd683412b85d9b4195fc24b5966d41b591ae (diff)
Change the shared library support so the shared libraries get built
sooner and the programs get built against the shared libraries. This requires a bit more work. Things like -rpath and the possibility to still link the programs statically should be included. Some cleanup is also needed. This will be worked on.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.ssl6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Makefile.ssl b/test/Makefile.ssl
index fd9d992b82..b6e941913c 100644
--- a/test/Makefile.ssl
+++ b/test/Makefile.ssl
@@ -114,7 +114,11 @@ tests: exe apps $(TESTS)
apps:
@(cd ../apps; $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' all)
-alltests: \
+alltests:
+ (LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH=$$LIBPATH; SHLIB_PATH=$$LIBPATH; \
+ export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \
+ $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' alltests.chooser)
+alltests.chooser: \
test_des test_idea test_sha test_md4 test_md5 test_hmac \
test_md2 test_mdc2 \
test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_rd \