Makefile revision 160814
1142425Snectar#
2142425Snectar#  apps/Makefile
3142425Snectar#
4142425Snectar
5142425SnectarDIR=		apps
6142425SnectarTOP=		..
7142425SnectarCC=		cc
8142425SnectarINCLUDES=	-I$(TOP) -I../include $(KRB5_INCLUDES)
9142425SnectarCFLAG=		-g -static
10142425SnectarMAKEFILE=	Makefile
11142425SnectarPERL=		perl
12142425SnectarRM=		rm -f
13142425Snectar# KRB5 stuff
14142425SnectarKRB5_INCLUDES=
15142425SnectarLIBKRB5=
16142425Snectar
17142425SnectarPEX_LIBS=
18142425SnectarEX_LIBS= 
19142425SnectarEXE_EXT= 
20142425Snectar
21142425SnectarSHLIB_TARGET=
22142425Snectar
23142425SnectarCFLAGS= -DMONOLITH $(INCLUDES) $(CFLAG)
24142425Snectar
25142425SnectarGENERAL=Makefile makeapps.com install.com
26142425Snectar
27142425SnectarDLIBCRYPTO=../libcrypto.a
28142425SnectarDLIBSSL=../libssl.a
29142425SnectarLIBCRYPTO=-L.. -lcrypto
30142425SnectarLIBSSL=-L.. -lssl
31142425Snectar
32142425SnectarPROGRAM= openssl
33142425Snectar
34160814SsimonSCRIPTS=CA.sh CA.pl
35142425Snectar
36142425SnectarEXE= $(PROGRAM)$(EXE_EXT)
37142425Snectar
38142425SnectarE_EXE=	verify asn1pars req dgst dh dhparam enc passwd gendh errstr \
39160814Ssimon	ca crl rsa rsautl dsa dsaparam ec ecparam \
40142425Snectar	x509 genrsa gendsa s_server s_client speed \
41142425Snectar	s_time version pkcs7 crl2pkcs7 sess_id ciphers nseq pkcs12 \
42142425Snectar	pkcs8 spkac smime rand engine ocsp prime
43142425Snectar
44142425SnectarPROGS= $(PROGRAM).c
45142425Snectar
46142425SnectarA_OBJ=apps.o
47142425SnectarA_SRC=apps.c
48142425SnectarS_OBJ=	s_cb.o s_socket.o
49142425SnectarS_SRC=	s_cb.c s_socket.c
50142425SnectarRAND_OBJ=app_rand.o
51142425SnectarRAND_SRC=app_rand.c
52142425Snectar
53142425SnectarE_OBJ=	verify.o asn1pars.o req.o dgst.o dh.o dhparam.o enc.o passwd.o gendh.o errstr.o \
54142425Snectar	ca.o pkcs7.o crl2p7.o crl.o \
55160814Ssimon	rsa.o rsautl.o dsa.o dsaparam.o ec.o ecparam.o \
56142425Snectar	x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o \
57142425Snectar	s_time.o $(A_OBJ) $(S_OBJ) $(RAND_OBJ) version.o sess_id.o \
58160814Ssimon	ciphers.o nseq.o pkcs12.o pkcs8.o spkac.o smime.o rand.o engine.o \
59160814Ssimon	ocsp.o prime.o
60142425Snectar
61142425SnectarE_SRC=	verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c ca.c \
62142425Snectar	pkcs7.c crl2p7.c crl.c \
63160814Ssimon	rsa.c rsautl.c dsa.c dsaparam.c ec.c ecparam.c \
64142425Snectar	x509.c genrsa.c gendsa.c s_server.c s_client.c speed.c \
65142425Snectar	s_time.c $(A_SRC) $(S_SRC) $(RAND_SRC) version.c sess_id.c \
66160814Ssimon	ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c engine.c \
67160814Ssimon	ocsp.c prime.c
68142425Snectar
69142425SnectarSRC=$(E_SRC)
70142425Snectar
71142425SnectarEXHEADER=
72142425SnectarHEADER=	apps.h progs.h s_apps.h \
73142425Snectar	testdsa.h testrsa.h \
74142425Snectar	$(EXHEADER)
75142425Snectar
76142425SnectarALL=    $(GENERAL) $(SRC) $(HEADER)
77142425Snectar
78142425Snectartop:
79142425Snectar	@(cd ..; $(MAKE) DIRS=$(DIR) all)
80142425Snectar
81142425Snectarall:	exe
82142425Snectar
83142425Snectarexe:	$(EXE)
84142425Snectar
85142425Snectarreq: sreq.o $(A_OBJ) $(DLIBCRYPTO)
86160814Ssimon	shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
87160814Ssimon		shlib_target="$(SHLIB_TARGET)"; \
88160814Ssimon	fi; \
89160814Ssimon	$(MAKE) -f $(TOP)/Makefile.shared -e \
90160814Ssimon		APPNAME=req OBJECTS="sreq.o $(A_OBJ) $(RAND_OBJ)" \
91160814Ssimon		LIBDEPS="$(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS)" \
92160814Ssimon		link_app.$${shlib_target}
93142425Snectar
94142425Snectarsreq.o: req.c 
95142425Snectar	$(CC) -c $(INCLUDES) $(CFLAG) -o sreq.o req.c
96142425Snectar
97142425Snectarfiles:
98142425Snectar	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
99142425Snectar
100142425Snectarinstall:
101160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
102160814Ssimon	@set -e; for i in $(EXE); \
103142425Snectar	do  \
104142425Snectar	(echo installing $$i; \
105142425Snectar	 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
106142425Snectar	 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
107142425Snectar	 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
108142425Snectar	 done;
109160814Ssimon	@set -e; for i in $(SCRIPTS); \
110142425Snectar	do  \
111142425Snectar	(echo installing $$i; \
112142425Snectar	 cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \
113142425Snectar	 chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \
114142425Snectar	 mv -f $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \
115142425Snectar	 done
116142425Snectar	@cp openssl.cnf $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf.new; \
117142425Snectar	chmod 644 $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf.new; \
118142425Snectar	mv -f  $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf.new $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf
119142425Snectar
120142425Snectartags:
121142425Snectar	ctags $(SRC)
122142425Snectar
123142425Snectartests:
124142425Snectar
125142425Snectarlinks:
126142425Snectar
127142425Snectarlint:
128142425Snectar	lint -DLINT $(INCLUDES) $(SRC)>fluff
129142425Snectar
130142425Snectardepend:
131160814Ssimon	@if [ -z "$(THIS)" ]; then \
132160814Ssimon	    $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
133160814Ssimon	else \
134160814Ssimon	    $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \
135160814Ssimon	fi
136142425Snectar
137142425Snectardclean:
138142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
139142425Snectar	mv -f Makefile.new $(MAKEFILE)
140142425Snectar
141142425Snectarclean:
142142425Snectar	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE)
143142425Snectar	rm -f req
144142425Snectar
145142425Snectar$(DLIBSSL):
146142425Snectar	(cd ..; $(MAKE) DIRS=ssl all)
147142425Snectar
148142425Snectar$(DLIBCRYPTO):
149142425Snectar	(cd ..; $(MAKE) DIRS=crypto all)
150142425Snectar
151142425Snectar$(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
152142425Snectar	$(RM) $(EXE)
153160814Ssimon	shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
154160814Ssimon		shlib_target="$(SHLIB_TARGET)"; \
155160814Ssimon	fi; \
156160814Ssimon	if [ "$${shlib_target}" = "darwin-shared" ] ; then \
157160814Ssimon	  LIBRARIES="$(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO)" ; \
158142425Snectar	else \
159160814Ssimon	  LIBRARIES="$(LIBSSL) $(LIBKRB5) $(LIBCRYPTO)" ; \
160160814Ssimon	fi; \
161160814Ssimon	$(MAKE) -f $(TOP)/Makefile.shared -e \
162160814Ssimon		APPNAME=$(EXE) OBJECTS="$(PROGRAM).o $(E_OBJ)" \
163160814Ssimon		LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
164160814Ssimon		link_app.$${shlib_target}
165160814Ssimon	-(cd ..; \
166160814Ssimon	  OPENSSL="`pwd`/util/opensslwrap.sh"; export OPENSSL; \
167160814Ssimon	  $(PERL) tools/c_rehash certs)
168142425Snectar
169142425Snectarprogs.h: progs.pl
170142425Snectar	$(PERL) progs.pl $(E_EXE) >progs.h
171142425Snectar	$(RM) $(PROGRAM).o
172142425Snectar
173142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
174142425Snectar
175160814Ssimonapp_rand.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
176160814Ssimonapp_rand.o: ../include/openssl/buffer.h ../include/openssl/conf.h
177160814Ssimonapp_rand.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
178160814Ssimonapp_rand.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
179160814Ssimonapp_rand.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
180160814Ssimonapp_rand.o: ../include/openssl/evp.h ../include/openssl/lhash.h
181160814Ssimonapp_rand.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
182160814Ssimonapp_rand.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
183160814Ssimonapp_rand.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
184160814Ssimonapp_rand.o: ../include/openssl/rand.h ../include/openssl/safestack.h
185142425Snectarapp_rand.o: ../include/openssl/sha.h ../include/openssl/stack.h
186142425Snectarapp_rand.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
187142425Snectarapp_rand.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h app_rand.c
188142425Snectarapp_rand.o: apps.h
189160814Ssimonapps.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
190142425Snectarapps.o: ../include/openssl/bn.h ../include/openssl/buffer.h
191160814Ssimonapps.o: ../include/openssl/conf.h ../include/openssl/crypto.h
192160814Ssimonapps.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
193160814Ssimonapps.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
194142425Snectarapps.o: ../include/openssl/engine.h ../include/openssl/err.h
195160814Ssimonapps.o: ../include/openssl/evp.h ../include/openssl/lhash.h
196160814Ssimonapps.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
197160814Ssimonapps.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
198160814Ssimonapps.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
199160814Ssimonapps.o: ../include/openssl/pem2.h ../include/openssl/pkcs12.h
200160814Ssimonapps.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h
201142425Snectarapps.o: ../include/openssl/safestack.h ../include/openssl/sha.h
202142425Snectarapps.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
203142425Snectarapps.o: ../include/openssl/txt_db.h ../include/openssl/ui.h
204160814Ssimonapps.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
205160814Ssimonapps.o: ../include/openssl/x509v3.h apps.c apps.h
206160814Ssimonasn1pars.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
207160814Ssimonasn1pars.o: ../include/openssl/buffer.h ../include/openssl/conf.h
208160814Ssimonasn1pars.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
209160814Ssimonasn1pars.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
210160814Ssimonasn1pars.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
211160814Ssimonasn1pars.o: ../include/openssl/err.h ../include/openssl/evp.h
212160814Ssimonasn1pars.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
213142425Snectarasn1pars.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
214142425Snectarasn1pars.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
215142425Snectarasn1pars.o: ../include/openssl/pem.h ../include/openssl/pem2.h
216160814Ssimonasn1pars.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
217142425Snectarasn1pars.o: ../include/openssl/sha.h ../include/openssl/stack.h
218142425Snectarasn1pars.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
219142425Snectarasn1pars.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h
220142425Snectarasn1pars.o: asn1pars.c
221160814Ssimonca.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
222142425Snectarca.o: ../include/openssl/bn.h ../include/openssl/buffer.h
223160814Ssimonca.o: ../include/openssl/conf.h ../include/openssl/crypto.h
224160814Ssimonca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
225160814Ssimonca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
226142425Snectarca.o: ../include/openssl/engine.h ../include/openssl/err.h
227160814Ssimonca.o: ../include/openssl/evp.h ../include/openssl/lhash.h
228160814Ssimonca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
229160814Ssimonca.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h
230160814Ssimonca.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
231160814Ssimonca.o: ../include/openssl/pem.h ../include/openssl/pem2.h
232160814Ssimonca.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
233160814Ssimonca.o: ../include/openssl/sha.h ../include/openssl/stack.h
234160814Ssimonca.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
235160814Ssimonca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
236160814Ssimonca.o: ../include/openssl/x509v3.h apps.h ca.c
237160814Ssimonciphers.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
238142425Snectarciphers.o: ../include/openssl/bn.h ../include/openssl/buffer.h
239160814Ssimonciphers.o: ../include/openssl/comp.h ../include/openssl/conf.h
240160814Ssimonciphers.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
241160814Ssimonciphers.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
242160814Ssimonciphers.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
243160814Ssimonciphers.o: ../include/openssl/engine.h ../include/openssl/err.h
244160814Ssimonciphers.o: ../include/openssl/evp.h ../include/openssl/kssl.h
245160814Ssimonciphers.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
246142425Snectarciphers.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
247142425Snectarciphers.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
248142425Snectarciphers.o: ../include/openssl/pem.h ../include/openssl/pem2.h
249160814Ssimonciphers.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
250160814Ssimonciphers.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h
251142425Snectarciphers.o: ../include/openssl/sha.h ../include/openssl/ssl.h
252142425Snectarciphers.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
253142425Snectarciphers.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
254142425Snectarciphers.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
255160814Ssimonciphers.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
256142425Snectarciphers.o: ../include/openssl/x509_vfy.h apps.h ciphers.c
257160814Ssimoncrl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
258160814Ssimoncrl.o: ../include/openssl/buffer.h ../include/openssl/conf.h
259160814Ssimoncrl.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
260160814Ssimoncrl.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
261160814Ssimoncrl.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
262160814Ssimoncrl.o: ../include/openssl/err.h ../include/openssl/evp.h
263160814Ssimoncrl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
264142425Snectarcrl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
265142425Snectarcrl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
266142425Snectarcrl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
267160814Ssimoncrl.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
268142425Snectarcrl.o: ../include/openssl/sha.h ../include/openssl/stack.h
269142425Snectarcrl.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
270142425Snectarcrl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
271142425Snectarcrl.o: ../include/openssl/x509v3.h apps.h crl.c
272160814Ssimoncrl2p7.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
273160814Ssimoncrl2p7.o: ../include/openssl/buffer.h ../include/openssl/conf.h
274160814Ssimoncrl2p7.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
275160814Ssimoncrl2p7.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
276160814Ssimoncrl2p7.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
277160814Ssimoncrl2p7.o: ../include/openssl/err.h ../include/openssl/evp.h
278160814Ssimoncrl2p7.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
279142425Snectarcrl2p7.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
280142425Snectarcrl2p7.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
281142425Snectarcrl2p7.o: ../include/openssl/pem.h ../include/openssl/pem2.h
282160814Ssimoncrl2p7.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
283142425Snectarcrl2p7.o: ../include/openssl/sha.h ../include/openssl/stack.h
284142425Snectarcrl2p7.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
285142425Snectarcrl2p7.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h
286142425Snectarcrl2p7.o: crl2p7.c
287160814Ssimondgst.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
288160814Ssimondgst.o: ../include/openssl/buffer.h ../include/openssl/conf.h
289160814Ssimondgst.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
290160814Ssimondgst.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
291160814Ssimondgst.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
292160814Ssimondgst.o: ../include/openssl/err.h ../include/openssl/evp.h
293160814Ssimondgst.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
294160814Ssimondgst.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
295160814Ssimondgst.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
296160814Ssimondgst.o: ../include/openssl/pem.h ../include/openssl/pem2.h
297160814Ssimondgst.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
298160814Ssimondgst.o: ../include/openssl/sha.h ../include/openssl/stack.h
299160814Ssimondgst.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
300160814Ssimondgst.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h dgst.c
301160814Ssimondh.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
302142425Snectardh.o: ../include/openssl/bn.h ../include/openssl/buffer.h
303160814Ssimondh.o: ../include/openssl/conf.h ../include/openssl/crypto.h
304160814Ssimondh.o: ../include/openssl/dh.h ../include/openssl/e_os2.h
305160814Ssimondh.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
306160814Ssimondh.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
307160814Ssimondh.o: ../include/openssl/err.h ../include/openssl/evp.h
308160814Ssimondh.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
309142425Snectardh.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
310142425Snectardh.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
311142425Snectardh.o: ../include/openssl/pem.h ../include/openssl/pem2.h
312160814Ssimondh.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
313142425Snectardh.o: ../include/openssl/sha.h ../include/openssl/stack.h
314142425Snectardh.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
315142425Snectardh.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h dh.c
316160814Ssimondsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
317142425Snectardsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h
318160814Ssimondsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h
319142425Snectardsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
320160814Ssimondsa.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
321160814Ssimondsa.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
322160814Ssimondsa.o: ../include/openssl/err.h ../include/openssl/evp.h
323160814Ssimondsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
324142425Snectardsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
325142425Snectardsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
326142425Snectardsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h
327160814Ssimondsa.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
328142425Snectardsa.o: ../include/openssl/sha.h ../include/openssl/stack.h
329142425Snectardsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
330142425Snectardsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h dsa.c
331160814Ssimondsaparam.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
332142425Snectardsaparam.o: ../include/openssl/bn.h ../include/openssl/buffer.h
333160814Ssimondsaparam.o: ../include/openssl/conf.h ../include/openssl/crypto.h
334160814Ssimondsaparam.o: ../include/openssl/dh.h ../include/openssl/dsa.h
335160814Ssimondsaparam.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
336160814Ssimondsaparam.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
337142425Snectardsaparam.o: ../include/openssl/engine.h ../include/openssl/err.h
338160814Ssimondsaparam.o: ../include/openssl/evp.h ../include/openssl/lhash.h
339160814Ssimondsaparam.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
340160814Ssimondsaparam.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
341160814Ssimondsaparam.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
342160814Ssimondsaparam.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
343160814Ssimondsaparam.o: ../include/openssl/rand.h ../include/openssl/rsa.h
344160814Ssimondsaparam.o: ../include/openssl/safestack.h ../include/openssl/sha.h
345160814Ssimondsaparam.o: ../include/openssl/stack.h ../include/openssl/store.h
346142425Snectardsaparam.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
347160814Ssimondsaparam.o: ../include/openssl/ui.h ../include/openssl/x509.h
348160814Ssimondsaparam.o: ../include/openssl/x509_vfy.h apps.h dsaparam.c
349160814Ssimonec.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
350160814Ssimonec.o: ../include/openssl/buffer.h ../include/openssl/conf.h
351160814Ssimonec.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
352160814Ssimonec.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
353160814Ssimonec.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
354160814Ssimonec.o: ../include/openssl/err.h ../include/openssl/evp.h
355160814Ssimonec.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
356160814Ssimonec.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
357160814Ssimonec.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
358160814Ssimonec.o: ../include/openssl/pem.h ../include/openssl/pem2.h
359160814Ssimonec.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
360160814Ssimonec.o: ../include/openssl/sha.h ../include/openssl/stack.h
361160814Ssimonec.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
362160814Ssimonec.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h ec.c
363160814Ssimonecparam.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
364160814Ssimonecparam.o: ../include/openssl/bn.h ../include/openssl/buffer.h
365160814Ssimonecparam.o: ../include/openssl/conf.h ../include/openssl/crypto.h
366160814Ssimonecparam.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
367160814Ssimonecparam.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
368160814Ssimonecparam.o: ../include/openssl/engine.h ../include/openssl/err.h
369160814Ssimonecparam.o: ../include/openssl/evp.h ../include/openssl/lhash.h
370160814Ssimonecparam.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
371160814Ssimonecparam.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
372160814Ssimonecparam.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
373160814Ssimonecparam.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
374160814Ssimonecparam.o: ../include/openssl/safestack.h ../include/openssl/sha.h
375160814Ssimonecparam.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
376160814Ssimonecparam.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
377160814Ssimonecparam.o: ../include/openssl/x509_vfy.h apps.h ecparam.c
378160814Ssimonenc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
379160814Ssimonenc.o: ../include/openssl/buffer.h ../include/openssl/conf.h
380160814Ssimonenc.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
381160814Ssimonenc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
382160814Ssimonenc.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
383160814Ssimonenc.o: ../include/openssl/err.h ../include/openssl/evp.h
384160814Ssimonenc.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
385142425Snectarenc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
386142425Snectarenc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
387142425Snectarenc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
388142425Snectarenc.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
389160814Ssimonenc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
390160814Ssimonenc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
391160814Ssimonenc.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
392160814Ssimonenc.o: ../include/openssl/x509_vfy.h apps.h enc.c
393160814Ssimonengine.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
394142425Snectarengine.o: ../include/openssl/bn.h ../include/openssl/buffer.h
395160814Ssimonengine.o: ../include/openssl/comp.h ../include/openssl/conf.h
396160814Ssimonengine.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
397160814Ssimonengine.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
398160814Ssimonengine.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
399160814Ssimonengine.o: ../include/openssl/engine.h ../include/openssl/err.h
400160814Ssimonengine.o: ../include/openssl/evp.h ../include/openssl/kssl.h
401160814Ssimonengine.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
402142425Snectarengine.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
403142425Snectarengine.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
404142425Snectarengine.o: ../include/openssl/pem.h ../include/openssl/pem2.h
405160814Ssimonengine.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
406160814Ssimonengine.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h
407142425Snectarengine.o: ../include/openssl/sha.h ../include/openssl/ssl.h
408142425Snectarengine.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
409142425Snectarengine.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
410142425Snectarengine.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
411160814Ssimonengine.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
412142425Snectarengine.o: ../include/openssl/x509_vfy.h apps.h engine.c
413160814Ssimonerrstr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
414142425Snectarerrstr.o: ../include/openssl/bn.h ../include/openssl/buffer.h
415160814Ssimonerrstr.o: ../include/openssl/comp.h ../include/openssl/conf.h
416160814Ssimonerrstr.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
417160814Ssimonerrstr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
418160814Ssimonerrstr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
419160814Ssimonerrstr.o: ../include/openssl/engine.h ../include/openssl/err.h
420160814Ssimonerrstr.o: ../include/openssl/evp.h ../include/openssl/kssl.h
421160814Ssimonerrstr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
422142425Snectarerrstr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
423142425Snectarerrstr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
424142425Snectarerrstr.o: ../include/openssl/pem.h ../include/openssl/pem2.h
425160814Ssimonerrstr.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
426160814Ssimonerrstr.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h
427142425Snectarerrstr.o: ../include/openssl/sha.h ../include/openssl/ssl.h
428142425Snectarerrstr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
429142425Snectarerrstr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
430142425Snectarerrstr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
431160814Ssimonerrstr.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
432142425Snectarerrstr.o: ../include/openssl/x509_vfy.h apps.h errstr.c
433160814Ssimongendh.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
434142425Snectargendh.o: ../include/openssl/bn.h ../include/openssl/buffer.h
435160814Ssimongendh.o: ../include/openssl/conf.h ../include/openssl/crypto.h
436160814Ssimongendh.o: ../include/openssl/dh.h ../include/openssl/dsa.h
437160814Ssimongendh.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
438160814Ssimongendh.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
439142425Snectargendh.o: ../include/openssl/engine.h ../include/openssl/err.h
440160814Ssimongendh.o: ../include/openssl/evp.h ../include/openssl/lhash.h
441160814Ssimongendh.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
442160814Ssimongendh.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
443160814Ssimongendh.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
444160814Ssimongendh.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
445160814Ssimongendh.o: ../include/openssl/rand.h ../include/openssl/rsa.h
446160814Ssimongendh.o: ../include/openssl/safestack.h ../include/openssl/sha.h
447160814Ssimongendh.o: ../include/openssl/stack.h ../include/openssl/store.h
448142425Snectargendh.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
449160814Ssimongendh.o: ../include/openssl/ui.h ../include/openssl/x509.h
450160814Ssimongendh.o: ../include/openssl/x509_vfy.h apps.h gendh.c
451160814Ssimongendsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
452142425Snectargendsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h
453160814Ssimongendsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h
454142425Snectargendsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
455160814Ssimongendsa.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
456160814Ssimongendsa.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
457160814Ssimongendsa.o: ../include/openssl/err.h ../include/openssl/evp.h
458160814Ssimongendsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
459142425Snectargendsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
460142425Snectargendsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
461142425Snectargendsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h
462160814Ssimongendsa.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
463142425Snectargendsa.o: ../include/openssl/sha.h ../include/openssl/stack.h
464142425Snectargendsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
465142425Snectargendsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h
466142425Snectargendsa.o: gendsa.c
467160814Ssimongenrsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
468142425Snectargenrsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h
469160814Ssimongenrsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h
470160814Ssimongenrsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h
471160814Ssimongenrsa.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
472160814Ssimongenrsa.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
473142425Snectargenrsa.o: ../include/openssl/engine.h ../include/openssl/err.h
474160814Ssimongenrsa.o: ../include/openssl/evp.h ../include/openssl/lhash.h
475160814Ssimongenrsa.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
476160814Ssimongenrsa.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
477160814Ssimongenrsa.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
478160814Ssimongenrsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
479160814Ssimongenrsa.o: ../include/openssl/rand.h ../include/openssl/rsa.h
480160814Ssimongenrsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h
481160814Ssimongenrsa.o: ../include/openssl/stack.h ../include/openssl/store.h
482142425Snectargenrsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
483160814Ssimongenrsa.o: ../include/openssl/ui.h ../include/openssl/x509.h
484160814Ssimongenrsa.o: ../include/openssl/x509_vfy.h apps.h genrsa.c
485160814Ssimonnseq.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
486160814Ssimonnseq.o: ../include/openssl/buffer.h ../include/openssl/conf.h
487160814Ssimonnseq.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
488160814Ssimonnseq.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
489160814Ssimonnseq.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
490160814Ssimonnseq.o: ../include/openssl/err.h ../include/openssl/evp.h
491160814Ssimonnseq.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
492142425Snectarnseq.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
493142425Snectarnseq.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
494142425Snectarnseq.o: ../include/openssl/pem.h ../include/openssl/pem2.h
495160814Ssimonnseq.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
496142425Snectarnseq.o: ../include/openssl/sha.h ../include/openssl/stack.h
497142425Snectarnseq.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
498142425Snectarnseq.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h nseq.c
499160814Ssimonocsp.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
500142425Snectarocsp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
501160814Ssimonocsp.o: ../include/openssl/comp.h ../include/openssl/conf.h
502160814Ssimonocsp.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
503160814Ssimonocsp.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
504160814Ssimonocsp.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
505160814Ssimonocsp.o: ../include/openssl/engine.h ../include/openssl/err.h
506160814Ssimonocsp.o: ../include/openssl/evp.h ../include/openssl/kssl.h
507160814Ssimonocsp.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
508142425Snectarocsp.o: ../include/openssl/objects.h ../include/openssl/ocsp.h
509142425Snectarocsp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
510142425Snectarocsp.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
511142425Snectarocsp.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
512160814Ssimonocsp.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h
513142425Snectarocsp.o: ../include/openssl/safestack.h ../include/openssl/sha.h
514142425Snectarocsp.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
515142425Snectarocsp.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
516142425Snectarocsp.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
517142425Snectarocsp.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h
518142425Snectarocsp.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
519142425Snectarocsp.o: ../include/openssl/x509v3.h apps.h ocsp.c
520160814Ssimonopenssl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
521142425Snectaropenssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h
522160814Ssimonopenssl.o: ../include/openssl/comp.h ../include/openssl/conf.h
523160814Ssimonopenssl.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
524160814Ssimonopenssl.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
525160814Ssimonopenssl.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
526160814Ssimonopenssl.o: ../include/openssl/engine.h ../include/openssl/err.h
527160814Ssimonopenssl.o: ../include/openssl/evp.h ../include/openssl/kssl.h
528160814Ssimonopenssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
529160814Ssimonopenssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
530160814Ssimonopenssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
531160814Ssimonopenssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
532160814Ssimonopenssl.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
533160814Ssimonopenssl.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h
534160814Ssimonopenssl.o: ../include/openssl/sha.h ../include/openssl/ssl.h
535160814Ssimonopenssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
536160814Ssimonopenssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
537160814Ssimonopenssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
538160814Ssimonopenssl.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
539160814Ssimonopenssl.o: ../include/openssl/x509_vfy.h apps.h openssl.c progs.h s_apps.h
540160814Ssimonpasswd.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
541160814Ssimonpasswd.o: ../include/openssl/buffer.h ../include/openssl/conf.h
542142425Snectarpasswd.o: ../include/openssl/crypto.h ../include/openssl/des.h
543160814Ssimonpasswd.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h
544160814Ssimonpasswd.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
545160814Ssimonpasswd.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
546160814Ssimonpasswd.o: ../include/openssl/err.h ../include/openssl/evp.h
547160814Ssimonpasswd.o: ../include/openssl/lhash.h ../include/openssl/md5.h
548160814Ssimonpasswd.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
549160814Ssimonpasswd.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
550160814Ssimonpasswd.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
551160814Ssimonpasswd.o: ../include/openssl/rand.h ../include/openssl/safestack.h
552142425Snectarpasswd.o: ../include/openssl/sha.h ../include/openssl/stack.h
553142425Snectarpasswd.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
554142425Snectarpasswd.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h
555142425Snectarpasswd.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h
556142425Snectarpasswd.o: passwd.c
557160814Ssimonpkcs12.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
558160814Ssimonpkcs12.o: ../include/openssl/buffer.h ../include/openssl/conf.h
559160814Ssimonpkcs12.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
560160814Ssimonpkcs12.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
561160814Ssimonpkcs12.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
562160814Ssimonpkcs12.o: ../include/openssl/err.h ../include/openssl/evp.h
563160814Ssimonpkcs12.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
564142425Snectarpkcs12.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
565142425Snectarpkcs12.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
566142425Snectarpkcs12.o: ../include/openssl/pem.h ../include/openssl/pem2.h
567142425Snectarpkcs12.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h
568142425Snectarpkcs12.o: ../include/openssl/safestack.h ../include/openssl/sha.h
569142425Snectarpkcs12.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
570160814Ssimonpkcs12.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
571142425Snectarpkcs12.o: ../include/openssl/x509_vfy.h apps.h pkcs12.c
572160814Ssimonpkcs7.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
573160814Ssimonpkcs7.o: ../include/openssl/buffer.h ../include/openssl/conf.h
574160814Ssimonpkcs7.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
575160814Ssimonpkcs7.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
576160814Ssimonpkcs7.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
577160814Ssimonpkcs7.o: ../include/openssl/err.h ../include/openssl/evp.h
578160814Ssimonpkcs7.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
579142425Snectarpkcs7.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
580142425Snectarpkcs7.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
581142425Snectarpkcs7.o: ../include/openssl/pem.h ../include/openssl/pem2.h
582160814Ssimonpkcs7.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
583142425Snectarpkcs7.o: ../include/openssl/sha.h ../include/openssl/stack.h
584142425Snectarpkcs7.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
585142425Snectarpkcs7.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h pkcs7.c
586160814Ssimonpkcs8.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
587160814Ssimonpkcs8.o: ../include/openssl/buffer.h ../include/openssl/conf.h
588160814Ssimonpkcs8.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
589160814Ssimonpkcs8.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
590160814Ssimonpkcs8.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
591160814Ssimonpkcs8.o: ../include/openssl/err.h ../include/openssl/evp.h
592160814Ssimonpkcs8.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
593142425Snectarpkcs8.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
594142425Snectarpkcs8.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
595142425Snectarpkcs8.o: ../include/openssl/pem.h ../include/openssl/pem2.h
596142425Snectarpkcs8.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h
597142425Snectarpkcs8.o: ../include/openssl/safestack.h ../include/openssl/sha.h
598142425Snectarpkcs8.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
599160814Ssimonpkcs8.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
600142425Snectarpkcs8.o: ../include/openssl/x509_vfy.h apps.h pkcs8.c
601160814Ssimonprime.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
602142425Snectarprime.o: ../include/openssl/bn.h ../include/openssl/buffer.h
603160814Ssimonprime.o: ../include/openssl/conf.h ../include/openssl/crypto.h
604160814Ssimonprime.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
605160814Ssimonprime.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
606160814Ssimonprime.o: ../include/openssl/engine.h ../include/openssl/evp.h
607160814Ssimonprime.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
608142425Snectarprime.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
609142425Snectarprime.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
610160814Ssimonprime.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
611142425Snectarprime.o: ../include/openssl/sha.h ../include/openssl/stack.h
612142425Snectarprime.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
613142425Snectarprime.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h prime.c
614160814Ssimonrand.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
615160814Ssimonrand.o: ../include/openssl/buffer.h ../include/openssl/conf.h
616160814Ssimonrand.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
617160814Ssimonrand.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
618160814Ssimonrand.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
619160814Ssimonrand.o: ../include/openssl/err.h ../include/openssl/evp.h
620160814Ssimonrand.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
621142425Snectarrand.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
622142425Snectarrand.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
623142425Snectarrand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
624160814Ssimonrand.o: ../include/openssl/safestack.h ../include/openssl/sha.h
625160814Ssimonrand.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
626160814Ssimonrand.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
627160814Ssimonrand.o: ../include/openssl/x509_vfy.h apps.h rand.c
628160814Ssimonreq.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
629160814Ssimonreq.o: ../include/openssl/bn.h ../include/openssl/buffer.h
630142425Snectarreq.o: ../include/openssl/conf.h ../include/openssl/crypto.h
631142425Snectarreq.o: ../include/openssl/dh.h ../include/openssl/dsa.h
632160814Ssimonreq.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
633160814Ssimonreq.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
634160814Ssimonreq.o: ../include/openssl/engine.h ../include/openssl/err.h
635160814Ssimonreq.o: ../include/openssl/evp.h ../include/openssl/lhash.h
636142425Snectarreq.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
637142425Snectarreq.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
638142425Snectarreq.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
639142425Snectarreq.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
640160814Ssimonreq.o: ../include/openssl/rand.h ../include/openssl/rsa.h
641142425Snectarreq.o: ../include/openssl/safestack.h ../include/openssl/sha.h
642160814Ssimonreq.o: ../include/openssl/stack.h ../include/openssl/store.h
643160814Ssimonreq.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
644160814Ssimonreq.o: ../include/openssl/ui.h ../include/openssl/x509.h
645142425Snectarreq.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h req.c
646160814Ssimonrsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
647142425Snectarrsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h
648160814Ssimonrsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h
649160814Ssimonrsa.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
650160814Ssimonrsa.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
651142425Snectarrsa.o: ../include/openssl/engine.h ../include/openssl/err.h
652160814Ssimonrsa.o: ../include/openssl/evp.h ../include/openssl/lhash.h
653160814Ssimonrsa.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
654160814Ssimonrsa.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
655160814Ssimonrsa.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
656160814Ssimonrsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
657142425Snectarrsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
658142425Snectarrsa.o: ../include/openssl/sha.h ../include/openssl/stack.h
659142425Snectarrsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
660142425Snectarrsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h rsa.c
661160814Ssimonrsautl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
662160814Ssimonrsautl.o: ../include/openssl/buffer.h ../include/openssl/conf.h
663160814Ssimonrsautl.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
664160814Ssimonrsautl.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
665160814Ssimonrsautl.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
666160814Ssimonrsautl.o: ../include/openssl/err.h ../include/openssl/evp.h
667160814Ssimonrsautl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
668142425Snectarrsautl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
669142425Snectarrsautl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
670142425Snectarrsautl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
671160814Ssimonrsautl.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h
672160814Ssimonrsautl.o: ../include/openssl/safestack.h ../include/openssl/sha.h
673160814Ssimonrsautl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
674160814Ssimonrsautl.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
675160814Ssimonrsautl.o: ../include/openssl/x509_vfy.h apps.h rsautl.c
676160814Ssimons_cb.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
677142425Snectars_cb.o: ../include/openssl/bn.h ../include/openssl/buffer.h
678160814Ssimons_cb.o: ../include/openssl/comp.h ../include/openssl/conf.h
679160814Ssimons_cb.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
680160814Ssimons_cb.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
681160814Ssimons_cb.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
682160814Ssimons_cb.o: ../include/openssl/engine.h ../include/openssl/err.h
683160814Ssimons_cb.o: ../include/openssl/evp.h ../include/openssl/kssl.h
684160814Ssimons_cb.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
685142425Snectars_cb.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
686142425Snectars_cb.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
687142425Snectars_cb.o: ../include/openssl/pem.h ../include/openssl/pem2.h
688160814Ssimons_cb.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
689160814Ssimons_cb.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h
690142425Snectars_cb.o: ../include/openssl/sha.h ../include/openssl/ssl.h
691142425Snectars_cb.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
692142425Snectars_cb.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
693142425Snectars_cb.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
694160814Ssimons_cb.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
695142425Snectars_cb.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_cb.c
696160814Ssimons_client.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
697142425Snectars_client.o: ../include/openssl/bn.h ../include/openssl/buffer.h
698160814Ssimons_client.o: ../include/openssl/comp.h ../include/openssl/conf.h
699160814Ssimons_client.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
700160814Ssimons_client.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
701160814Ssimons_client.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
702160814Ssimons_client.o: ../include/openssl/engine.h ../include/openssl/err.h
703160814Ssimons_client.o: ../include/openssl/evp.h ../include/openssl/kssl.h
704160814Ssimons_client.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
705142425Snectars_client.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
706142425Snectars_client.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
707142425Snectars_client.o: ../include/openssl/pem.h ../include/openssl/pem2.h
708160814Ssimons_client.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
709160814Ssimons_client.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
710160814Ssimons_client.o: ../include/openssl/safestack.h ../include/openssl/sha.h
711160814Ssimons_client.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
712160814Ssimons_client.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
713160814Ssimons_client.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
714160814Ssimons_client.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h
715160814Ssimons_client.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h
716160814Ssimons_client.o: s_apps.h s_client.c timeouts.h
717160814Ssimons_server.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
718142425Snectars_server.o: ../include/openssl/bn.h ../include/openssl/buffer.h
719160814Ssimons_server.o: ../include/openssl/comp.h ../include/openssl/conf.h
720160814Ssimons_server.o: ../include/openssl/crypto.h ../include/openssl/dh.h
721160814Ssimons_server.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
722160814Ssimons_server.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
723160814Ssimons_server.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
724160814Ssimons_server.o: ../include/openssl/engine.h ../include/openssl/err.h
725160814Ssimons_server.o: ../include/openssl/evp.h ../include/openssl/kssl.h
726160814Ssimons_server.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
727142425Snectars_server.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
728142425Snectars_server.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
729142425Snectars_server.o: ../include/openssl/pem.h ../include/openssl/pem2.h
730160814Ssimons_server.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
731160814Ssimons_server.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
732142425Snectars_server.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
733142425Snectars_server.o: ../include/openssl/sha.h ../include/openssl/ssl.h
734142425Snectars_server.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
735142425Snectars_server.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
736160814Ssimons_server.o: ../include/openssl/store.h ../include/openssl/symhacks.h
737160814Ssimons_server.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h
738160814Ssimons_server.o: ../include/openssl/ui.h ../include/openssl/x509.h
739160814Ssimons_server.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_server.c timeouts.h
740160814Ssimons_socket.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
741142425Snectars_socket.o: ../include/openssl/bn.h ../include/openssl/buffer.h
742160814Ssimons_socket.o: ../include/openssl/comp.h ../include/openssl/conf.h
743160814Ssimons_socket.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
744160814Ssimons_socket.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
745160814Ssimons_socket.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
746160814Ssimons_socket.o: ../include/openssl/engine.h ../include/openssl/evp.h
747160814Ssimons_socket.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
748160814Ssimons_socket.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
749160814Ssimons_socket.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
750160814Ssimons_socket.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
751160814Ssimons_socket.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
752160814Ssimons_socket.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h
753160814Ssimons_socket.o: ../include/openssl/safestack.h ../include/openssl/sha.h
754160814Ssimons_socket.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
755160814Ssimons_socket.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
756160814Ssimons_socket.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
757160814Ssimons_socket.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h
758160814Ssimons_socket.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h
759160814Ssimons_socket.o: s_apps.h s_socket.c
760160814Ssimons_time.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
761142425Snectars_time.o: ../include/openssl/bn.h ../include/openssl/buffer.h
762160814Ssimons_time.o: ../include/openssl/comp.h ../include/openssl/conf.h
763160814Ssimons_time.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
764160814Ssimons_time.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
765160814Ssimons_time.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
766160814Ssimons_time.o: ../include/openssl/engine.h ../include/openssl/err.h
767160814Ssimons_time.o: ../include/openssl/evp.h ../include/openssl/kssl.h
768160814Ssimons_time.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
769142425Snectars_time.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
770142425Snectars_time.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
771142425Snectars_time.o: ../include/openssl/pem.h ../include/openssl/pem2.h
772160814Ssimons_time.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
773160814Ssimons_time.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h
774142425Snectars_time.o: ../include/openssl/sha.h ../include/openssl/ssl.h
775142425Snectars_time.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
776142425Snectars_time.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
777142425Snectars_time.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
778160814Ssimons_time.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
779142425Snectars_time.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_time.c
780160814Ssimonsess_id.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
781142425Snectarsess_id.o: ../include/openssl/bn.h ../include/openssl/buffer.h
782160814Ssimonsess_id.o: ../include/openssl/comp.h ../include/openssl/conf.h
783160814Ssimonsess_id.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
784160814Ssimonsess_id.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
785160814Ssimonsess_id.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
786160814Ssimonsess_id.o: ../include/openssl/engine.h ../include/openssl/err.h
787160814Ssimonsess_id.o: ../include/openssl/evp.h ../include/openssl/kssl.h
788160814Ssimonsess_id.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
789142425Snectarsess_id.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
790142425Snectarsess_id.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
791142425Snectarsess_id.o: ../include/openssl/pem.h ../include/openssl/pem2.h
792160814Ssimonsess_id.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
793160814Ssimonsess_id.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h
794142425Snectarsess_id.o: ../include/openssl/sha.h ../include/openssl/ssl.h
795142425Snectarsess_id.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
796142425Snectarsess_id.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
797142425Snectarsess_id.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
798160814Ssimonsess_id.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
799142425Snectarsess_id.o: ../include/openssl/x509_vfy.h apps.h sess_id.c
800160814Ssimonsmime.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
801160814Ssimonsmime.o: ../include/openssl/buffer.h ../include/openssl/conf.h
802160814Ssimonsmime.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
803160814Ssimonsmime.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
804160814Ssimonsmime.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
805160814Ssimonsmime.o: ../include/openssl/err.h ../include/openssl/evp.h
806160814Ssimonsmime.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
807142425Snectarsmime.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
808142425Snectarsmime.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
809142425Snectarsmime.o: ../include/openssl/pem.h ../include/openssl/pem2.h
810160814Ssimonsmime.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
811142425Snectarsmime.o: ../include/openssl/sha.h ../include/openssl/stack.h
812142425Snectarsmime.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
813160814Ssimonsmime.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
814160814Ssimonsmime.o: ../include/openssl/x509v3.h apps.h smime.c
815142425Snectarspeed.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h
816142425Snectarspeed.o: ../include/openssl/bio.h ../include/openssl/blowfish.h
817142425Snectarspeed.o: ../include/openssl/bn.h ../include/openssl/buffer.h
818142425Snectarspeed.o: ../include/openssl/cast.h ../include/openssl/conf.h
819142425Snectarspeed.o: ../include/openssl/crypto.h ../include/openssl/des.h
820160814Ssimonspeed.o: ../include/openssl/des_old.h ../include/openssl/dsa.h
821160814Ssimonspeed.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
822160814Ssimonspeed.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
823142425Snectarspeed.o: ../include/openssl/engine.h ../include/openssl/err.h
824142425Snectarspeed.o: ../include/openssl/evp.h ../include/openssl/hmac.h
825142425Snectarspeed.o: ../include/openssl/idea.h ../include/openssl/lhash.h
826142425Snectarspeed.o: ../include/openssl/md2.h ../include/openssl/md4.h
827160814Ssimonspeed.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
828160814Ssimonspeed.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
829160814Ssimonspeed.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
830160814Ssimonspeed.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
831160814Ssimonspeed.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
832142425Snectarspeed.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
833142425Snectarspeed.o: ../include/openssl/safestack.h ../include/openssl/sha.h
834142425Snectarspeed.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
835142425Snectarspeed.o: ../include/openssl/txt_db.h ../include/openssl/ui.h
836142425Snectarspeed.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h
837142425Snectarspeed.o: ../include/openssl/x509_vfy.h apps.h speed.c testdsa.h testrsa.h
838160814Ssimonspkac.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
839160814Ssimonspkac.o: ../include/openssl/buffer.h ../include/openssl/conf.h
840160814Ssimonspkac.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
841160814Ssimonspkac.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
842160814Ssimonspkac.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
843160814Ssimonspkac.o: ../include/openssl/err.h ../include/openssl/evp.h
844160814Ssimonspkac.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
845142425Snectarspkac.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
846142425Snectarspkac.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
847142425Snectarspkac.o: ../include/openssl/pem.h ../include/openssl/pem2.h
848160814Ssimonspkac.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
849142425Snectarspkac.o: ../include/openssl/sha.h ../include/openssl/stack.h
850142425Snectarspkac.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
851142425Snectarspkac.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h spkac.c
852160814Ssimonverify.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
853160814Ssimonverify.o: ../include/openssl/buffer.h ../include/openssl/conf.h
854160814Ssimonverify.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
855160814Ssimonverify.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
856160814Ssimonverify.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
857160814Ssimonverify.o: ../include/openssl/err.h ../include/openssl/evp.h
858160814Ssimonverify.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
859142425Snectarverify.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
860142425Snectarverify.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
861142425Snectarverify.o: ../include/openssl/pem.h ../include/openssl/pem2.h
862160814Ssimonverify.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
863142425Snectarverify.o: ../include/openssl/sha.h ../include/openssl/stack.h
864142425Snectarverify.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
865142425Snectarverify.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
866142425Snectarverify.o: ../include/openssl/x509v3.h apps.h verify.c
867160814Ssimonversion.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
868160814Ssimonversion.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
869160814Ssimonversion.o: ../include/openssl/buffer.h ../include/openssl/conf.h
870142425Snectarversion.o: ../include/openssl/crypto.h ../include/openssl/des.h
871160814Ssimonversion.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h
872160814Ssimonversion.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
873160814Ssimonversion.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
874142425Snectarversion.o: ../include/openssl/evp.h ../include/openssl/idea.h
875142425Snectarversion.o: ../include/openssl/lhash.h ../include/openssl/md2.h
876160814Ssimonversion.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
877160814Ssimonversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
878160814Ssimonversion.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
879160814Ssimonversion.o: ../include/openssl/rc4.h ../include/openssl/safestack.h
880142425Snectarversion.o: ../include/openssl/sha.h ../include/openssl/stack.h
881142425Snectarversion.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h
882142425Snectarversion.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h
883142425Snectarversion.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h
884142425Snectarversion.o: version.c
885160814Ssimonx509.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
886142425Snectarx509.o: ../include/openssl/bn.h ../include/openssl/buffer.h
887160814Ssimonx509.o: ../include/openssl/conf.h ../include/openssl/crypto.h
888142425Snectarx509.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
889160814Ssimonx509.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
890160814Ssimonx509.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
891160814Ssimonx509.o: ../include/openssl/err.h ../include/openssl/evp.h
892160814Ssimonx509.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
893142425Snectarx509.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
894142425Snectarx509.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
895142425Snectarx509.o: ../include/openssl/pem.h ../include/openssl/pem2.h
896160814Ssimonx509.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h
897160814Ssimonx509.o: ../include/openssl/safestack.h ../include/openssl/sha.h
898160814Ssimonx509.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
899160814Ssimonx509.o: ../include/openssl/txt_db.h ../include/openssl/x509.h
900160814Ssimonx509.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h x509.c
901