1142425Snectar#
2160814Ssimon# OpenSSL/crypto/pkcs12/Makefile
3142425Snectar#
4142425Snectar
5142425SnectarDIR=	pkcs12
6142425SnectarTOP=	../..
7142425SnectarCC=	cc
8142425SnectarINCLUDES= -I.. -I$(TOP) -I../../include
9142425SnectarCFLAG=-g
10142425SnectarMAKEFILE=	Makefile
11142425SnectarAR=		ar r
12142425Snectar
13142425SnectarCFLAGS= $(INCLUDES) $(CFLAG)
14142425Snectar
15142425SnectarGENERAL=Makefile
16142425SnectarTEST=
17142425SnectarAPPS=
18142425Snectar
19142425SnectarLIB=$(TOP)/libcrypto.a
20142425SnectarLIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \
21142425Snectar	p12_init.c p12_key.c p12_kiss.c p12_mutl.c\
22142425Snectar	p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c
23142425SnectarLIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \
24142425Snectar	p12_init.o p12_key.o p12_kiss.o p12_mutl.o\
25142425Snectar	p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o
26142425Snectar
27142425SnectarSRC= $(LIBSRC)
28142425Snectar
29142425SnectarEXHEADER=  pkcs12.h
30142425SnectarHEADER=	$(EXHEADER)
31142425Snectar
32142425SnectarALL=    $(GENERAL) $(SRC) $(HEADER)
33142425Snectar
34142425Snectartop:
35142425Snectar	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
36142425Snectar
37142425Snectartest:
38142425Snectar
39142425Snectarall:	lib
40142425Snectar
41142425Snectarlib:	$(LIBOBJ)
42238405Sjkim	$(AR) $(LIB) $(LIBOBJ)
43142425Snectar	$(RANLIB) $(LIB) || echo Never mind.
44142425Snectar	@touch lib
45142425Snectar
46142425Snectarfiles:
47142425Snectar	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
48142425Snectar
49142425Snectarlinks:
50142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
51142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
52142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
53142425Snectar
54142425Snectarinstall:
55160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
56160814Ssimon	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
57142425Snectar	do  \
58142425Snectar	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
59142425Snectar	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
60142425Snectar	done;
61142425Snectar
62142425Snectartags:
63142425Snectar	ctags $(SRC)
64142425Snectar
65142425Snectartests:
66142425Snectar
67142425Snectarlint:
68142425Snectar	lint -DLINT $(INCLUDES) $(SRC)>fluff
69142425Snectar
70142425Snectardepend:
71160814Ssimon	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
72142425Snectar	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
73142425Snectar
74142425Snectardclean:
75142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
76142425Snectar	mv -f Makefile.new $(MAKEFILE)
77142425Snectar
78142425Snectarclean:
79142425Snectar	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80142425Snectar
81142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
82142425Snectar
83160814Ssimonp12_add.o: ../../e_os.h ../../include/openssl/asn1.h
84160814Ssimonp12_add.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
85160814Ssimonp12_add.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
86160814Ssimonp12_add.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
87160814Ssimonp12_add.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
88238405Sjkimp12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
89238405Sjkimp12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
90238405Sjkimp12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
91238405Sjkimp12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
92238405Sjkimp12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
93238405Sjkimp12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
94238405Sjkimp12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
95238405Sjkimp12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_add.c
96160814Ssimonp12_asn.o: ../../e_os.h ../../include/openssl/asn1.h
97160814Ssimonp12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
98160814Ssimonp12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
99160814Ssimonp12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
100160814Ssimonp12_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
101160814Ssimonp12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
102238405Sjkimp12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
103238405Sjkimp12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
104238405Sjkimp12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
105238405Sjkimp12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
106238405Sjkimp12_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
107238405Sjkimp12_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
108238405Sjkimp12_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
109238405Sjkimp12_asn.o: ../cryptlib.h p12_asn.c
110160814Ssimonp12_attr.o: ../../e_os.h ../../include/openssl/asn1.h
111160814Ssimonp12_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
112160814Ssimonp12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
113160814Ssimonp12_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
114160814Ssimonp12_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
115238405Sjkimp12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
116238405Sjkimp12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
117238405Sjkimp12_attr.o: ../../include/openssl/opensslconf.h
118142425Snectarp12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
119142425Snectarp12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
120160814Ssimonp12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
121160814Ssimonp12_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
122160814Ssimonp12_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
123160814Ssimonp12_attr.o: ../cryptlib.h p12_attr.c
124160814Ssimonp12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
125160814Ssimonp12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
126160814Ssimonp12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
127160814Ssimonp12_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
128160814Ssimonp12_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
129238405Sjkimp12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
130238405Sjkimp12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
131238405Sjkimp12_crpt.o: ../../include/openssl/opensslconf.h
132142425Snectarp12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
133142425Snectarp12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
134160814Ssimonp12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
135160814Ssimonp12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
136160814Ssimonp12_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
137160814Ssimonp12_crpt.o: ../cryptlib.h p12_crpt.c
138160814Ssimonp12_crt.o: ../../e_os.h ../../include/openssl/asn1.h
139160814Ssimonp12_crt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
140160814Ssimonp12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
141160814Ssimonp12_crt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
142160814Ssimonp12_crt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
143238405Sjkimp12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
144238405Sjkimp12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
145238405Sjkimp12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
146238405Sjkimp12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
147238405Sjkimp12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
148238405Sjkimp12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
149238405Sjkimp12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
150238405Sjkimp12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crt.c
151160814Ssimonp12_decr.o: ../../e_os.h ../../include/openssl/asn1.h
152160814Ssimonp12_decr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
153160814Ssimonp12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
154160814Ssimonp12_decr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
155160814Ssimonp12_decr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
156238405Sjkimp12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
157238405Sjkimp12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
158238405Sjkimp12_decr.o: ../../include/openssl/opensslconf.h
159142425Snectarp12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
160142425Snectarp12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
161160814Ssimonp12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
162160814Ssimonp12_decr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
163160814Ssimonp12_decr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
164160814Ssimonp12_decr.o: ../cryptlib.h p12_decr.c
165160814Ssimonp12_init.o: ../../e_os.h ../../include/openssl/asn1.h
166160814Ssimonp12_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
167160814Ssimonp12_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
168160814Ssimonp12_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
169160814Ssimonp12_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
170238405Sjkimp12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
171238405Sjkimp12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
172238405Sjkimp12_init.o: ../../include/openssl/opensslconf.h
173142425Snectarp12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
174142425Snectarp12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
175160814Ssimonp12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
176160814Ssimonp12_init.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
177160814Ssimonp12_init.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
178160814Ssimonp12_init.o: ../cryptlib.h p12_init.c
179160814Ssimonp12_key.o: ../../e_os.h ../../include/openssl/asn1.h
180160814Ssimonp12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
181160814Ssimonp12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
182160814Ssimonp12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
183160814Ssimonp12_key.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
184142425Snectarp12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h
185238405Sjkimp12_key.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
186238405Sjkimp12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
187238405Sjkimp12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
188238405Sjkimp12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
189238405Sjkimp12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
190238405Sjkimp12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
191238405Sjkimp12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
192238405Sjkimp12_key.o: ../cryptlib.h p12_key.c
193160814Ssimonp12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h
194160814Ssimonp12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
195160814Ssimonp12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
196160814Ssimonp12_kiss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
197160814Ssimonp12_kiss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
198238405Sjkimp12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
199238405Sjkimp12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
200238405Sjkimp12_kiss.o: ../../include/openssl/opensslconf.h
201142425Snectarp12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
202142425Snectarp12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
203160814Ssimonp12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
204160814Ssimonp12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
205160814Ssimonp12_kiss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
206160814Ssimonp12_kiss.o: ../cryptlib.h p12_kiss.c
207160814Ssimonp12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h
208160814Ssimonp12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
209160814Ssimonp12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
210160814Ssimonp12_mutl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
211160814Ssimonp12_mutl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
212238405Sjkimp12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
213238405Sjkimp12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
214238405Sjkimp12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
215142425Snectarp12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
216142425Snectarp12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
217160814Ssimonp12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
218160814Ssimonp12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
219160814Ssimonp12_mutl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
220160814Ssimonp12_mutl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_mutl.c
221160814Ssimonp12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
222160814Ssimonp12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
223160814Ssimonp12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
224160814Ssimonp12_npas.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
225160814Ssimonp12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h
226238405Sjkimp12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
227238405Sjkimp12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
228142425Snectarp12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
229142425Snectarp12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
230142425Snectarp12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
231160814Ssimonp12_npas.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
232160814Ssimonp12_npas.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
233160814Ssimonp12_npas.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
234160814Ssimonp12_npas.o: p12_npas.c
235160814Ssimonp12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h
236160814Ssimonp12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
237160814Ssimonp12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
238160814Ssimonp12_p8d.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
239160814Ssimonp12_p8d.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
240238405Sjkimp12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
241238405Sjkimp12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
242238405Sjkimp12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
243238405Sjkimp12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
244238405Sjkimp12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
245238405Sjkimp12_p8d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
246238405Sjkimp12_p8d.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
247238405Sjkimp12_p8d.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8d.c
248160814Ssimonp12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h
249160814Ssimonp12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
250160814Ssimonp12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
251160814Ssimonp12_p8e.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
252160814Ssimonp12_p8e.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
253238405Sjkimp12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
254238405Sjkimp12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
255238405Sjkimp12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
256238405Sjkimp12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
257238405Sjkimp12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
258238405Sjkimp12_p8e.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
259238405Sjkimp12_p8e.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
260238405Sjkimp12_p8e.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8e.c
261160814Ssimonp12_utl.o: ../../e_os.h ../../include/openssl/asn1.h
262160814Ssimonp12_utl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
263160814Ssimonp12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
264160814Ssimonp12_utl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
265160814Ssimonp12_utl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
266238405Sjkimp12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
267238405Sjkimp12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
268238405Sjkimp12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
269238405Sjkimp12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
270238405Sjkimp12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
271238405Sjkimp12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
272238405Sjkimp12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
273238405Sjkimp12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_utl.c
274160814Ssimonpk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
275160814Ssimonpk12err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
276160814Ssimonpk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
277160814Ssimonpk12err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
278160814Ssimonpk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
279238405Sjkimpk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
280238405Sjkimpk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
281238405Sjkimpk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
282238405Sjkimpk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
283238405Sjkimpk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
284238405Sjkimpk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
285238405Sjkimpk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
286238405Sjkimpk12err.o: pk12err.c
287