summaryrefslogtreecommitdiffstats
path: root/crypto/ct/Makefile.in
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-02-25 18:11:16 +0000
committerRich Salz <rsalz@openssl.org>2016-02-26 14:57:29 -0500
commit0cea8832df37d8fd3e664caec8abbdaa002122b1 (patch)
tree64ca3e44191f81b12c7a3f75baff67612679f85f /crypto/ct/Makefile.in
parent186d04a543498753103f4b6e99f3d4460fe2676d (diff)
Public API for Certificate Transparency
Reviewed-by: Ben Laurie <ben@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/ct/Makefile.in')
-rw-r--r--crypto/ct/Makefile.in9
1 files changed, 2 insertions, 7 deletions
diff --git a/crypto/ct/Makefile.in b/crypto/ct/Makefile.in
index 7e58c3b237..21ff2313ce 100644
--- a/crypto/ct/Makefile.in
+++ b/crypto/ct/Makefile.in
@@ -15,8 +15,8 @@ CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
GENERAL=Makefile
LIB=$(TOP)/libcrypto.a
-LIBSRC= ct_lib.c ct_err.c ct_oct.c ct_prn.c
-LIBOBJ= ct_lib.o ct_err.o ct_oct.o ct_prn.o
+LIBSRC= ct_err.c ct_oct.c ct_prn.c ct_sct.c ct_x509v3.c
+LIBOBJ= ct_err.o ct_oct.o ct_prn.o ct_sct.o ct_x509v3.o
SRC= $(LIBSRC)
@@ -27,8 +27,6 @@ ALL= $(GENERAL) $(SRC) $(HEADER)
top:
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
-test:
-
all: lib
lib: $(LIBOBJ)
@@ -39,9 +37,6 @@ lib: $(LIBOBJ)
files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
-errors:
- $(PERL) $(TOP)/util/mkerr.pl -conf ct.ec -hprefix internal/ -write *.c
-
depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)