summaryrefslogtreecommitdiffstats
path: root/crypto/Makefile.in
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2015-10-25 17:43:55 +0100
committerMatt Caswell <matt@openssl.org>2016-02-26 10:00:36 +0000
commit71a04cfca03bf6d5a93ad3ffd23e0fb9e0da2919 (patch)
treef0c49fffc439de585b85ad95f94ebfd50fafce90 /crypto/Makefile.in
parentbdcd83e1272c84f3de576f793ba03fdc2c21a557 (diff)
Implement new multi-threading API
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/Makefile.in')
-rw-r--r--crypto/Makefile.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/Makefile.in b/crypto/Makefile.in
index c8184e5a5c..c29d44c7d3 100644
--- a/crypto/Makefile.in
+++ b/crypto/Makefile.in
@@ -34,9 +34,11 @@ LIB= $(TOP)/libcrypto.a
SHARED_LIB= libcrypto$(SHLIB_EXT)
LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c \
ebcdic.c uid.c o_time.c o_str.c o_dir.c thr_id.c lock.c \
+ threads_pthread.c threads_win.c threads_none.c \
o_init.c o_fips.c mem_sec.c init.c
LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o \
ebcdic.o uid.o o_time.o o_str.o o_dir.o thr_id.o lock.o \
+ threads_pthread.o threads_win.o threads_none.o \
o_init.o o_fips.o mem_sec.o init.o $(CPUID_OBJ)
SRC= $(LIBSRC)