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
70284285Sjkimupdate: depend
71284285Sjkim
72142425Snectardepend:
73160814Ssimon	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
74142425Snectar	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
75142425Snectar
76142425Snectardclean:
77142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
78142425Snectar	mv -f Makefile.new $(MAKEFILE)
79142425Snectar
80142425Snectarclean:
81142425Snectar	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
82142425Snectar
83142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
84142425Snectar
85160814Ssimonp12_add.o: ../../e_os.h ../../include/openssl/asn1.h
86160814Ssimonp12_add.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
87160814Ssimonp12_add.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
88160814Ssimonp12_add.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
89160814Ssimonp12_add.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
90238405Sjkimp12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
91238405Sjkimp12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
92238405Sjkimp12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
93238405Sjkimp12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
94238405Sjkimp12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
95238405Sjkimp12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
96238405Sjkimp12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
97238405Sjkimp12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_add.c
98160814Ssimonp12_asn.o: ../../e_os.h ../../include/openssl/asn1.h
99160814Ssimonp12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
100160814Ssimonp12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
101160814Ssimonp12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
102160814Ssimonp12_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
103160814Ssimonp12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
104238405Sjkimp12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
105238405Sjkimp12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
106238405Sjkimp12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
107238405Sjkimp12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
108238405Sjkimp12_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
109238405Sjkimp12_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
110238405Sjkimp12_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
111238405Sjkimp12_asn.o: ../cryptlib.h p12_asn.c
112160814Ssimonp12_attr.o: ../../e_os.h ../../include/openssl/asn1.h
113160814Ssimonp12_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
114160814Ssimonp12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
115160814Ssimonp12_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
116160814Ssimonp12_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
117238405Sjkimp12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
118238405Sjkimp12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
119238405Sjkimp12_attr.o: ../../include/openssl/opensslconf.h
120142425Snectarp12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
121142425Snectarp12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
122160814Ssimonp12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
123160814Ssimonp12_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
124160814Ssimonp12_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
125160814Ssimonp12_attr.o: ../cryptlib.h p12_attr.c
126160814Ssimonp12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
127160814Ssimonp12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
128160814Ssimonp12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
129160814Ssimonp12_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
130160814Ssimonp12_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
131238405Sjkimp12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
132238405Sjkimp12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
133238405Sjkimp12_crpt.o: ../../include/openssl/opensslconf.h
134142425Snectarp12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
135142425Snectarp12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
136160814Ssimonp12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
137160814Ssimonp12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
138160814Ssimonp12_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
139160814Ssimonp12_crpt.o: ../cryptlib.h p12_crpt.c
140160814Ssimonp12_crt.o: ../../e_os.h ../../include/openssl/asn1.h
141160814Ssimonp12_crt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
142160814Ssimonp12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
143160814Ssimonp12_crt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
144160814Ssimonp12_crt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
145238405Sjkimp12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
146238405Sjkimp12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
147238405Sjkimp12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
148238405Sjkimp12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
149238405Sjkimp12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
150238405Sjkimp12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
151238405Sjkimp12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
152238405Sjkimp12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crt.c
153160814Ssimonp12_decr.o: ../../e_os.h ../../include/openssl/asn1.h
154160814Ssimonp12_decr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
155160814Ssimonp12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
156160814Ssimonp12_decr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
157160814Ssimonp12_decr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
158238405Sjkimp12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
159238405Sjkimp12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
160238405Sjkimp12_decr.o: ../../include/openssl/opensslconf.h
161142425Snectarp12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
162142425Snectarp12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
163160814Ssimonp12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
164160814Ssimonp12_decr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
165160814Ssimonp12_decr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
166160814Ssimonp12_decr.o: ../cryptlib.h p12_decr.c
167160814Ssimonp12_init.o: ../../e_os.h ../../include/openssl/asn1.h
168160814Ssimonp12_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
169160814Ssimonp12_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
170160814Ssimonp12_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
171160814Ssimonp12_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
172238405Sjkimp12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
173238405Sjkimp12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
174238405Sjkimp12_init.o: ../../include/openssl/opensslconf.h
175142425Snectarp12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
176142425Snectarp12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
177160814Ssimonp12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
178160814Ssimonp12_init.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
179160814Ssimonp12_init.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
180160814Ssimonp12_init.o: ../cryptlib.h p12_init.c
181160814Ssimonp12_key.o: ../../e_os.h ../../include/openssl/asn1.h
182160814Ssimonp12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
183160814Ssimonp12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
184160814Ssimonp12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
185160814Ssimonp12_key.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
186142425Snectarp12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h
187238405Sjkimp12_key.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
188238405Sjkimp12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
189238405Sjkimp12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
190238405Sjkimp12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
191238405Sjkimp12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
192238405Sjkimp12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193238405Sjkimp12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
194238405Sjkimp12_key.o: ../cryptlib.h p12_key.c
195160814Ssimonp12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h
196160814Ssimonp12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
197160814Ssimonp12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
198160814Ssimonp12_kiss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
199160814Ssimonp12_kiss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
200238405Sjkimp12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
201238405Sjkimp12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
202238405Sjkimp12_kiss.o: ../../include/openssl/opensslconf.h
203142425Snectarp12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
204142425Snectarp12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
205160814Ssimonp12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
206160814Ssimonp12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
207160814Ssimonp12_kiss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
208160814Ssimonp12_kiss.o: ../cryptlib.h p12_kiss.c
209160814Ssimonp12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h
210160814Ssimonp12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
211160814Ssimonp12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
212160814Ssimonp12_mutl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
213160814Ssimonp12_mutl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
214238405Sjkimp12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
215238405Sjkimp12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
216238405Sjkimp12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
217142425Snectarp12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
218142425Snectarp12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
219160814Ssimonp12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
220160814Ssimonp12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
221160814Ssimonp12_mutl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
222160814Ssimonp12_mutl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_mutl.c
223160814Ssimonp12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
224160814Ssimonp12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
225160814Ssimonp12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
226160814Ssimonp12_npas.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
227160814Ssimonp12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h
228238405Sjkimp12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
229238405Sjkimp12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
230142425Snectarp12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
231142425Snectarp12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
232142425Snectarp12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
233160814Ssimonp12_npas.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
234160814Ssimonp12_npas.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
235160814Ssimonp12_npas.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
236160814Ssimonp12_npas.o: p12_npas.c
237160814Ssimonp12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h
238160814Ssimonp12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
239160814Ssimonp12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
240160814Ssimonp12_p8d.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
241160814Ssimonp12_p8d.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
242238405Sjkimp12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
243238405Sjkimp12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
244238405Sjkimp12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
245238405Sjkimp12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
246238405Sjkimp12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
247238405Sjkimp12_p8d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
248238405Sjkimp12_p8d.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
249238405Sjkimp12_p8d.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8d.c
250160814Ssimonp12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h
251160814Ssimonp12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
252160814Ssimonp12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
253160814Ssimonp12_p8e.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
254160814Ssimonp12_p8e.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
255238405Sjkimp12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
256238405Sjkimp12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
257238405Sjkimp12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
258238405Sjkimp12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
259238405Sjkimp12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
260238405Sjkimp12_p8e.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
261238405Sjkimp12_p8e.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
262238405Sjkimp12_p8e.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8e.c
263160814Ssimonp12_utl.o: ../../e_os.h ../../include/openssl/asn1.h
264160814Ssimonp12_utl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
265160814Ssimonp12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
266160814Ssimonp12_utl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
267160814Ssimonp12_utl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
268238405Sjkimp12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
269238405Sjkimp12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
270238405Sjkimp12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
271238405Sjkimp12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
272238405Sjkimp12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
273238405Sjkimp12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
274238405Sjkimp12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
275238405Sjkimp12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_utl.c
276160814Ssimonpk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
277160814Ssimonpk12err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
278160814Ssimonpk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
279160814Ssimonpk12err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
280160814Ssimonpk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
281238405Sjkimpk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
282238405Sjkimpk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
283238405Sjkimpk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
284238405Sjkimpk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
285238405Sjkimpk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
286238405Sjkimpk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
287238405Sjkimpk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
288238405Sjkimpk12err.o: pk12err.c
289