diff options
Diffstat (limited to 'src/lib/libcrypto/pem/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/pem/Makefile.ssl | 226 |
1 files changed, 190 insertions, 36 deletions
diff --git a/src/lib/libcrypto/pem/Makefile.ssl b/src/lib/libcrypto/pem/Makefile.ssl index fc04a88fd9..a051b6fecc 100644 --- a/src/lib/libcrypto/pem/Makefile.ssl +++ b/src/lib/libcrypto/pem/Makefile.ssl | |||
@@ -5,32 +5,33 @@ | |||
5 | DIR= pem | 5 | DIR= pem |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=pem | ||
19 | ERRC=pem_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= | 22 | TEST= |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | CTX_SIZE= ctx_size | ||
25 | |||
26 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
27 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c $(ERRC).c | 26 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \ |
27 | pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c | ||
28 | 28 | ||
29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o $(ERRC).o | 29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \ |
30 | pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o | ||
30 | 31 | ||
31 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
32 | 33 | ||
33 | EXHEADER= pem.h | 34 | EXHEADER= pem.h pem2.h |
34 | HEADER= $(EXHEADER) | 35 | HEADER= $(EXHEADER) |
35 | 36 | ||
36 | ALL= $(GENERAL) $(SRC) $(HEADER) | 37 | ALL= $(GENERAL) $(SRC) $(HEADER) |
@@ -38,36 +39,27 @@ ALL= $(GENERAL) $(SRC) $(HEADER) | |||
38 | top: | 39 | top: |
39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
40 | 41 | ||
41 | all: pem.h lib | 42 | all: lib |
42 | |||
43 | pem.h: $(CTX_SIZE) | ||
44 | ./$(CTX_SIZE) <pem.org >pem.new | ||
45 | if [ -f pem.h ]; then mv -f pem.h pem.old; fi | ||
46 | mv -f pem.new pem.h | ||
47 | |||
48 | $(CTX_SIZE): $(CTX_SIZE).o | ||
49 | $(CC) $(CFLAGS) -o $(CTX_SIZE) $(CTX_SIZE).o | ||
50 | 43 | ||
51 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
52 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
53 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
54 | @touch lib | 47 | @touch lib |
55 | 48 | ||
56 | files: | 49 | files: |
57 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 50 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
58 | 51 | ||
59 | links: | 52 | links: $(EXHEADER) |
60 | /bin/rm -f Makefile | 53 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
61 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
62 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
63 | $(TOP)/util/mklink.sh ../../test $(TEST) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
64 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
65 | 57 | ||
66 | install: | 58 | install: |
67 | @for i in $(EXHEADER) ; \ | 59 | @for i in $(EXHEADER) ; \ |
68 | do \ | 60 | do \ |
69 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
70 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 62 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
71 | done; | 63 | done; |
72 | 64 | ||
73 | tags: | 65 | tags: |
@@ -79,18 +71,180 @@ lint: | |||
79 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
80 | 72 | ||
81 | depend: | 73 | depend: |
82 | $(MAKEDEPEND) $(INCLUDES) $(CTX_SIZE).c $(LIBSRC) | 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
83 | 75 | ||
84 | dclean: | 76 | dclean: |
85 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
86 | mv -f Makefile.new $(MAKEFILE) | 78 | mv -f Makefile.new $(MAKEFILE) |
87 | 79 | ||
88 | clean: | 80 | clean: |
89 | /bin/rm -f $(CTX_SIZE) *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 81 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
90 | |||
91 | errors: | ||
92 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # SPECIAL CASE .org | ||
93 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
94 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
95 | 82 | ||
96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
84 | |||
85 | pem_all.o: ../../e_os.h ../../include/openssl/asn1.h | ||
86 | pem_all.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
87 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
88 | pem_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
89 | pem_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
90 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
91 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
92 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
93 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
94 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
95 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
96 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
97 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
98 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c | ||
99 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
100 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
101 | pem_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
102 | pem_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
103 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
104 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
105 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
106 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
107 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
108 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
109 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
110 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
111 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
112 | pem_err.o: pem_err.c | ||
113 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h | ||
114 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
115 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
116 | pem_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
117 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
118 | pem_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
119 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
120 | pem_info.o: ../../include/openssl/opensslconf.h | ||
121 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
122 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
123 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
124 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
125 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
126 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
127 | pem_info.o: ../cryptlib.h pem_info.c | ||
128 | pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
129 | pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
130 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
131 | pem_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
132 | pem_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
133 | pem_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
134 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
135 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
136 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
137 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
138 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
139 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
140 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
141 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
142 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
143 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
144 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | ||
145 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
146 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
147 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
148 | pem_oth.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
149 | pem_oth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
150 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
151 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
152 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
153 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
154 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
155 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
156 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
157 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
158 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
159 | pem_oth.o: ../cryptlib.h pem_oth.c | ||
160 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h | ||
161 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
162 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
163 | pem_pk8.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
164 | pem_pk8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
165 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
166 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
167 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
168 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
169 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
170 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
171 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
172 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
173 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
174 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | ||
175 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
176 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
177 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
178 | pem_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
179 | pem_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
180 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
181 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
182 | pem_pkey.o: ../../include/openssl/opensslconf.h | ||
183 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
184 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
185 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
186 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
187 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
188 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
189 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
190 | pem_pkey.o: ../cryptlib.h pem_pkey.c | ||
191 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h | ||
192 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
193 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
194 | pem_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
195 | pem_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
196 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
197 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
198 | pem_seal.o: ../../include/openssl/opensslconf.h | ||
199 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
200 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
201 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
202 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
203 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
204 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
205 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | ||
206 | pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
207 | pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
208 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
209 | pem_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
210 | pem_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
211 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
212 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
213 | pem_sign.o: ../../include/openssl/opensslconf.h | ||
214 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
215 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
216 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
217 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
218 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
219 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
220 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | ||
221 | pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
222 | pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
223 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
224 | pem_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
225 | pem_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
226 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
227 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
228 | pem_x509.o: ../../include/openssl/opensslconf.h | ||
229 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
230 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
231 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
232 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
233 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
234 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
235 | pem_x509.o: ../cryptlib.h pem_x509.c | ||
236 | pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h | ||
237 | pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
238 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
239 | pem_xaux.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
240 | pem_xaux.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
241 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
242 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
243 | pem_xaux.o: ../../include/openssl/opensslconf.h | ||
244 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
245 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
246 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
247 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
248 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
249 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
250 | pem_xaux.o: ../cryptlib.h pem_xaux.c | ||