Revision 24e6a032bf6faeb8686a9d7b6eb6bf2d68e20a05 authored by Dr. Stephen Henson on 20 January 2015, 14:12:10 UTC, committed by Matt Caswell on 22 January 2015, 09:24:44 UTC
Don't use double newline for headers. Don't interpret ASN1_PCTX as start of an ASN.1 module. Reviewed-by: Tim Hudson <tjh@openssl.org>
1 parent 9d63b5e
Makefile.hpux10-cc
# Makefile.hpux-cc
major=0.9.8
slib=libssl
sh_slib=$(slib).sl.$(major)
clib=libcrypto
sh_clib=$(clib).sl.$(major)
all : $(clib).sl $(slib).sl
$(clib)_pic.a : $(clib).a
echo "Copying $? to $@"
cp -p $? $@
$(slib)_pic.a : $(slib).a
echo "Copying $? to $@"
cp -p $? $@
$(sh_clib) : $(clib)_pic.a
ld -b -s -z +h $@ -o $@ -Fl $(clib)_pic.a -ldld -lc
$(clib).sl : $(sh_clib)
rm -f $@
ln -s $? $@
$(sh_slib) : $(slib)_pic.a $(clib).sl
ld -b -s -z +h $@ -o $@ -Fl $(slib)_pic.a -ldld -lc
$(slib).sl : $(sh_slib)
rm -f $@
ln -s $? $@

Computing file changes ...