1160814Ssimon#
2160814Ssimon# OpenSSL/engines/Makefile
3160814Ssimon#
4160814Ssimon
5160814SsimonDIR=	engines
6160814SsimonTOP=	..
7160814SsimonCC=	cc
8160814SsimonINCLUDES= -I../include
9160814SsimonCFLAG=-g
10160814SsimonMAKEFILE=	Makefile
11160814SsimonAR=		ar r
12238405SjkimENGDIRS= ccgost
13160814Ssimon
14238405SjkimRECURSIVE_MAKE=	[ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
15238405Sjkim		    (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
16238405Sjkim		    $(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
17238405Sjkim		done;
18238405Sjkim
19160814SsimonPEX_LIBS=
20160814SsimonEX_LIBS=
21160814Ssimon
22160814SsimonCFLAGS= $(INCLUDES) $(CFLAG)
23160814Ssimon
24160814SsimonGENERAL=Makefile engines.com install.com engine_vector.mar
25160814SsimonTEST=
26160814SsimonAPPS=
27160814Ssimon
28160814SsimonLIB=$(TOP)/libcrypto.a
29238405SjkimLIBNAMES= 4758cca aep atalla cswift gmp chil nuron sureware ubsec padlock capi
30160814Ssimon
31160814SsimonLIBSRC=	e_4758cca.c \
32160814Ssimon	e_aep.c \
33160814Ssimon	e_atalla.c \
34160814Ssimon	e_cswift.c \
35160814Ssimon	e_gmp.c \
36160814Ssimon	e_chil.c \
37160814Ssimon	e_nuron.c \
38160814Ssimon	e_sureware.c \
39194206Ssimon	e_ubsec.c \
40238405Sjkim	e_padlock.c \
41194206Ssimon	e_capi.c
42160814SsimonLIBOBJ= e_4758cca.o \
43160814Ssimon	e_aep.o \
44160814Ssimon	e_atalla.o \
45160814Ssimon	e_cswift.o \
46160814Ssimon	e_gmp.o \
47160814Ssimon	e_chil.o \
48160814Ssimon	e_nuron.o \
49160814Ssimon	e_sureware.o \
50194206Ssimon	e_ubsec.o \
51238405Sjkim	e_padlock.o \
52194206Ssimon	e_capi.o
53160814Ssimon
54160814SsimonSRC= $(LIBSRC)
55160814Ssimon
56160814SsimonEXHEADER= 
57160814SsimonHEADER=	e_4758cca_err.c e_4758cca_err.h \
58160814Ssimon	e_aep_err.c e_aep_err.h \
59160814Ssimon	e_atalla_err.c e_atalla_err.h \
60160814Ssimon	e_cswift_err.c e_cswift_err.h \
61160814Ssimon	e_gmp_err.c e_gmp_err.h \
62160814Ssimon	e_chil_err.c e_chil_err.h \
63160814Ssimon	e_nuron_err.c e_nuron_err.h \
64160814Ssimon	e_sureware_err.c e_sureware_err.h \
65194206Ssimon	e_ubsec_err.c e_ubsec_err.h \
66194206Ssimon	e_capi_err.c e_capi_err.h
67160814Ssimon
68160814SsimonALL=    $(GENERAL) $(SRC) $(HEADER)
69160814Ssimon
70160814Ssimontop:
71160814Ssimon	(cd ..; $(MAKE) DIRS=$(DIR) all)
72160814Ssimon
73238405Sjkimall:	lib subdirs
74160814Ssimon
75160814Ssimonlib:	$(LIBOBJ)
76160814Ssimon	@if [ -n "$(SHARED_LIBS)" ]; then \
77160814Ssimon		set -e; \
78160814Ssimon		for l in $(LIBNAMES); do \
79160814Ssimon			$(MAKE) -f ../Makefile.shared -e \
80160814Ssimon				LIBNAME=$$l LIBEXTRAS=e_$$l.o \
81160814Ssimon				LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
82160814Ssimon				link_o.$(SHLIB_TARGET); \
83160814Ssimon		done; \
84160814Ssimon	else \
85160814Ssimon		$(AR) $(LIB) $(LIBOBJ); \
86160814Ssimon		$(RANLIB) $(LIB) || echo Never mind.; \
87160814Ssimon	fi; \
88160814Ssimon	touch lib
89160814Ssimon
90238405Sjkimsubdirs:
91238405Sjkim	echo $(EDIRS)
92238405Sjkim	@target=all; $(RECURSIVE_MAKE)
93238405Sjkim
94160814Ssimonfiles:
95160814Ssimon	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
96238405Sjkim	@target=files; $(RECURSIVE_MAKE)
97160814Ssimon
98160814Ssimonlinks:
99238405Sjkim	@target=links; $(RECURSIVE_MAKE)
100160814Ssimon
101160814Ssimon# XXXXX This currently only works on systems that use .so as suffix
102160814Ssimon# for shared libraries as well as for Cygwin which uses the
103160814Ssimon# dlfcn_name_converter and therefore stores the engines with .so suffix, too.
104160814Ssimon# XXXXX This was extended to HP-UX dl targets, which use .sl suffix.
105238405Sjkim# XXXXX This was extended to mingw targets, which use eay32.dll suffix without lib as prefix.
106160814Ssimoninstall:
107160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
108160814Ssimon	@if [ -n "$(SHARED_LIBS)" ]; then \
109160814Ssimon		set -e; \
110238405Sjkim		$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines; \
111160814Ssimon		for l in $(LIBNAMES); do \
112160814Ssimon			( echo installing $$l; \
113238405Sjkim			  pfx=lib; \
114290207Sjkim			  if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
115290207Sjkim				sfx=".so"; \
116290207Sjkim				cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
117290207Sjkim			  else \
118160814Ssimon				case "$(CFLAGS)" in \
119238405Sjkim				*DSO_BEOS*)	sfx=".so";;	\
120238405Sjkim				*DSO_DLFCN*)	sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;;	\
121238405Sjkim				*DSO_DL*)	sfx=".sl";;	\
122238405Sjkim				*DSO_WIN32*)	sfx="eay32.dll"; pfx=;;	\
123238405Sjkim				*)		sfx=".bad";;	\
124160814Ssimon				esac; \
125238405Sjkim				cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
126160814Ssimon			  fi; \
127238405Sjkim			  chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
128238405Sjkim			  mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx ); \
129160814Ssimon		done; \
130160814Ssimon	fi
131238405Sjkim	@target=install; $(RECURSIVE_MAKE)
132160814Ssimon
133160814Ssimontags:
134160814Ssimon	ctags $(SRC)
135160814Ssimon
136160814Ssimonerrors:
137160814Ssimon	set -e; for l in $(LIBNAMES); do \
138160814Ssimon		$(PERL) ../util/mkerr.pl -conf e_$$l.ec \
139160814Ssimon			-nostatic -staticloader -write e_$$l.c; \
140160814Ssimon	done
141238405Sjkim	(cd ccgost; $(MAKE) PERL=$(PERL) errors)
142160814Ssimon
143160814Ssimontests:
144160814Ssimon
145160814Ssimonlint:
146160814Ssimon	lint -DLINT $(INCLUDES) $(SRC)>fluff
147238405Sjkim	@target=lint; $(RECURSIVE_MAKE)
148160814Ssimon
149284283Sjkimupdate: local_depend
150284283Sjkim	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
151284283Sjkim	@[ -z "$(THIS)" ] || (set -e; target=update; $(RECURSIVE_MAKE) )
152284283Sjkim
153284283Sjkimdepend: local_depend
154284283Sjkim	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
155284283Sjkim	@[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
156284283Sjkimlocal_depend:
157238405Sjkim	@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
158160814Ssimon
159160814Ssimondclean:
160160814Ssimon	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
161160814Ssimon	mv -f Makefile.new $(MAKEFILE)
162238405Sjkim	@target=dclean; $(RECURSIVE_MAKE)
163160814Ssimon
164160814Ssimonclean:
165160814Ssimon	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
166238405Sjkim	@target=clean; $(RECURSIVE_MAKE)
167160814Ssimon
168160814Ssimon# DO NOT DELETE THIS LINE -- make depend depends on it.
169160814Ssimon
170160814Ssimone_4758cca.o: ../include/openssl/asn1.h ../include/openssl/bio.h
171160814Ssimone_4758cca.o: ../include/openssl/bn.h ../include/openssl/buffer.h
172160814Ssimone_4758cca.o: ../include/openssl/crypto.h ../include/openssl/dso.h
173160814Ssimone_4758cca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
174160814Ssimone_4758cca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
175160814Ssimone_4758cca.o: ../include/openssl/engine.h ../include/openssl/err.h
176238405Sjkime_4758cca.o: ../include/openssl/evp.h ../include/openssl/lhash.h
177238405Sjkime_4758cca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
178238405Sjkime_4758cca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
179238405Sjkime_4758cca.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
180238405Sjkime_4758cca.o: ../include/openssl/rand.h ../include/openssl/rsa.h
181238405Sjkime_4758cca.o: ../include/openssl/safestack.h ../include/openssl/sha.h
182238405Sjkime_4758cca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
183238405Sjkime_4758cca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
184238405Sjkime_4758cca.o: e_4758cca.c e_4758cca_err.c e_4758cca_err.h
185238405Sjkime_4758cca.o: vendor_defns/hw_4758_cca.h
186160814Ssimone_aep.o: ../include/openssl/asn1.h ../include/openssl/bio.h
187160814Ssimone_aep.o: ../include/openssl/bn.h ../include/openssl/buffer.h
188160814Ssimone_aep.o: ../include/openssl/crypto.h ../include/openssl/dh.h
189160814Ssimone_aep.o: ../include/openssl/dsa.h ../include/openssl/dso.h
190194206Ssimone_aep.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
191194206Ssimone_aep.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
192194206Ssimone_aep.o: ../include/openssl/engine.h ../include/openssl/err.h
193238405Sjkime_aep.o: ../include/openssl/evp.h ../include/openssl/lhash.h
194238405Sjkime_aep.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
195238405Sjkime_aep.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
196238405Sjkime_aep.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
197238405Sjkime_aep.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
198238405Sjkime_aep.o: ../include/openssl/sha.h ../include/openssl/stack.h
199238405Sjkime_aep.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
200238405Sjkime_aep.o: ../include/openssl/x509_vfy.h e_aep.c e_aep_err.c e_aep_err.h
201238405Sjkime_aep.o: vendor_defns/aep.h
202160814Ssimone_atalla.o: ../include/openssl/asn1.h ../include/openssl/bio.h
203160814Ssimone_atalla.o: ../include/openssl/bn.h ../include/openssl/buffer.h
204160814Ssimone_atalla.o: ../include/openssl/crypto.h ../include/openssl/dh.h
205160814Ssimone_atalla.o: ../include/openssl/dsa.h ../include/openssl/dso.h
206194206Ssimone_atalla.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
207194206Ssimone_atalla.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
208194206Ssimone_atalla.o: ../include/openssl/engine.h ../include/openssl/err.h
209238405Sjkime_atalla.o: ../include/openssl/evp.h ../include/openssl/lhash.h
210238405Sjkime_atalla.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
211238405Sjkime_atalla.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
212238405Sjkime_atalla.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
213238405Sjkime_atalla.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
214238405Sjkime_atalla.o: ../include/openssl/sha.h ../include/openssl/stack.h
215238405Sjkime_atalla.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
216238405Sjkime_atalla.o: ../include/openssl/x509_vfy.h e_atalla.c e_atalla_err.c
217238405Sjkime_atalla.o: e_atalla_err.h vendor_defns/atalla.h
218194206Ssimone_capi.o: ../include/openssl/asn1.h ../include/openssl/bio.h
219290207Sjkime_capi.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
220290207Sjkime_capi.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
221290207Sjkime_capi.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
222290207Sjkime_capi.o: ../include/openssl/engine.h ../include/openssl/evp.h
223290207Sjkime_capi.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
224290207Sjkime_capi.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
225290207Sjkime_capi.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
226290207Sjkime_capi.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
227290207Sjkime_capi.o: ../include/openssl/sha.h ../include/openssl/stack.h
228290207Sjkime_capi.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
229290207Sjkime_capi.o: ../include/openssl/x509_vfy.h e_capi.c
230160814Ssimone_chil.o: ../include/openssl/asn1.h ../include/openssl/bio.h
231160814Ssimone_chil.o: ../include/openssl/bn.h ../include/openssl/buffer.h
232160814Ssimone_chil.o: ../include/openssl/crypto.h ../include/openssl/dh.h
233160814Ssimone_chil.o: ../include/openssl/dso.h ../include/openssl/e_os2.h
234160814Ssimone_chil.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
235160814Ssimone_chil.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
236160814Ssimone_chil.o: ../include/openssl/err.h ../include/openssl/evp.h
237238405Sjkime_chil.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
238238405Sjkime_chil.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
239238405Sjkime_chil.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
240238405Sjkime_chil.o: ../include/openssl/pem.h ../include/openssl/pem2.h
241238405Sjkime_chil.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
242238405Sjkime_chil.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
243238405Sjkime_chil.o: ../include/openssl/sha.h ../include/openssl/stack.h
244238405Sjkime_chil.o: ../include/openssl/symhacks.h ../include/openssl/ui.h
245238405Sjkime_chil.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_chil.c
246238405Sjkime_chil.o: e_chil_err.c e_chil_err.h vendor_defns/hwcryptohook.h
247160814Ssimone_cswift.o: ../include/openssl/asn1.h ../include/openssl/bio.h
248160814Ssimone_cswift.o: ../include/openssl/bn.h ../include/openssl/buffer.h
249160814Ssimone_cswift.o: ../include/openssl/crypto.h ../include/openssl/dh.h
250160814Ssimone_cswift.o: ../include/openssl/dsa.h ../include/openssl/dso.h
251194206Ssimone_cswift.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
252194206Ssimone_cswift.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
253194206Ssimone_cswift.o: ../include/openssl/engine.h ../include/openssl/err.h
254238405Sjkime_cswift.o: ../include/openssl/evp.h ../include/openssl/lhash.h
255238405Sjkime_cswift.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
256238405Sjkime_cswift.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
257238405Sjkime_cswift.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
258238405Sjkime_cswift.o: ../include/openssl/rand.h ../include/openssl/rsa.h
259238405Sjkime_cswift.o: ../include/openssl/safestack.h ../include/openssl/sha.h
260238405Sjkime_cswift.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
261238405Sjkime_cswift.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_cswift.c
262238405Sjkime_cswift.o: e_cswift_err.c e_cswift_err.h vendor_defns/cswift.h
263194206Ssimone_gmp.o: ../include/openssl/asn1.h ../include/openssl/bio.h
264194206Ssimone_gmp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
265194206Ssimone_gmp.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
266194206Ssimone_gmp.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
267194206Ssimone_gmp.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
268238405Sjkime_gmp.o: ../include/openssl/evp.h ../include/openssl/lhash.h
269238405Sjkime_gmp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
270238405Sjkime_gmp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
271238405Sjkime_gmp.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
272238405Sjkime_gmp.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
273238405Sjkime_gmp.o: ../include/openssl/sha.h ../include/openssl/stack.h
274238405Sjkime_gmp.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
275238405Sjkime_gmp.o: ../include/openssl/x509_vfy.h e_gmp.c
276160814Ssimone_nuron.o: ../include/openssl/asn1.h ../include/openssl/bio.h
277160814Ssimone_nuron.o: ../include/openssl/bn.h ../include/openssl/buffer.h
278160814Ssimone_nuron.o: ../include/openssl/crypto.h ../include/openssl/dh.h
279160814Ssimone_nuron.o: ../include/openssl/dsa.h ../include/openssl/dso.h
280194206Ssimone_nuron.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
281194206Ssimone_nuron.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
282194206Ssimone_nuron.o: ../include/openssl/engine.h ../include/openssl/err.h
283238405Sjkime_nuron.o: ../include/openssl/evp.h ../include/openssl/lhash.h
284238405Sjkime_nuron.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
285238405Sjkime_nuron.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
286238405Sjkime_nuron.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
287238405Sjkime_nuron.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
288238405Sjkime_nuron.o: ../include/openssl/sha.h ../include/openssl/stack.h
289238405Sjkime_nuron.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
290238405Sjkime_nuron.o: ../include/openssl/x509_vfy.h e_nuron.c e_nuron_err.c e_nuron_err.h
291238405Sjkime_padlock.o: ../include/openssl/aes.h ../include/openssl/asn1.h
292238405Sjkime_padlock.o: ../include/openssl/bio.h ../include/openssl/buffer.h
293238405Sjkime_padlock.o: ../include/openssl/crypto.h ../include/openssl/dso.h
294238405Sjkime_padlock.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
295238405Sjkime_padlock.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
296238405Sjkime_padlock.o: ../include/openssl/engine.h ../include/openssl/err.h
297238405Sjkime_padlock.o: ../include/openssl/evp.h ../include/openssl/lhash.h
298238405Sjkime_padlock.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
299238405Sjkime_padlock.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
300238405Sjkime_padlock.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
301238405Sjkime_padlock.o: ../include/openssl/rand.h ../include/openssl/safestack.h
302238405Sjkime_padlock.o: ../include/openssl/sha.h ../include/openssl/stack.h
303238405Sjkime_padlock.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
304238405Sjkime_padlock.o: ../include/openssl/x509_vfy.h e_padlock.c
305160814Ssimone_sureware.o: ../include/openssl/asn1.h ../include/openssl/bio.h
306160814Ssimone_sureware.o: ../include/openssl/bn.h ../include/openssl/buffer.h
307160814Ssimone_sureware.o: ../include/openssl/crypto.h ../include/openssl/dh.h
308160814Ssimone_sureware.o: ../include/openssl/dsa.h ../include/openssl/dso.h
309160814Ssimone_sureware.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
310160814Ssimone_sureware.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
311160814Ssimone_sureware.o: ../include/openssl/engine.h ../include/openssl/err.h
312238405Sjkime_sureware.o: ../include/openssl/evp.h ../include/openssl/lhash.h
313238405Sjkime_sureware.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
314238405Sjkime_sureware.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
315238405Sjkime_sureware.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
316238405Sjkime_sureware.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
317238405Sjkime_sureware.o: ../include/openssl/rand.h ../include/openssl/rsa.h
318238405Sjkime_sureware.o: ../include/openssl/safestack.h ../include/openssl/sha.h
319238405Sjkime_sureware.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
320238405Sjkime_sureware.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
321238405Sjkime_sureware.o: e_sureware.c e_sureware_err.c e_sureware_err.h
322238405Sjkime_sureware.o: vendor_defns/sureware.h
323160814Ssimone_ubsec.o: ../include/openssl/asn1.h ../include/openssl/bio.h
324160814Ssimone_ubsec.o: ../include/openssl/bn.h ../include/openssl/buffer.h
325160814Ssimone_ubsec.o: ../include/openssl/crypto.h ../include/openssl/dh.h
326160814Ssimone_ubsec.o: ../include/openssl/dsa.h ../include/openssl/dso.h
327194206Ssimone_ubsec.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
328194206Ssimone_ubsec.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
329194206Ssimone_ubsec.o: ../include/openssl/engine.h ../include/openssl/err.h
330238405Sjkime_ubsec.o: ../include/openssl/evp.h ../include/openssl/lhash.h
331238405Sjkime_ubsec.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
332238405Sjkime_ubsec.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
333238405Sjkime_ubsec.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
334238405Sjkime_ubsec.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
335238405Sjkime_ubsec.o: ../include/openssl/sha.h ../include/openssl/stack.h
336238405Sjkime_ubsec.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
337238405Sjkime_ubsec.o: ../include/openssl/x509_vfy.h e_ubsec.c e_ubsec_err.c e_ubsec_err.h
338238405Sjkime_ubsec.o: vendor_defns/hw_ubsec.h
339