aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-11-01 00:05:04 +0000
committerRichard Levitte <levitte@openssl.org>2000-11-01 00:05:04 +0000
commitdcea8e12e218bf30f9431cd82cc8a1ae9882d766 (patch)
treec4a27f1104fd0f2e02f30bb16992af0ad0b17631 /Makefile.org
parent26b264795d011f9b4b3deb116da39fc288fd278a (diff)
downloadopenssl-dcea8e12e218bf30f9431cd82cc8a1ae9882d766.tar.gz
Add support for shared libraries under Irix.
Submitted by Albert Chin-A-Young <china@thewrittenword.com>
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.org b/Makefile.org
index 77ed5c1f19..0c62ec96d7 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -279,6 +279,15 @@ do_solaris-shared:
done
# This assumes that GNU utilities are *not* used
+do_irix-shared:
+ libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
+ ( set -x; ${CC} -shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
+ -Wl,-soname,lib$$i.so.${SHLIB_MAJOR} \
+ -all lib$$i.a $$libs ${EX_LIBS} -lc) || exit 1; \
+ libs="$$libs -L. -l$$i"; \
+ done
+
+# This assumes that GNU utilities are *not* used
do_hpux-shared:
libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
( set -x; /usr/ccs/bin/ld +vnocompatwarnings \