146825Sn_hibmaDIR=ccgost
267627SasmodaiTOP=../..
346825Sn_hibmaCC=cc
446825Sn_hibmaINCLUDES= -I../../include
546825Sn_hibmaCFLAG=-g
646825Sn_hibmaMAKEFILE= Makefile
746825Sn_hibmaAR= ar r
846825Sn_hibmaCFLAGS= $(INCLUDES) $(CFLAG)
946825Sn_hibmaLIB=$(TOP)/libcrypto.a
1046825Sn_hibma
1146825Sn_hibmaLIBSRC= gost2001.c gost2001_keyx.c gost89.c gost94_keyx.c gost_ameth.c gost_asn1.c gost_crypt.c gost_ctl.c gost_eng.c gosthash.c gost_keywrap.c gost_md.c gost_params.c gost_pmeth.c gost_sign.c
1246825Sn_hibma
13204739SjoelLIBOBJ= e_gost_err.o gost2001_keyx.o gost2001.o gost89.o gost94_keyx.o gost_ameth.o gost_asn1.o gost_crypt.o gost_ctl.o gost_eng.o gosthash.o gost_keywrap.o gost_md.o gost_params.o gost_pmeth.o gost_sign.o
1446825Sn_hibma
1546825Sn_hibmaSRC=$(LIBSRC)
16204739Sjoel
17204739SjoelLIBNAME=gost
18204739Sjoel
19204739Sjoeltop: 
20204739Sjoel	(cd $(TOP); $(MAKE) DIRS=engines EDIRS=$(DIR) sub_all)
21204739Sjoel
22204739Sjoelall: lib
23204739Sjoel
2446825Sn_hibmatags:
25141580Sru	ctags $(SRC)
2646825Sn_hibma
27264675Shselaskyerrors:
2853200Sphantom	$(PERL) ../../util/mkerr.pl -conf gost.ec -nostatic -write $(SRC)
2979538Sru
3046825Sn_hibmalib: $(LIBOBJ)
3146825Sn_hibma	if [ -n "$(SHARED_LIBS)" ]; then \
3275670Sru		$(MAKE) -f $(TOP)/Makefile.shared -e \
3346825Sn_hibma			LIBNAME=$(LIBNAME) \
34164524Sbrueffer			LIBEXTRAS='$(LIBOBJ)' \
35164524Sbrueffer			LIBDEPS='-L$(TOP) -lcrypto' \
36164524Sbrueffer			link_o.$(SHLIB_TARGET); \
37164524Sbrueffer	else \
38198363Sbrueffer		$(AR) $(LIB) $(LIBOBJ); \
39198363Sbrueffer	fi
4056467Sasmodai	@touch lib
41164524Sbrueffer
42164524Sbruefferinstall:
43164524Sbrueffer	[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
44164524Sbrueffer	if [ -n "$(SHARED_LIBS)" ]; then \
45164524Sbrueffer		set -e; \
46164524Sbrueffer		echo installing $(LIBNAME); \
47164524Sbrueffer		pfx=lib; \
48164524Sbrueffer		if [ "$(PLATFORM)" != "Cygwin" ]; then \
4946825Sn_hibma			case "$(CFLAGS)" in \
5046825Sn_hibma			*DSO_BEOS*) sfx=".so";; \
5146825Sn_hibma			*DSO_DLFCN*) sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;; \
5246825Sn_hibma			*DSO_DL*) sfx=".sl";; \
5357676Ssheldonh			*DSO_WIN32*) sfx="eay32.dll"; pfx=;; \
5458238Sn_hibma			*) sfx=".bad";; \
55138984Sbrueffer			esac; \
56138984Sbrueffer			cp $${pfx}$(LIBNAME)$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$${pfx}$(LIBNAME)$$sfx.new; \
57138984Sbrueffer		else \
58138984Sbrueffer			sfx=".so"; \
59138984Sbrueffer			cp cyg$(LIBNAME).dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$${pfx}$(LIBNAME)$$sfx.new; \
60138984Sbrueffer		fi; \
61138984Sbrueffer		chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$${pfx}$(LIBNAME)$$sfx.new; \
62138984Sbrueffer		mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$${pfx}$(LIBNAME)$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$${pfx}$(LIBNAME)$$sfx; \
63264675Shselasky	fi
64264675Shselasky
65275991Sbruefferlinks:
66264675Shselasky
67138984Sbrueffertests:
68140450Sseanc
69140450Sseancupdate: local_depend
70140450Sseanc	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
71140450Sseanc
72138984Sbruefferdepend: local_depend
73140450Sseanc	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
74140450Sseanclocal_depend:
75140450Sseanc	@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
76138984Sbrueffer
77138984Sbruefferfiles:
78138984Sbrueffer
79138984Sbrueffer
80138984Sbrueffer
81138984Sbruefferlint:
82107383Sru	lint -DLINT $(INCLUDES) $(SRC)>fluff
83138984Sbrueffer
84123735Strhodesdclean:
85138984Sbrueffer	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
86107383Sru	mv -f Makefile.new $(MAKEFILE)
87138984Sbrueffer
88107383Sruclean:
89138984Sbrueffer	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff *.so *.sl *.dll
90123735Strhodes
91183844Sn_hibma# DO NOT DELETE THIS LINE -- make depend depends on it.
92183844Sn_hibma
93138984Sbrueffergost2001.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
94138984Sbrueffergost2001.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
95138984Sbrueffergost2001.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
96138984Sbrueffergost2001.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
97138984Sbrueffergost2001.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
98138984Sbrueffergost2001.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
99138984Sbrueffergost2001.o: ../../include/openssl/err.h ../../include/openssl/evp.h
100138984Sbrueffergost2001.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
101138984Sbrueffergost2001.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
102138984Sbrueffergost2001.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
103138984Sbrueffergost2001.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
104138984Sbrueffergost2001.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
105138984Sbrueffergost2001.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
106138984Sbrueffergost2001.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
107138984Sbrueffergost2001.o: e_gost_err.h gost2001.c gost89.h gost_lcl.h gost_params.h
108138984Sbrueffergost2001.o: gosthash.h
109138984Sbrueffergost2001_keyx.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
110138984Sbrueffergost2001_keyx.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
111138984Sbrueffergost2001_keyx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
112138984Sbrueffergost2001_keyx.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
113138984Sbrueffergost2001_keyx.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
114138984Sbrueffergost2001_keyx.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
115138984Sbrueffergost2001_keyx.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
116138984Sbrueffergost2001_keyx.o: ../../include/openssl/obj_mac.h
117138984Sbrueffergost2001_keyx.o: ../../include/openssl/objects.h
118138984Sbrueffergost2001_keyx.o: ../../include/openssl/opensslconf.h
119138984Sbrueffergost2001_keyx.o: ../../include/openssl/opensslv.h
120138984Sbrueffergost2001_keyx.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
121138984Sbrueffergost2001_keyx.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
122138984Sbrueffergost2001_keyx.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
123138984Sbrueffergost2001_keyx.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
124138984Sbrueffergost2001_keyx.o: ../../include/openssl/x509_vfy.h e_gost_err.h gost2001_keyx.c
125138984Sbrueffergost2001_keyx.o: gost2001_keyx.h gost89.h gost_keywrap.h gost_lcl.h gosthash.h
126138984Sbrueffergost89.o: gost89.c gost89.h
127138984Sbrueffergost94_keyx.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
128138984Sbrueffergost94_keyx.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
129138984Sbrueffergost94_keyx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
130138984Sbrueffergost94_keyx.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
131138984Sbrueffergost94_keyx.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
132138984Sbrueffergost94_keyx.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
133138984Sbrueffergost94_keyx.o: ../../include/openssl/engine.h ../../include/openssl/evp.h
134138984Sbrueffergost94_keyx.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
135154310Smnaggost94_keyx.o: ../../include/openssl/objects.h
136154310Smnaggost94_keyx.o: ../../include/openssl/opensslconf.h
137131530Srugost94_keyx.o: ../../include/openssl/opensslv.h
138107383Srugost94_keyx.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
139153527Spjdgost94_keyx.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
140153527Spjdgost94_keyx.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
141138984Sbrueffergost94_keyx.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
142138984Sbrueffergost94_keyx.o: ../../include/openssl/x509_vfy.h e_gost_err.h gost89.h
143138984Sbrueffergost94_keyx.o: gost94_keyx.c gost_keywrap.h gost_lcl.h gosthash.h
144138984Sbrueffergost_ameth.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
145107383Srugost_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
146107383Srugost_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
147123735Strhodesgost_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
148123735Strhodesgost_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
149138984Sbrueffergost_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
150123735Strhodesgost_ameth.o: ../../include/openssl/engine.h ../../include/openssl/err.h
151138984Sbrueffergost_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
152110114Strhodesgost_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
153138984Sbrueffergost_ameth.o: ../../include/openssl/opensslconf.h
154107383Srugost_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
155162404Srugost_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
156154310Smnaggost_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
157138984Sbrueffergost_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
158123735Strhodesgost_ameth.o: ../../include/openssl/x509_vfy.h e_gost_err.h gost89.h
159107383Srugost_ameth.o: gost_ameth.c gost_lcl.h gost_params.h gosthash.h
160107383Srugost_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
161107383Srugost_asn1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
162113212Smurraygost_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
163113212Smurraygost_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
164138984Sbrueffergost_asn1.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
165138984Sbrueffergost_asn1.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
166138984Sbrueffergost_asn1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
167138984Sbrueffergost_asn1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
168138984Sbrueffergost_asn1.o: ../../include/openssl/opensslconf.h
169154310Smnaggost_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
170154310Smnaggost_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
171138984Sbrueffergost_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
172138984Sbrueffergost_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
173138984Sbrueffergost_asn1.o: ../../include/openssl/x509_vfy.h gost89.h gost_asn1.c gost_lcl.h
174138984Sbrueffergost_asn1.o: gosthash.h
175138984Sbrueffergost_crypt.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
176105713Sluigigost_crypt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
177105713Sluigigost_crypt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
178114926Sjoegost_crypt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
179114926Sjoegost_crypt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
180138984Sbrueffergost_crypt.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
181114926Sjoegost_crypt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
182114926Sjoegost_crypt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
183114926Sjoegost_crypt.o: ../../include/openssl/opensslconf.h
18468854Srugost_crypt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
185115191Srugost_crypt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
186115191Srugost_crypt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
187115191Srugost_crypt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
188115191Srugost_crypt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
189115191Srugost_crypt.o: e_gost_err.h gost89.h gost_crypt.c gost_lcl.h gosthash.h
190115191Srugost_ctl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
19146825Sn_hibmagost_ctl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
19246825Sn_hibmagost_ctl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
19368962Srugost_ctl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
19446825Sn_hibmagost_ctl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
19546825Sn_hibmagost_ctl.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
196115191Srugost_ctl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
19746825Sn_hibmagost_ctl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
19857676Ssheldonhgost_ctl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
19957676Ssheldonhgost_ctl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
200117176Sschweikhgost_ctl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
201115191Srugost_ctl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
202115191Srugost_ctl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
203115191Srugost_ctl.o: ../../include/openssl/x509_vfy.h gost89.h gost_ctl.c gost_lcl.h
204115191Srugost_ctl.o: gosthash.h
205115191Srugost_eng.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
206115191Srugost_eng.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
20746825Sn_hibmagost_eng.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
208113212Smurraygost_eng.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
209115191Srugost_eng.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
210115191Srugost_eng.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
211115191Srugost_eng.o: ../../include/openssl/err.h ../../include/openssl/evp.h
212115191Srugost_eng.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
213120977Sblackendgost_eng.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
214115191Srugost_eng.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
215115191Srugost_eng.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
216115191Srugost_eng.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
217113212Smurraygost_eng.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
21846825Sn_hibmagost_eng.o: ../../include/openssl/x509_vfy.h e_gost_err.h gost89.h gost_eng.c
219130582Srugost_eng.o: gost_lcl.h gosthash.h
22046825Sn_hibmagost_keywrap.o: gost89.h gost_keywrap.c gost_keywrap.h
221130582Srugost_md.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
222107788Srugost_md.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
22346825Sn_hibmagost_md.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
224115191Srugost_md.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
22546825Sn_hibmagost_md.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
226107788Srugost_md.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
227125363Strhodesgost_md.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
228125363Strhodesgost_md.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
229125363Strhodesgost_md.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
230125363Strhodesgost_md.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
231125363Strhodesgost_md.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
232125363Strhodesgost_md.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
233125363Strhodesgost_md.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
234125363Strhodesgost_md.o: e_gost_err.h gost89.h gost_lcl.h gost_md.c gosthash.h
235125363Strhodesgost_params.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
236125363Strhodesgost_params.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
237125363Strhodesgost_params.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
238230656Sscfgost_params.o: ../../include/openssl/opensslconf.h
239125363Strhodesgost_params.o: ../../include/openssl/opensslv.h
240125363Strhodesgost_params.o: ../../include/openssl/ossl_typ.h
24146825Sn_hibmagost_params.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
242138984Sbrueffergost_params.o: ../../include/openssl/symhacks.h gost_params.c gost_params.h
24346825Sn_hibmagost_pmeth.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
24446825Sn_hibmagost_pmeth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
24546825Sn_hibmagost_pmeth.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
24650000Schrisgost_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
247276259Sbaptgost_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
24846825Sn_hibmagost_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
249130582Srugost_pmeth.o: ../../include/openssl/engine.h ../../include/openssl/evp.h
250130582Srugost_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
25146825Sn_hibmagost_pmeth.o: ../../include/openssl/objects.h
25249831Smppgost_pmeth.o: ../../include/openssl/opensslconf.h
25369027Srugost_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
25446825Sn_hibmagost_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
25568962Srugost_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
25646825Sn_hibmagost_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
257267938Sbaptgost_pmeth.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
25846825Sn_hibmagost_pmeth.o: e_gost_err.h gost89.h gost_lcl.h gost_params.h gost_pmeth.c
259267938Sbaptgost_pmeth.o: gosthash.h
26046825Sn_hibmagost_sign.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
26146825Sn_hibmagost_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
262267938Sbaptgost_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
263gost_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
264gost_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
265gost_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
266gost_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
267gost_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
268gost_sign.o: ../../include/openssl/objects.h
269gost_sign.o: ../../include/openssl/opensslconf.h
270gost_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
271gost_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
272gost_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
273gost_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
274gost_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
275gost_sign.o: e_gost_err.h gost89.h gost_lcl.h gost_params.h gost_sign.c
276gost_sign.o: gosthash.h
277gosthash.o: gost89.h gosthash.c gosthash.h
278