Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Side by Side Diff: openssl/crypto/dh/Makefile

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/crypto/des/xcbc_enc.c ('k') | openssl/crypto/dh/dh.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # OpenSSL/crypto/dh/Makefile 2 # OpenSSL/crypto/dh/Makefile
3 # 3 #
4 4
5 DIR= dh 5 DIR= dh
6 TOP= ../.. 6 TOP= ../..
7 CC= cc 7 CC= cc
8 INCLUDES= -I.. -I$(TOP) -I../../include 8 INCLUDES= -I.. -I$(TOP) -I../../include
9 CFLAG=-g 9 CFLAG=-g
10 MAKEFILE= Makefile 10 MAKEFILE= Makefile
11 AR= ar r 11 AR= ar r
12 12
13 CFLAGS= $(INCLUDES) $(CFLAG) 13 CFLAGS= $(INCLUDES) $(CFLAG)
14 14
15 GENERAL=Makefile 15 GENERAL=Makefile
16 TEST= dhtest.c 16 TEST= dhtest.c
17 APPS= 17 APPS=
18 18
19 LIB=$(TOP)/libcrypto.a 19 LIB=$(TOP)/libcrypto.a
20 LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c 20 LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c \
21 LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o dh_depr.o 21 » dh_ameth.c dh_pmeth.c dh_prn.c
22 LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o dh_depr.o \
23 » dh_ameth.o dh_pmeth.o dh_prn.o
22 24
23 SRC= $(LIBSRC) 25 SRC= $(LIBSRC)
24 26
25 EXHEADER= dh.h 27 EXHEADER= dh.h
26 HEADER= $(EXHEADER) 28 HEADER= $(EXHEADER)
27 29
28 ALL= $(GENERAL) $(SRC) $(HEADER) 30 ALL= $(GENERAL) $(SRC) $(HEADER)
29 31
30 top: 32 top:
31 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) 33 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
32 34
33 all: lib 35 all: lib
34 36
35 lib: $(LIBOBJ) 37 lib: $(LIBOBJ)
36 » $(ARX) $(LIB) $(LIBOBJ) 38 » $(AR) $(LIB) $(LIBOBJ)
37 $(RANLIB) $(LIB) || echo Never mind. 39 $(RANLIB) $(LIB) || echo Never mind.
38 @touch lib 40 @touch lib
39 41
40 files: 42 files:
41 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO 43 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
42 44
43 links: 45 links:
44 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) 46 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
45 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) 47 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
46 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) 48 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
(...skipping 20 matching lines...) Expand all
67 69
68 dclean: 70 dclean:
69 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new 71 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new
70 mv -f Makefile.new $(MAKEFILE) 72 mv -f Makefile.new $(MAKEFILE)
71 73
72 clean: 74 clean:
73 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 75 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
74 76
75 # DO NOT DELETE THIS LINE -- make depend depends on it. 77 # DO NOT DELETE THIS LINE -- make depend depends on it.
76 78
79 dh_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
80 dh_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
81 dh_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
82 dh_ameth.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
83 dh_ameth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
84 dh_ameth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
85 dh_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
86 dh_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
87 dh_ameth.o: ../../include/openssl/opensslconf.h
88 dh_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
89 dh_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
90 dh_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
91 dh_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
92 dh_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
93 dh_ameth.o: dh_ameth.c
77 dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h 94 dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
78 dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h 95 dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
79 dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 96 dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
80 dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h 97 dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
81 dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 98 dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
82 dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h 99 dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
83 dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 100 dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
84 dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h 101 dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
85 dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 102 dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
86 dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c 103 dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 dh_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h 139 dh_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
123 dh_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h 140 dh_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
124 dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 141 dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
125 dh_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_key.c 142 dh_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_key.c
126 dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h 143 dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
127 dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h 144 dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
128 dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h 145 dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
129 dh_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h 146 dh_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
130 dh_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h 147 dh_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
131 dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h 148 dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
132 dh_lib.o: ../../include/openssl/evp.h ../../include/openssl/fips.h 149 dh_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
133 dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h 150 dh_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
134 dh_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h 151 dh_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
135 dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h 152 dh_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
136 dh_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h 153 dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
137 dh_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h 154 dh_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
138 dh_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h 155 dh_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
139 dh_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h dh_lib.c 156 dh_lib.o: ../cryptlib.h dh_lib.c
157 dh_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
158 dh_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
159 dh_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
160 dh_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
161 dh_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
162 dh_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
163 dh_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
164 dh_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
165 dh_pmeth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
166 dh_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
167 dh_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
168 dh_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
169 dh_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
170 dh_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h
171 dh_pmeth.o: dh_pmeth.c
172 dh_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
173 dh_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
174 dh_prn.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
175 dh_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
176 dh_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
177 dh_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
178 dh_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
179 dh_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
180 dh_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_prn.c
OLDNEW
« no previous file with comments | « openssl/crypto/des/xcbc_enc.c ('k') | openssl/crypto/dh/dh.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698