Makefile.ssl 21.3 KB
Newer Older
1 2 3 4 5 6 7
#
# SSLeay/crypto/x509/Makefile
#

DIR=	x509
TOP=	../..
CC=	cc
8
INCLUDES= -I.. -I$(TOP) -I../../include
9
CFLAG=-g
10 11
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
12 13
INSTALLTOP=/usr/local/ssl
MAKE=		make -f Makefile.ssl
14 15
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 17 18 19 20 21 22 23 24 25 26
MAKEFILE=	Makefile.ssl
AR=		ar r

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile README
TEST=
APPS=

LIB=$(TOP)/libcrypto.a
LIBSRC=	x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \
27
	x509_obj.c x509_req.c x509spki.c x509_vfy.c \
28
	x509_set.c x509rset.c x509_err.c \
29
	x509name.c x509_v3.c x509_ext.c x509_att.c \
30
	x509type.c x509_lu.c x_all.c x509_txt.c \
31
	x509_trs.c by_file.c by_dir.c 
32
LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \
33
	x509_obj.o x509_req.o x509spki.o x509_vfy.o \
34
	x509_set.o x509rset.o x509_err.o \
35
	x509name.o x509_v3.o x509_ext.o x509_att.o \
36
	x509type.o x509_lu.o x_all.o x509_txt.o \
37
	x509_trs.o by_file.o by_dir.o
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52

SRC= $(LIBSRC)

EXHEADER= x509.h x509_vfy.h
HEADER=	$(EXHEADER)

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
53
	$(RANLIB) $(LIB) || echo Never mind.
54 55 56
	@touch lib

files:
57
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
58 59

links:
60
	@$(TOP)/util/point.sh Makefile.ssl Makefile
61 62 63
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
64 65 66 67

install:
	@for i in $(EXHEADER) ; \
	do  \
68 69
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
70 71 72 73 74 75 76 77 78 79 80
	done;

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
81
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
82 83

dclean:
84
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
85 86 87
	mv -f Makefile.new $(MAKEFILE)

clean:
88
	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
89 90

# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
91

92
by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
93 94 95 96 97
by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
by_dir.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
by_dir.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h
by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
98 99 100 101 102
by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
by_dir.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
by_dir.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
by_dir.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
103
by_dir.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
104
by_file.o: ../../e_os.h ../../include/openssl/asn1.h
105 106 107 108 109
by_file.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
by_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
by_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
110 111 112
by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
by_file.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
113
by_file.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
114 115 116
by_file.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
by_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
by_file.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
117
by_file.o: ../cryptlib.h
118
x509_att.o: ../../e_os.h ../../include/openssl/asn1.h
119 120 121 122 123 124
x509_att.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
x509_att.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
125
x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
126 127 128
x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_att.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
129 130
x509_att.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
x509_att.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
131
x509_att.o: ../cryptlib.h
132
x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h
133 134 135 136 137 138
x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
x509_cmp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
139
x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
140 141 142
x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_cmp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_cmp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
143 144
x509_cmp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
x509_cmp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
145
x509_cmp.o: ../cryptlib.h
146
x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h
147 148 149 150 151
x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509_d2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
152 153
x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
154
x509_d2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
155 156 157
x509_d2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
x509_d2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
x509_d2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
158
x509_d2.o: ../cryptlib.h
159
x509_def.o: ../../e_os.h ../../include/openssl/asn1.h
160 161 162 163 164
x509_def.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
165 166
x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509_def.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
167 168 169
x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_def.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_def.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
170
x509_def.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
171
x509_def.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
R
Richard Levitte 已提交
172
x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
173 174 175 176 177
x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
R
Richard Levitte 已提交
178
x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
179 180 181
x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
182
x509_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
183
x509_err.o: ../../include/openssl/x509_vfy.h
184
x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h
185 186 187 188 189 190
x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
x509_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
191
x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
192 193 194
x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
195 196
x509_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
x509_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
197
x509_ext.o: ../cryptlib.h
198
x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h
199 200 201 202 203 204
x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
x509_lu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_lu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
205 206 207 208 209 210
x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_lu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_lu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
x509_lu.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
x509_lu.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
211
x509_lu.o: ../cryptlib.h
212
x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h
213 214 215 216 217
x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509_obj.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
218 219
x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509_obj.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
220 221 222
x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_obj.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_obj.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
223
x509_obj.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
224
x509_obj.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
225
x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h
226 227 228 229 230
x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_r2x.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
231 232
x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509_r2x.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
233 234 235
x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_r2x.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_r2x.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
236
x509_r2x.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
237
x509_r2x.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
238
x509_req.o: ../../e_os.h ../../include/openssl/asn1.h
239 240 241 242 243
x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
244 245
x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509_req.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
246 247 248 249
x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
x509_req.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
x509_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
250
x509_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
251
x509_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
252
x509_set.o: ../../e_os.h ../../include/openssl/asn1.h
253 254 255 256 257
x509_set.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
258 259
x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509_set.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
260 261 262
x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_set.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_set.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
263
x509_set.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
264
x509_set.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
265
x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h
266 267 268 269 270 271
x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
x509_trs.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
272
x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
273 274 275
x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_trs.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_trs.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
276 277
x509_trs.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
x509_trs.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
278
x509_trs.o: ../cryptlib.h
279
x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h
280 281 282 283 284
x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509_txt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
285 286
x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509_txt.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
287 288 289
x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_txt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_txt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
290
x509_txt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
291
x509_txt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
292
x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h
293 294 295 296 297 298
x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
x509_v3.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
299 300 301 302 303 304
x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_v3.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_v3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
x509_v3.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
x509_v3.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
305
x509_v3.o: ../cryptlib.h
306
x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h
307 308 309 310 311 312
x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
x509_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
313
x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
314 315 316
x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_vfy.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
317 318
x509_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
x509_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
319
x509_vfy.o: ../cryptlib.h
320
x509name.o: ../../e_os.h ../../include/openssl/asn1.h
321 322 323 324 325
x509name.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509name.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
326 327
x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509name.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
328 329 330
x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
331
x509name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
332
x509name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
333
x509rset.o: ../../e_os.h ../../include/openssl/asn1.h
334 335 336 337 338
x509rset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509rset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
339 340
x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509rset.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
341 342 343
x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509rset.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509rset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
344
x509rset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
345
x509rset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
346
x509spki.o: ../../e_os.h ../../include/openssl/asn1.h
347 348 349 350 351
x509spki.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
352 353
x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509spki.o: ../../include/openssl/opensslconf.h
354 355 356
x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
357
x509spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
358
x509spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
359
x509type.o: ../../e_os.h ../../include/openssl/asn1.h
360 361 362 363 364
x509type.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
x509type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
x509type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
365 366
x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
x509type.o: ../../include/openssl/opensslconf.h
B
Bodo Möller 已提交
367 368 369
x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509type.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509type.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
R
Richard Levitte 已提交
370
x509type.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
371
x509type.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
372
x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
373 374 375 376 377
x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
378 379 380 381 382
x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
x_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
x_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
383
x_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h