Makefile revision 160815
133965Sjdp#
233965Sjdp# OpenSSL/crypto/engine/Makefile
333965Sjdp#
433965Sjdp
533965SjdpDIR=	engine
633965SjdpTOP=	../..
733965SjdpCC=	cc
833965SjdpINCLUDES= -I.. -I$(TOP) -I../../include
933965SjdpCFLAG=-g
1033965SjdpMAKEFILE=	Makefile
1133965SjdpAR=		ar r
1233965Sjdp
1333965SjdpCFLAGS= $(INCLUDES) $(CFLAG)
1433965Sjdp
1533965SjdpGENERAL=Makefile
1633965SjdpTEST= enginetest.c
17218822SdimAPPS=
18218822Sdim
1933965SjdpLIB=$(TOP)/libcrypto.a
20218822SdimLIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \
2133965Sjdp	eng_table.c eng_pkey.c eng_fat.c eng_all.c \
2277298Sobrien	tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \
2333965Sjdp	tb_cipher.c tb_digest.c \
2433965Sjdp	eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c eng_padlock.c
2533965SjdpLIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \
2633965Sjdp	eng_table.o eng_pkey.o eng_fat.o eng_all.o \
2733965Sjdp	tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \
2833965Sjdp	tb_cipher.o tb_digest.o \
2933965Sjdp	eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o eng_padlock.o
3033965Sjdp
3133965SjdpSRC= $(LIBSRC)
3233965Sjdp
3333965SjdpEXHEADER= engine.h
3433965SjdpHEADER=	$(EXHEADER)
3533965Sjdp
3677298SobrienALL=    $(GENERAL) $(SRC) $(HEADER)
3777298Sobrien
3877298Sobrientop:
3933965Sjdp	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40218822Sdim
41218822Sdimall:	lib
4233965Sjdp
4333965Sjdplib:	$(LIBOBJ)
4477298Sobrien	$(AR) $(LIB) $(LIBOBJ)
4577298Sobrien	$(RANLIB) $(LIB) || echo Never mind.
4633965Sjdp	@touch lib
4733965Sjdp
4833965Sjdpfiles:
4933965Sjdp	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
5033965Sjdp
5133965Sjdplinks:
5233965Sjdp	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
5333965Sjdp	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
5433965Sjdp	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
5533965Sjdp
5633965Sjdpinstall:
5733965Sjdp	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
5833965Sjdp	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
5933965Sjdp	do  \
6033965Sjdp	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
6133965Sjdp	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
6233965Sjdp	done;
6333965Sjdp
6433965Sjdptags:
6533965Sjdp	ctags $(SRC)
6633965Sjdp
6733965Sjdptests:
6833965Sjdp
6933965Sjdplint:
7033965Sjdp	lint -DLINT $(INCLUDES) $(SRC)>fluff
7133965Sjdp
7233965Sjdpdepend:
7333965Sjdp	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
7433965Sjdp	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
7533965Sjdp
7633965Sjdpdclean:
7733965Sjdp	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
7833965Sjdp	mv -f Makefile.new $(MAKEFILE)
7933965Sjdp
8033965Sjdpclean:
8133965Sjdp	rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
8233965Sjdp
8333965Sjdp# DO NOT DELETE THIS LINE -- make depend depends on it.
8433965Sjdp
8533965Sjdpeng_all.o: ../../e_os.h ../../include/openssl/bio.h
86218822Sdimeng_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
8733965Sjdpeng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
8833965Sjdpeng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
8933965Sjdpeng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
9033965Sjdpeng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
9133965Sjdpeng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
9233965Sjdpeng_all.o: ../cryptlib.h eng_all.c eng_int.h
9333965Sjdpeng_cnf.o: ../../e_os.h ../../include/openssl/bio.h
9433965Sjdpeng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
9533965Sjdpeng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
9633965Sjdpeng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
9733965Sjdpeng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
9833965Sjdpeng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
9933965Sjdpeng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
10033965Sjdpeng_cnf.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_cnf.c eng_int.h
10133965Sjdpeng_cryptodev.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
10233965Sjdpeng_cryptodev.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
10333965Sjdpeng_cryptodev.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
10433965Sjdpeng_cryptodev.o: ../../include/openssl/evp.h ../../include/openssl/obj_mac.h
10533965Sjdpeng_cryptodev.o: ../../include/openssl/objects.h
10633965Sjdpeng_cryptodev.o: ../../include/openssl/opensslconf.h
10733965Sjdpeng_cryptodev.o: ../../include/openssl/opensslv.h
10833965Sjdpeng_cryptodev.o: ../../include/openssl/ossl_typ.h
10933965Sjdpeng_cryptodev.o: ../../include/openssl/safestack.h
11033965Sjdpeng_cryptodev.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
11133965Sjdpeng_cryptodev.o: eng_cryptodev.c
11233965Sjdpeng_ctrl.o: ../../e_os.h ../../include/openssl/bio.h
11333965Sjdpeng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
11433965Sjdpeng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
115218822Sdimeng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
11633965Sjdpeng_ctrl.o: ../../include/openssl/opensslconf.h
11733965Sjdpeng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
11833965Sjdpeng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
11933965Sjdpeng_ctrl.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_ctrl.c eng_int.h
12033965Sjdpeng_dyn.o: ../../e_os.h ../../include/openssl/bio.h
12133965Sjdpeng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
12233965Sjdpeng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
12333965Sjdpeng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h
12433965Sjdpeng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
12533965Sjdpeng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
12633965Sjdpeng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
12733965Sjdpeng_dyn.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_dyn.c eng_int.h
12833965Sjdpeng_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
12933965Sjdpeng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
13033965Sjdpeng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
13133965Sjdpeng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
13233965Sjdpeng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
13333965Sjdpeng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
13433965Sjdpeng_err.o: eng_err.c
13533965Sjdpeng_fat.o: ../../e_os.h ../../include/openssl/bio.h
13633965Sjdpeng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
13733965Sjdpeng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
13833965Sjdpeng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h
13933965Sjdpeng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
14033965Sjdpeng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
14133965Sjdpeng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
14233965Sjdpeng_fat.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_fat.c eng_int.h
14333965Sjdpeng_init.o: ../../e_os.h ../../include/openssl/bio.h
14433965Sjdpeng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
14533965Sjdpeng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
14633965Sjdpeng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
14733965Sjdpeng_init.o: ../../include/openssl/opensslconf.h
14833965Sjdpeng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
14933965Sjdpeng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
15033965Sjdpeng_init.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_init.c eng_int.h
15133965Sjdpeng_lib.o: ../../e_os.h ../../include/openssl/bio.h
15233965Sjdpeng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
15333965Sjdpeng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
15433965Sjdpeng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
15533965Sjdpeng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
15633965Sjdpeng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
15733965Sjdpeng_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
15833965Sjdpeng_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_lib.c
15933965Sjdpeng_list.o: ../../e_os.h ../../include/openssl/bio.h
16033965Sjdpeng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
16133965Sjdpeng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
16233965Sjdpeng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
16333965Sjdpeng_list.o: ../../include/openssl/opensslconf.h
16433965Sjdpeng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
16533965Sjdpeng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
16633965Sjdpeng_list.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_list.c
16733965Sjdpeng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
16833965Sjdpeng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
16933965Sjdpeng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
170218822Sdimeng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
17133965Sjdpeng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
17233965Sjdpeng_openssl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
17333965Sjdpeng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
17433965Sjdpeng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
17533965Sjdpeng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
17633965Sjdpeng_openssl.o: ../../include/openssl/opensslconf.h
17733965Sjdpeng_openssl.o: ../../include/openssl/opensslv.h
17833965Sjdpeng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
17933965Sjdpeng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
18033965Sjdpeng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h
18133965Sjdpeng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
18233965Sjdpeng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
18333965Sjdpeng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
18433965Sjdpeng_openssl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_openssl.c
18533965Sjdpeng_padlock.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
18633965Sjdpeng_padlock.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
18733965Sjdpeng_padlock.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
18833965Sjdpeng_padlock.o: ../../include/openssl/engine.h ../../include/openssl/err.h
18933965Sjdpeng_padlock.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
19033965Sjdpeng_padlock.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
191218822Sdimeng_padlock.o: ../../include/openssl/opensslconf.h
19233965Sjdpeng_padlock.o: ../../include/openssl/opensslv.h
19333965Sjdpeng_padlock.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
19433965Sjdpeng_padlock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
19533965Sjdpeng_padlock.o: ../../include/openssl/symhacks.h eng_padlock.c
19633965Sjdpeng_pkey.o: ../../e_os.h ../../include/openssl/bio.h
19733965Sjdpeng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
19833965Sjdpeng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
19933965Sjdpeng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
20033965Sjdpeng_pkey.o: ../../include/openssl/opensslconf.h
20133965Sjdpeng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
20233965Sjdpeng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
20333965Sjdpeng_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_pkey.c
20433965Sjdpeng_table.o: ../../e_os.h ../../include/openssl/asn1.h
20533965Sjdpeng_table.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
20633965Sjdpeng_table.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
20733965Sjdpeng_table.o: ../../include/openssl/engine.h ../../include/openssl/err.h
20833965Sjdpeng_table.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
20933965Sjdpeng_table.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
21033965Sjdpeng_table.o: ../../include/openssl/opensslconf.h
21133965Sjdpeng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
21233965Sjdpeng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
21333965Sjdpeng_table.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h
21433965Sjdpeng_table.o: eng_table.c
21533965Sjdptb_cipher.o: ../../e_os.h ../../include/openssl/bio.h
21633965Sjdptb_cipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
21733965Sjdptb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
21833965Sjdptb_cipher.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
21933965Sjdptb_cipher.o: ../../include/openssl/opensslconf.h
22033965Sjdptb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
22133965Sjdptb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
22233965Sjdptb_cipher.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h
22333965Sjdptb_cipher.o: tb_cipher.c
22433965Sjdptb_dh.o: ../../e_os.h ../../include/openssl/bio.h
22533965Sjdptb_dh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
22633965Sjdptb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
22733965Sjdptb_dh.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
22833965Sjdptb_dh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
22933965Sjdptb_dh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
23033965Sjdptb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
23133965Sjdptb_dh.o: ../cryptlib.h eng_int.h tb_dh.c
23233965Sjdptb_digest.o: ../../e_os.h ../../include/openssl/bio.h
23333965Sjdptb_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
23433965Sjdptb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
23533965Sjdptb_digest.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
23633965Sjdptb_digest.o: ../../include/openssl/opensslconf.h
23733965Sjdptb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
23833965Sjdptb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
23933965Sjdptb_digest.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h
24033965Sjdptb_digest.o: tb_digest.c
24133965Sjdptb_dsa.o: ../../e_os.h ../../include/openssl/bio.h
24233965Sjdptb_dsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
24333965Sjdptb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
24433965Sjdptb_dsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
24533965Sjdptb_dsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
24633965Sjdptb_dsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
24733965Sjdptb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
24833965Sjdptb_dsa.o: ../cryptlib.h eng_int.h tb_dsa.c
24933965Sjdptb_ecdh.o: ../../e_os.h ../../include/openssl/bio.h
25033965Sjdptb_ecdh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
25133965Sjdptb_ecdh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
25233965Sjdptb_ecdh.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
25333965Sjdptb_ecdh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
25433965Sjdptb_ecdh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
25533965Sjdptb_ecdh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
25633965Sjdptb_ecdh.o: ../cryptlib.h eng_int.h tb_ecdh.c
25733965Sjdptb_ecdsa.o: ../../e_os.h ../../include/openssl/bio.h
25833965Sjdptb_ecdsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
25933965Sjdptb_ecdsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
26033965Sjdptb_ecdsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
26133965Sjdptb_ecdsa.o: ../../include/openssl/opensslconf.h
26233965Sjdptb_ecdsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
26333965Sjdptb_ecdsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
26433965Sjdptb_ecdsa.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h tb_ecdsa.c
26533965Sjdptb_rand.o: ../../e_os.h ../../include/openssl/bio.h
26633965Sjdptb_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
26733965Sjdptb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
26833965Sjdptb_rand.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
26933965Sjdptb_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
27033965Sjdptb_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
27133965Sjdptb_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
27233965Sjdptb_rand.o: ../cryptlib.h eng_int.h tb_rand.c
27333965Sjdptb_rsa.o: ../../e_os.h ../../include/openssl/bio.h
27433965Sjdptb_rsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
27533965Sjdptb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
27633965Sjdptb_rsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
27733965Sjdptb_rsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
27833965Sjdptb_rsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
27933965Sjdptb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
28033965Sjdptb_rsa.o: ../cryptlib.h eng_int.h tb_rsa.c
28133965Sjdptb_store.o: ../../e_os.h ../../include/openssl/bio.h
28233965Sjdptb_store.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
28333965Sjdptb_store.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
28433965Sjdptb_store.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
28533965Sjdptb_store.o: ../../include/openssl/opensslconf.h
28633965Sjdptb_store.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
28733965Sjdptb_store.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
28833965Sjdptb_store.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h tb_store.c
28933965Sjdp