summaryrefslogtreecommitdiffstats
path: root/ssl/Makefile
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-02-04 16:02:37 +0000
committerMatt Caswell <matt@openssl.org>2015-03-26 15:02:01 +0000
commit1711f8de45cdee01fdf21e55db5522d23b450867 (patch)
treec3a50c69d0981303a1b67edada753324bee6ea6f /ssl/Makefile
parent9e7ba3b2a2ffc049b4b5c664cf33473b475ce323 (diff)
Rename record layer source files
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/Makefile')
-rw-r--r--ssl/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/ssl/Makefile b/ssl/Makefile
index ae644bc6c4..d508d3944b 100644
--- a/ssl/Makefile
+++ b/ssl/Makefile
@@ -21,11 +21,11 @@ APPS=
LIB=$(TOP)/libssl.a
SHARED_LIB= libssl$(SHLIB_EXT)
LIBSRC= \
- s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c record/s3_pkt.c s3_both.c s3_cbc.c \
- s3_msg.c \
- s23_meth.c s23_srvr.c s23_clnt.c s23_lib.c record/s23_pkt.c \
+ s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c record/rec_layer_s3.c \
+ s3_both.c s3_cbc.c s3_msg.c \
+ s23_meth.c s23_srvr.c s23_clnt.c s23_lib.c record/rec_layer_s23.c \
t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c t1_ext.c \
- d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c record/d1_pkt.c d1_msg.c \
+ d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c record/rec_layer_d1.c d1_msg.c \
d1_both.c d1_srtp.c \
ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \
ssl_ciph.c ssl_stat.c ssl_rsa.c \
@@ -33,11 +33,11 @@ LIBSRC= \
bio_ssl.c ssl_err.c kssl.c t1_reneg.c tls_srp.c t1_trce.c ssl_utst.c \
record/ssl3_buffer.c record/ssl3_record.c record/dtls1_bitmap.c
LIBOBJ= \
- s3_meth.o s3_srvr.o s3_clnt.o s3_lib.o s3_enc.o record/s3_pkt.o s3_both.o s3_cbc.o \
- s3_msg.o \
- s23_meth.o s23_srvr.o s23_clnt.o s23_lib.o record/s23_pkt.o \
+ s3_meth.o s3_srvr.o s3_clnt.o s3_lib.o s3_enc.o record/rec_layer_s3.o \
+ s3_both.o s3_cbc.o s3_msg.o \
+ s23_meth.o s23_srvr.o s23_clnt.o s23_lib.o record/rec_layer_s23.o \
t1_meth.o t1_srvr.o t1_clnt.o t1_lib.o t1_enc.o t1_ext.o \
- d1_meth.o d1_srvr.o d1_clnt.o d1_lib.o record/d1_pkt.o d1_msg.o \
+ d1_meth.o d1_srvr.o d1_clnt.o d1_lib.o record/rec_layer_d1.o d1_msg.o \
d1_both.o d1_srtp.o\
ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \
ssl_ciph.o ssl_stat.o ssl_rsa.o \