summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-10 12:46:05 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-10 12:46:05 +0000
commitfa4bde98d2667fbc86c216e82ac8d11a07267825 (patch)
tree5c047eec317e215aba4530f74bdbc48c0697d707 /demos
parentca80756c70ad8f05ccd5d37c01c38641f7da3d3d (diff)
downloadopenssl-new-fa4bde98d2667fbc86c216e82ac8d11a07267825.tar.gz
Add a few more target platforms, to see how well the shared library
linking works on them.
Diffstat (limited to 'demos')
-rw-r--r--demos/engines/rsaref/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/demos/engines/rsaref/Makefile b/demos/engines/rsaref/Makefile
index 003e35df2e..1364c13288 100644
--- a/demos/engines/rsaref/Makefile
+++ b/demos/engines/rsaref/Makefile
@@ -34,13 +34,17 @@ update: FORCE.update
perl ../../../util/mkerr.pl -conf rsaref.ec \
-nostatic -staticloader -write rsaref.c
+darwin: install $(SHLIB).darwin
+cygwin: install $(SHLIB).cygwin
gnu: install $(SHLIB).gnu
+alpha-osf1: install $(SHLIB).alpha-osf1
tru64: install $(SHLIB).tru64
solaris: install $(SHLIB).solaris
irix: install $(SHLIB).irix
hpux32: install $(SHLIB).hpux32
hpux64: install $(SHLIB).hpux64
aix: install $(SHLIB).aix
+reliantunix: install $(SHLIB).reliantunix
$(LIB): $(OBJ)
$(AR) $(LIB) $(OBJ)
@@ -51,6 +55,18 @@ LINK_SO= \
(nm -Pg $(LIBNAME).o | grep ' [BDT] ' | cut -f1 -d' ' > $(LIBNAME).exp; \
$$SHAREDCMD $$SHAREDFLAGS -o $(SHLIB) $(LIBNAME).o -L ../../.. -lcrypto -lc)
+$(SHLIB).darwin: $(LIB) install/librsaref.a
+ ALLSYMSFLAGS='-all_load' \
+ SHAREDFLAGS='-dynamiclib -install_name $(SHLIB)' \
+ SHAREDCMD='$(CC)'; \
+ $(LINK_SO)
+ touch $(SHLIB).gnu
+$(SHLIB).cygwin: $(LIB) install/librsaref.a
+ ALLSYMSFLAGS='--whole-archive' \
+ SHAREDFLAGS='-shared -Wl,-Bsymbolic -Wl,--out-implib,$(LIBNAME).dll.a' \
+ SHAREDCMD='$(CC)'; \
+ $(LINK_SO)
+ touch $(SHLIB).gnu
$(SHLIB).gnu: $(LIB) install/librsaref.a
ALLSYMSFLAGS='--whole-archive' \
SHAREDFLAGS='-shared -Wl,-soname=$(SHLIB)' \