diff options
author | Ulf Möller <ulf@openssl.org> | 2000-02-28 20:14:46 +0100 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2000-02-28 20:14:46 +0100 |
commit | a4709b3d88b5a8db2f5dd2b272bd82038fcf602a (patch) | |
tree | 2c996d1140fa61e61e110387a029613888f778b2 /Makefile.org | |
parent | Switch to 0.9.6, and finally remove the annoying message (diff) | |
download | openssl-a4709b3d88b5a8db2f5dd2b272bd82038fcf602a.tar.xz openssl-a4709b3d88b5a8db2f5dd2b272bd82038fcf602a.zip |
Shared library support for Solaris and HPUX
by Lutz Behnke and by Lutz Jaenicke.
Hopefully we'll have a unified way of handling shared libraries when
we move to autoconf...
Diffstat (limited to 'Makefile.org')
-rw-r--r-- | Makefile.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.org b/Makefile.org index be6894426f..a216f40c02 100644 --- a/Makefile.org +++ b/Makefile.org @@ -385,4 +385,11 @@ install_docs: > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec); \ done +shlib: all + if [ ! -d shlib_dir ] ; then mkdir shlib_dir ; else rm -f shlib_dir/* ; fi + cd shlib_dir ; ar -x ../libcrypto.a && $(CC) -shared ./*.o -Wl,-soname -Wl,libcrypto.so.0.9 \ + -o ./libcrypto.so.0.9.4 && rm *.o + cd shlib_dir ; ar -x ../libssl.a && $(CC) -shared ./*.o -Wl,-soname -Wl,libssl.so.0.9 \ + -o ./libssl.so.0.9.4 && rm *.o + # DO NOT DELETE THIS LINE -- make depend depends on it. |