aboutsummaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-04-02 18:36:52 +0200
committerRichard Levitte <levitte@openssl.org>2016-04-20 16:04:56 +0200
commit45c6e23c978da0b23df5e5a9a3c2e631b79ba497 (patch)
tree886bf62d10c214c2ea08d62f7cf04dbc8348fbdf /ssl
parentf863ad0c59374ee8cc91dcae71ef60ceabc969f1 (diff)
downloadopenssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.tar.gz
Remove --classic build entirely
The Unix build was the last to retain the classic build scheme. The new unified scheme has matured enough, even though some details may need polishing. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/Makefile.in81
1 files changed, 0 insertions, 81 deletions
diff --git a/ssl/Makefile.in b/ssl/Makefile.in
deleted file mode 100644
index 26444ca429..0000000000
--- a/ssl/Makefile.in
+++ /dev/null
@@ -1,81 +0,0 @@
-#
-# OpenSSL/ssl/Makefile
-#
-
-DIR= ssl
-TOP= ..
-CC= cc
-INCLUDES= -I$(TOP) -I../include
-CFLAG=-g
-MAKEFILE= Makefile
-AR= ar r
-
-CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
-
-GENERAL=Makefile README ssl-lib.com install.com
-
-LIB=$(TOP)/libssl.a
-SHARED_LIB= libssl$(SHLIB_EXT)
-LIBSRC= \
- pqueue.c \
- statem/statem_srvr.c statem/statem_clnt.c s3_lib.c s3_enc.c record/rec_layer_s3.c \
- statem/statem_lib.c s3_cbc.c s3_msg.c \
- methods.c t1_lib.c t1_enc.c t1_ext.c \
- d1_lib.c record/rec_layer_d1.c d1_msg.c \
- statem/statem_dtls.c d1_srtp.c \
- ssl_lib.c ssl_cert.c ssl_sess.c \
- ssl_ciph.c ssl_stat.c ssl_rsa.c \
- ssl_asn1.c ssl_txt.c ssl_init.c ssl_conf.c ssl_mcnf.c \
- bio_ssl.c ssl_err.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 \
- statem/statem.c
-LIBOBJ= \
- pqueue.o \
- statem/statem_srvr.o statem/statem_clnt.o s3_lib.o s3_enc.o record/rec_layer_s3.o \
- statem/statem_lib.o s3_cbc.o s3_msg.o \
- methods.o t1_lib.o t1_enc.o t1_ext.o \
- d1_lib.o record/rec_layer_d1.o d1_msg.o \
- statem/statem_dtls.o d1_srtp.o\
- ssl_lib.o ssl_cert.o ssl_sess.o \
- ssl_ciph.o ssl_stat.o ssl_rsa.o \
- ssl_asn1.o ssl_txt.o ssl_init.o ssl_conf.o ssl_mcnf.o \
- bio_ssl.o ssl_err.o t1_reneg.o tls_srp.o t1_trce.o ssl_utst.o \
- record/ssl3_buffer.o record/ssl3_record.o record/dtls1_bitmap.o \
- statem/statem.o
-
-SRC= $(LIBSRC)
-
-HEADER= ssl_locl.h record/record_locl.h record/record.h statem/statem.h
-
-ALL= $(GENERAL) $(SRC) $(HEADER)
-
-# BSD make and GNU make disagree on where output goes
-.c.o:
- $(CC) $(CFLAGS) -c $< -o $@
-
-top:
- (cd ..; $(MAKE) DIRS=$(DIR) all)
-
-all: shared
-
-lib: $(LIBOBJ)
- $(AR) $(LIB) $(LIBOBJ)
- $(RANLIB) $(LIB) || echo Never mind.
- @touch lib
-
-shared: lib
- if [ -n "$(SHARED_LIBS)" ]; then \
- (cd ..; $(MAKE) $(SHARED_LIB)); \
- fi
-
-depend:
- $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
-
-clean:
- rm -f $(LIBOBJ) *.obj lib tags core .pure .nfs* *.old *.bak fluff
- rm -f record/*.obj record/lib record/retags record/core \
- record/.pure record/.nfs* record/*.old record/*.bak record/fluff
- rm -f statem/*.obj statem/lib statem/retags statem/core \
- statem/.pure statem/.nfs* statem/*.old statem/*.bak statem/fluff
-
-# DO NOT DELETE THIS LINE -- make depend depends on it.