diff options
author | Richard Levitte <levitte@openssl.org> | 2001-10-30 09:00:59 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-10-30 09:00:59 +0100 |
commit | a7b42009c43876f126790b3dc4260e3728695cc4 (patch) | |
tree | dd9105aee8ac45cdfe118a2b9e3b13ecd026ab7f /test | |
parent | Addapt VMS scripts to the newer disk layout system ODS-5, which allows more t... (diff) | |
download | openssl-a7b42009c43876f126790b3dc4260e3728695cc4.tar.xz openssl-a7b42009c43876f126790b3dc4260e3728695cc4.zip |
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.ssl | 6 |
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 \ |