summaryrefslogtreecommitdiff
path: root/ssl/Makefile.ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-04-24 17:28:43 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-04-24 17:28:43 +0000
commit73934800474e5b333af2bff0a8f79f13405fb500 (patch)
tree11883a1b42ba53c8192b5d5d809926f0f9c4f0a8 /ssl/Makefile.ssl
parent50cfd175c9441533e16297652376ad1b870fb29b (diff)
downloadopenssl-new-73934800474e5b333af2bff0a8f79f13405fb500.tar.gz
Change the command line options of mkerr.pl so -static is now default and
a -write option is needed to actually change anything. Second attempt at getting rid of ERR, ERRC definitions: it might even work this time :-)
Diffstat (limited to 'ssl/Makefile.ssl')
-rw-r--r--ssl/Makefile.ssl5
1 files changed, 2 insertions, 3 deletions
diff --git a/ssl/Makefile.ssl b/ssl/Makefile.ssl
index 7f3bbb258c..c129a9d530 100644
--- a/ssl/Makefile.ssl
+++ b/ssl/Makefile.ssl
@@ -15,7 +15,6 @@ AR= ar r
CFLAGS= $(INCLUDES) $(CFLAG)
-ERRC=ssl_err
GENERAL=Makefile README
TEST=ssltest.c
APPS=
@@ -29,7 +28,7 @@ LIBSRC= \
ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \
ssl_ciph.c ssl_stat.c ssl_rsa.c \
ssl_asn1.c ssl_txt.c ssl_algs.c \
- bio_ssl.c $(ERRC).c
+ bio_ssl.c ssl_err.c
LIBOBJ= \
s2_meth.o s2_srvr.o s2_clnt.o s2_lib.o s2_enc.o s2_pkt.o \
s3_meth.o s3_srvr.o s3_clnt.o s3_lib.o s3_enc.o s3_pkt.o s3_both.o \
@@ -38,7 +37,7 @@ LIBOBJ= \
ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \
ssl_ciph.o ssl_stat.o ssl_rsa.o \
ssl_asn1.o ssl_txt.o ssl_algs.o \
- bio_ssl.o $(ERRC).o
+ bio_ssl.o ssl_err.o
SRC= $(LIBSRC)