1#! /usr/bin/env perl
2
3package configdata;
4
5use strict;
6use warnings;
7
8use Exporter;
9#use vars qw(@ISA @EXPORT);
10our @ISA = qw(Exporter);
11our @EXPORT = qw(%config %target %disabled %withargs %unified_info @disablables);
12
13our %config = (
14  AR => "ar",
15  ARFLAGS => [ "r" ],
16  CC => "gcc",
17  CFLAGS => [ "-Wall -O3" ],
18  CPPDEFINES => [  ],
19  CPPFLAGS => [  ],
20  CPPINCLUDES => [  ],
21  CXXFLAGS => [  ],
22  HASHBANGPERL => "/usr/bin/env perl",
23  LDFLAGS => [  ],
24  LDLIBS => [  ],
25  PERL => "/usr/bin/perl",
26  RANLIB => "ranlib",
27  RC => "windres",
28  RCFLAGS => [  ],
29  b32 => "0",
30  b64 => "0",
31  b64l => "1",
32  bn_ll => "0",
33  build_file => "Makefile",
34  build_file_templates => [ "Configurations/common0.tmpl", "Configurations/unix-Makefile.tmpl", "Configurations/common.tmpl" ],
35  build_infos => [ "./build.info", "crypto/build.info", "ssl/build.info", "engines/build.info", "apps/build.info", "test/build.info", "util/build.info", "tools/build.info", "fuzz/build.info", "crypto/objects/build.info", "crypto/md4/build.info", "crypto/md5/build.info", "crypto/sha/build.info", "crypto/mdc2/build.info", "crypto/hmac/build.info", "crypto/ripemd/build.info", "crypto/whrlpool/build.info", "crypto/poly1305/build.info", "crypto/blake2/build.info", "crypto/siphash/build.info", "crypto/sm3/build.info", "crypto/des/build.info", "crypto/aes/build.info", "crypto/rc2/build.info", "crypto/rc4/build.info", "crypto/idea/build.info", "crypto/aria/build.info", "crypto/bf/build.info", "crypto/cast/build.info", "crypto/camellia/build.info", "crypto/seed/build.info", "crypto/sm4/build.info", "crypto/chacha/build.info", "crypto/modes/build.info", "crypto/bn/build.info", "crypto/ec/build.info", "crypto/rsa/build.info", "crypto/dsa/build.info", "crypto/dh/build.info", "crypto/sm2/build.info", "crypto/dso/build.info", "crypto/engine/build.info", "crypto/buffer/build.info", "crypto/bio/build.info", "crypto/stack/build.info", "crypto/lhash/build.info", "crypto/rand/build.info", "crypto/err/build.info", "crypto/evp/build.info", "crypto/asn1/build.info", "crypto/pem/build.info", "crypto/x509/build.info", "crypto/x509v3/build.info", "crypto/conf/build.info", "crypto/txt_db/build.info", "crypto/pkcs7/build.info", "crypto/pkcs12/build.info", "crypto/ocsp/build.info", "crypto/ui/build.info", "crypto/cms/build.info", "crypto/ts/build.info", "crypto/srp/build.info", "crypto/cmac/build.info", "crypto/ct/build.info", "crypto/async/build.info", "crypto/kdf/build.info", "crypto/store/build.info", "test/ossl_shim/build.info" ],
36  build_type => "release",
37  builddir => ".",
38  cflags => [ "-Wa,--noexecstack" ],
39  conf_files => [ "Configurations/00-base-templates.conf", "Configurations/10-main.conf" ],
40  cppflags => [  ],
41  cxxflags => [  ],
42  defines => [ "NDEBUG" ],
43  dirs => [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ],
44  dso_defines => [ "PADLOCK_ASM" ],
45  dynamic_engines => "0",
46  engdirs => [  ],
47  ex_libs => [  ],
48  export_var_as_fn => "0",
49  includes => [  ],
50  lflags => [  ],
51  lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "AESNI_ASM", "VPAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ],
52  libdir => "",
53  major => "1",
54  makedepprog => "\$(CROSS_COMPILE)gcc",
55  minor => "1.1",
56  openssl_algorithm_defines => [ "OPENSSL_NO_COMP", "OPENSSL_NO_MD2", "OPENSSL_NO_RC5" ],
57  openssl_api_defines => [  ],
58  openssl_other_defines => [ "OPENSSL_RAND_SEED_OS", "OPENSSL_NO_AFALGENG", "OPENSSL_NO_ASAN", "OPENSSL_NO_CRYPTO_MDEBUG", "OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE", "OPENSSL_NO_EC_NISTP_64_GCC_128", "OPENSSL_NO_EGD", "OPENSSL_NO_EXTERNAL_TESTS", "OPENSSL_NO_FUZZ_AFL", "OPENSSL_NO_FUZZ_LIBFUZZER", "OPENSSL_NO_HEARTBEATS", "OPENSSL_NO_MSAN", "OPENSSL_NO_SCTP", "OPENSSL_NO_SSL_TRACE", "OPENSSL_NO_SSL3", "OPENSSL_NO_SSL3_METHOD", "OPENSSL_NO_UBSAN", "OPENSSL_NO_UNIT_TEST", "OPENSSL_NO_WEAK_SSL_CIPHERS", "OPENSSL_NO_DYNAMIC_ENGINE" ],
59  openssl_sys_defines => [  ],
60  openssl_thread_defines => [ "OPENSSL_THREADS" ],
61  openssldir => "",
62  options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
63  perl_archname => "x86_64-linux-gnu-thread-multi",
64  perl_cmd => "/usr/bin/perl",
65  perl_version => "5.26.1",
66  perlargv => [ "no-comp", "no-shared", "no-afalgeng", "BSD-x86_64" ],
67  perlenv => {
68      "AR" => undef,
69      "ARFLAGS" => undef,
70      "AS" => undef,
71      "ASFLAGS" => undef,
72      "BUILDFILE" => undef,
73      "CC" => "gcc",
74      "CFLAGS" => undef,
75      "CPP" => undef,
76      "CPPDEFINES" => undef,
77      "CPPFLAGS" => undef,
78      "CPPINCLUDES" => undef,
79      "CROSS_COMPILE" => undef,
80      "CXX" => undef,
81      "CXXFLAGS" => undef,
82      "HASHBANGPERL" => undef,
83      "LD" => undef,
84      "LDFLAGS" => undef,
85      "LDLIBS" => undef,
86      "MT" => undef,
87      "MTFLAGS" => undef,
88      "OPENSSL_LOCAL_CONFIG_DIR" => undef,
89      "PERL" => undef,
90      "RANLIB" => undef,
91      "RC" => undef,
92      "RCFLAGS" => undef,
93      "RM" => undef,
94      "WINDRES" => undef,
95      "__CNF_CFLAGS" => undef,
96      "__CNF_CPPDEFINES" => undef,
97      "__CNF_CPPFLAGS" => undef,
98      "__CNF_CPPINCLUDES" => undef,
99      "__CNF_CXXFLAGS" => undef,
100      "__CNF_LDFLAGS" => undef,
101      "__CNF_LDLIBS" => undef,
102  },
103  prefix => "",
104  processor => "",
105  rc4_int => "unsigned int",
106  sdirs => [ "objects", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305", "blake2", "siphash", "sm3", "des", "aes", "rc2", "rc4", "idea", "aria", "bf", "cast", "camellia", "seed", "sm4", "chacha", "modes", "bn", "ec", "rsa", "dsa", "dh", "sm2", "dso", "engine", "buffer", "bio", "stack", "lhash", "rand", "err", "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "ocsp", "ui", "cms", "ts", "srp", "cmac", "ct", "async", "kdf", "store" ],
107  shlib_major => "1",
108  shlib_minor => "1",
109  shlib_version_history => "",
110  shlib_version_number => "1.1",
111  sourcedir => ".",
112  target => "BSD-x86_64",
113  tdirs => [ "ossl_shim" ],
114  version => "1.1.1k",
115  version_num => "0x101010bfL",
116);
117
118our %target = (
119  AR => "ar",
120  ARFLAGS => "r",
121  CC => "cc",
122  CFLAGS => "-Wall -O3",
123  HASHBANGPERL => "/usr/bin/env perl",
124  RANLIB => "ranlib",
125  RC => "windres",
126  _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
127  aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s",
128  aes_obj => "aes_core.o aes_cbc.o vpaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
129  apps_aux_src => "",
130  apps_init_src => "",
131  apps_obj => "",
132  bf_asm_src => "bf_enc.c",
133  bf_obj => "bf_enc.o",
134  bn_asm_src => "asm/x86_64-gcc.c x86_64-mont.s x86_64-mont5.s x86_64-gf2m.s rsaz_exp.c rsaz-x86_64.s rsaz-avx2.s",
135  bn_obj => "asm/x86_64-gcc.o x86_64-mont.o x86_64-mont5.o x86_64-gf2m.o rsaz_exp.o rsaz-x86_64.o rsaz-avx2.o",
136  bn_ops => "SIXTY_FOUR_BIT_LONG",
137  build_file => "Makefile",
138  build_scheme => [ "unified", "unix" ],
139  cast_asm_src => "c_enc.c",
140  cast_obj => "c_enc.o",
141  cflags => "-pthread",
142  chacha_asm_src => "chacha-x86_64.s",
143  chacha_obj => "chacha-x86_64.o",
144  cmll_asm_src => "cmll-x86_64.s cmll_misc.c",
145  cmll_obj => "cmll-x86_64.o cmll_misc.o",
146  cppflags => "-D_THREAD_SAFE -D_REENTRANT",
147  cpuid_asm_src => "x86_64cpuid.s",
148  cpuid_obj => "x86_64cpuid.o",
149  defines => [  ],
150  des_asm_src => "des_enc.c fcrypt_b.c",
151  des_obj => "des_enc.o fcrypt_b.o",
152  disable => [  ],
153  dso_extension => ".so",
154  dso_scheme => "dlfcn",
155  ec_asm_src => "ecp_nistz256.c ecp_nistz256-x86_64.s x25519-x86_64.s",
156  ec_obj => "ecp_nistz256.o ecp_nistz256-x86_64.o x25519-x86_64.o",
157  enable => [ "devcryptoeng" ],
158  ex_libs => "-pthread",
159  exe_extension => "",
160  includes => [  ],
161  keccak1600_asm_src => "keccak1600-x86_64.s",
162  keccak1600_obj => "keccak1600-x86_64.o",
163  lflags => "",
164  lib_cflags => "",
165  lib_cppflags => "-DL_ENDIAN",
166  lib_defines => [  ],
167  md5_asm_src => "md5-x86_64.s",
168  md5_obj => "md5-x86_64.o",
169  modes_asm_src => "ghash-x86_64.s aesni-gcm-x86_64.s",
170  modes_obj => "ghash-x86_64.o aesni-gcm-x86_64.o",
171  module_cflags => "-fPIC",
172  module_cxxflags => "",
173  module_ldflags => "-shared -Wl,-Bsymbolic",
174  padlock_asm_src => "e_padlock-x86_64.s",
175  padlock_obj => "e_padlock-x86_64.o",
176  perlasm_scheme => "elf",
177  poly1305_asm_src => "poly1305-x86_64.s",
178  poly1305_obj => "poly1305-x86_64.o",
179  rc4_asm_src => "rc4-x86_64.s rc4-md5-x86_64.s",
180  rc4_obj => "rc4-x86_64.o rc4-md5-x86_64.o",
181  rc5_asm_src => "rc5_enc.c",
182  rc5_obj => "rc5_enc.o",
183  rmd160_asm_src => "",
184  rmd160_obj => "",
185  sha1_asm_src => "sha1-x86_64.s sha256-x86_64.s sha512-x86_64.s sha1-mb-x86_64.s sha256-mb-x86_64.s",
186  sha1_obj => "sha1-x86_64.o sha256-x86_64.o sha512-x86_64.o sha1-mb-x86_64.o sha256-mb-x86_64.o",
187  shared_cflag => "-fPIC",
188  shared_defflag => "-Wl,--version-script=",
189  shared_defines => [  ],
190  shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
191  shared_extension_simple => ".so",
192  shared_ldflag => "-shared -Wl,-Bsymbolic",
193  shared_rcflag => "",
194  shared_sonameflag => "-Wl,-soname=",
195  shared_target => "bsd-gcc-shared",
196  template => "1",
197  thread_defines => [  ],
198  thread_scheme => "pthreads",
199  unistd => "<unistd.h>",
200  uplink_aux_src => "",
201  uplink_obj => "",
202  wp_asm_src => "wp-x86_64.s",
203  wp_obj => "wp-x86_64.o",
204);
205
206our %available_protocols = (
207  tls => [ "ssl3", "tls1", "tls1_1", "tls1_2", "tls1_3" ],
208  dtls => [ "dtls1", "dtls1_2" ],
209);
210
211our @disablables = (
212  "afalgeng",
213  "aria",
214  "asan",
215  "asm",
216  "async",
217  "autoalginit",
218  "autoerrinit",
219  "autoload-config",
220  "bf",
221  "blake2",
222  "buildtest-c\\+\\+",
223  "camellia",
224  "capieng",
225  "cast",
226  "chacha",
227  "cmac",
228  "cms",
229  "comp",
230  "crypto-mdebug",
231  "crypto-mdebug-backtrace",
232  "ct",
233  "deprecated",
234  "des",
235  "devcryptoeng",
236  "dgram",
237  "dh",
238  "dsa",
239  "dso",
240  "dtls",
241  "dynamic-engine",
242  "ec",
243  "ec2m",
244  "ecdh",
245  "ecdsa",
246  "ec_nistp_64_gcc_128",
247  "egd",
248  "engine",
249  "err",
250  "external-tests",
251  "filenames",
252  "fuzz-libfuzzer",
253  "fuzz-afl",
254  "gost",
255  "heartbeats",
256  "hw(-.+)?",
257  "idea",
258  "makedepend",
259  "md2",
260  "md4",
261  "mdc2",
262  "msan",
263  "multiblock",
264  "nextprotoneg",
265  "pinshared",
266  "ocb",
267  "ocsp",
268  "pic",
269  "poly1305",
270  "posix-io",
271  "psk",
272  "rc2",
273  "rc4",
274  "rc5",
275  "rdrand",
276  "rfc3779",
277  "rmd160",
278  "scrypt",
279  "sctp",
280  "seed",
281  "shared",
282  "siphash",
283  "sm2",
284  "sm3",
285  "sm4",
286  "sock",
287  "srp",
288  "srtp",
289  "sse2",
290  "ssl",
291  "ssl-trace",
292  "static-engine",
293  "stdio",
294  "tests",
295  "threads",
296  "tls",
297  "ts",
298  "ubsan",
299  "ui-console",
300  "unit-test",
301  "whirlpool",
302  "weak-ssl-ciphers",
303  "zlib",
304  "zlib-dynamic",
305  "ssl3",
306  "ssl3-method",
307  "tls1",
308  "tls1-method",
309  "tls1_1",
310  "tls1_1-method",
311  "tls1_2",
312  "tls1_2-method",
313  "tls1_3",
314  "dtls1",
315  "dtls1-method",
316  "dtls1_2",
317  "dtls1_2-method",
318);
319
320our %disabled = (
321  "afalgeng" => "option",
322  "asan" => "default",
323  "buildtest-c++" => "default",
324  "comp" => "option",
325  "crypto-mdebug" => "default",
326  "crypto-mdebug-backtrace" => "default",
327  "dynamic-engine" => "cascade",
328  "ec_nistp_64_gcc_128" => "default",
329  "egd" => "default",
330  "external-tests" => "default",
331  "fuzz-afl" => "default",
332  "fuzz-libfuzzer" => "default",
333  "heartbeats" => "default",
334  "md2" => "default",
335  "msan" => "default",
336  "rc5" => "default",
337  "sctp" => "default",
338  "shared" => "option",
339  "ssl-trace" => "default",
340  "ssl3" => "default",
341  "ssl3-method" => "default",
342  "ubsan" => "default",
343  "unit-test" => "default",
344  "weak-ssl-ciphers" => "default",
345  "zlib" => "default",
346  "zlib-dynamic" => "default",
347);
348
349our %withargs = (
350);
351
352our %unified_info = (
353    "depends" =>
354        {
355            "" =>
356                [
357                    "include/crypto/bn_conf.h",
358                    "include/crypto/dso_conf.h",
359                    "include/openssl/opensslconf.h",
360                ],
361            "apps/asn1pars.o" =>
362                [
363                    "apps/progs.h",
364                ],
365            "apps/ca.o" =>
366                [
367                    "apps/progs.h",
368                ],
369            "apps/ciphers.o" =>
370                [
371                    "apps/progs.h",
372                ],
373            "apps/cms.o" =>
374                [
375                    "apps/progs.h",
376                ],
377            "apps/crl.o" =>
378                [
379                    "apps/progs.h",
380                ],
381            "apps/crl2p7.o" =>
382                [
383                    "apps/progs.h",
384                ],
385            "apps/dgst.o" =>
386                [
387                    "apps/progs.h",
388                ],
389            "apps/dhparam.o" =>
390                [
391                    "apps/progs.h",
392                ],
393            "apps/dsa.o" =>
394                [
395                    "apps/progs.h",
396                ],
397            "apps/dsaparam.o" =>
398                [
399                    "apps/progs.h",
400                ],
401            "apps/ec.o" =>
402                [
403                    "apps/progs.h",
404                ],
405            "apps/ecparam.o" =>
406                [
407                    "apps/progs.h",
408                ],
409            "apps/enc.o" =>
410                [
411                    "apps/progs.h",
412                ],
413            "apps/engine.o" =>
414                [
415                    "apps/progs.h",
416                ],
417            "apps/errstr.o" =>
418                [
419                    "apps/progs.h",
420                ],
421            "apps/gendsa.o" =>
422                [
423                    "apps/progs.h",
424                ],
425            "apps/genpkey.o" =>
426                [
427                    "apps/progs.h",
428                ],
429            "apps/genrsa.o" =>
430                [
431                    "apps/progs.h",
432                ],
433            "apps/nseq.o" =>
434                [
435                    "apps/progs.h",
436                ],
437            "apps/ocsp.o" =>
438                [
439                    "apps/progs.h",
440                ],
441            "apps/openssl" =>
442                [
443                    "apps/libapps.a",
444                    "libssl",
445                ],
446            "apps/openssl.o" =>
447                [
448                    "apps/progs.h",
449                ],
450            "apps/passwd.o" =>
451                [
452                    "apps/progs.h",
453                ],
454            "apps/pkcs12.o" =>
455                [
456                    "apps/progs.h",
457                ],
458            "apps/pkcs7.o" =>
459                [
460                    "apps/progs.h",
461                ],
462            "apps/pkcs8.o" =>
463                [
464                    "apps/progs.h",
465                ],
466            "apps/pkey.o" =>
467                [
468                    "apps/progs.h",
469                ],
470            "apps/pkeyparam.o" =>
471                [
472                    "apps/progs.h",
473                ],
474            "apps/pkeyutl.o" =>
475                [
476                    "apps/progs.h",
477                ],
478            "apps/prime.o" =>
479                [
480                    "apps/progs.h",
481                ],
482            "apps/progs.h" =>
483                [
484                    "configdata.pm",
485                ],
486            "apps/rand.o" =>
487                [
488                    "apps/progs.h",
489                ],
490            "apps/rehash.o" =>
491                [
492                    "apps/progs.h",
493                ],
494            "apps/req.o" =>
495                [
496                    "apps/progs.h",
497                ],
498            "apps/rsa.o" =>
499                [
500                    "apps/progs.h",
501                ],
502            "apps/rsautl.o" =>
503                [
504                    "apps/progs.h",
505                ],
506            "apps/s_client.o" =>
507                [
508                    "apps/progs.h",
509                ],
510            "apps/s_server.o" =>
511                [
512                    "apps/progs.h",
513                ],
514            "apps/s_time.o" =>
515                [
516                    "apps/progs.h",
517                ],
518            "apps/sess_id.o" =>
519                [
520                    "apps/progs.h",
521                ],
522            "apps/smime.o" =>
523                [
524                    "apps/progs.h",
525                ],
526            "apps/speed.o" =>
527                [
528                    "apps/progs.h",
529                ],
530            "apps/spkac.o" =>
531                [
532                    "apps/progs.h",
533                ],
534            "apps/srp.o" =>
535                [
536                    "apps/progs.h",
537                ],
538            "apps/storeutl.o" =>
539                [
540                    "apps/progs.h",
541                ],
542            "apps/ts.o" =>
543                [
544                    "apps/progs.h",
545                ],
546            "apps/verify.o" =>
547                [
548                    "apps/progs.h",
549                ],
550            "apps/version.o" =>
551                [
552                    "apps/progs.h",
553                ],
554            "apps/x509.o" =>
555                [
556                    "apps/progs.h",
557                ],
558            "crypto/aes/aes-586.s" =>
559                [
560                    "crypto/perlasm/x86asm.pl",
561                ],
562            "crypto/aes/aesni-586.s" =>
563                [
564                    "crypto/perlasm/x86asm.pl",
565                ],
566            "crypto/aes/aest4-sparcv9.S" =>
567                [
568                    "crypto/perlasm/sparcv9_modes.pl",
569                ],
570            "crypto/aes/vpaes-586.s" =>
571                [
572                    "crypto/perlasm/x86asm.pl",
573                ],
574            "crypto/bf/bf-586.s" =>
575                [
576                    "crypto/perlasm/cbc.pl",
577                    "crypto/perlasm/x86asm.pl",
578                ],
579            "crypto/bn/bn-586.s" =>
580                [
581                    "crypto/perlasm/x86asm.pl",
582                ],
583            "crypto/bn/co-586.s" =>
584                [
585                    "crypto/perlasm/x86asm.pl",
586                ],
587            "crypto/bn/x86-gf2m.s" =>
588                [
589                    "crypto/perlasm/x86asm.pl",
590                ],
591            "crypto/bn/x86-mont.s" =>
592                [
593                    "crypto/perlasm/x86asm.pl",
594                ],
595            "crypto/buildinf.h" =>
596                [
597                    "configdata.pm",
598                ],
599            "crypto/camellia/cmll-x86.s" =>
600                [
601                    "crypto/perlasm/x86asm.pl",
602                ],
603            "crypto/camellia/cmllt4-sparcv9.S" =>
604                [
605                    "crypto/perlasm/sparcv9_modes.pl",
606                ],
607            "crypto/cast/cast-586.s" =>
608                [
609                    "crypto/perlasm/cbc.pl",
610                    "crypto/perlasm/x86asm.pl",
611                ],
612            "crypto/cversion.o" =>
613                [
614                    "crypto/buildinf.h",
615                ],
616            "crypto/des/crypt586.s" =>
617                [
618                    "crypto/perlasm/cbc.pl",
619                    "crypto/perlasm/x86asm.pl",
620                ],
621            "crypto/des/des-586.s" =>
622                [
623                    "crypto/perlasm/cbc.pl",
624                    "crypto/perlasm/x86asm.pl",
625                ],
626            "crypto/rc4/rc4-586.s" =>
627                [
628                    "crypto/perlasm/x86asm.pl",
629                ],
630            "crypto/ripemd/rmd-586.s" =>
631                [
632                    "crypto/perlasm/x86asm.pl",
633                ],
634            "crypto/sha/sha1-586.s" =>
635                [
636                    "crypto/perlasm/x86asm.pl",
637                ],
638            "crypto/sha/sha256-586.s" =>
639                [
640                    "crypto/perlasm/x86asm.pl",
641                ],
642            "crypto/sha/sha512-586.s" =>
643                [
644                    "crypto/perlasm/x86asm.pl",
645                ],
646            "crypto/whrlpool/wp-mmx.s" =>
647                [
648                    "crypto/perlasm/x86asm.pl",
649                ],
650            "crypto/x86cpuid.s" =>
651                [
652                    "crypto/perlasm/x86asm.pl",
653                ],
654            "fuzz/asn1-test" =>
655                [
656                    "libcrypto",
657                    "libssl",
658                ],
659            "fuzz/asn1parse-test" =>
660                [
661                    "libcrypto",
662                ],
663            "fuzz/bignum-test" =>
664                [
665                    "libcrypto",
666                ],
667            "fuzz/bndiv-test" =>
668                [
669                    "libcrypto",
670                ],
671            "fuzz/client-test" =>
672                [
673                    "libcrypto",
674                    "libssl",
675                ],
676            "fuzz/cms-test" =>
677                [
678                    "libcrypto",
679                ],
680            "fuzz/conf-test" =>
681                [
682                    "libcrypto",
683                ],
684            "fuzz/crl-test" =>
685                [
686                    "libcrypto",
687                ],
688            "fuzz/ct-test" =>
689                [
690                    "libcrypto",
691                ],
692            "fuzz/server-test" =>
693                [
694                    "libcrypto",
695                    "libssl",
696                ],
697            "fuzz/x509-test" =>
698                [
699                    "libcrypto",
700                ],
701            "include/crypto/bn_conf.h" =>
702                [
703                    "configdata.pm",
704                ],
705            "include/crypto/dso_conf.h" =>
706                [
707                    "configdata.pm",
708                ],
709            "include/openssl/opensslconf.h" =>
710                [
711                    "configdata.pm",
712                ],
713            "libcrypto.map" =>
714                [
715                    "util/libcrypto.num",
716                ],
717            "libssl" =>
718                [
719                    "libcrypto",
720                ],
721            "libssl.map" =>
722                [
723                    "util/libssl.num",
724                ],
725            "test/aborttest" =>
726                [
727                    "libcrypto",
728                ],
729            "test/afalgtest" =>
730                [
731                    "libcrypto",
732                    "test/libtestutil.a",
733                ],
734            "test/asn1_decode_test" =>
735                [
736                    "libcrypto",
737                    "test/libtestutil.a",
738                ],
739            "test/asn1_encode_test" =>
740                [
741                    "libcrypto",
742                    "test/libtestutil.a",
743                ],
744            "test/asn1_internal_test" =>
745                [
746                    "libcrypto.a",
747                    "test/libtestutil.a",
748                ],
749            "test/asn1_string_table_test" =>
750                [
751                    "libcrypto",
752                    "test/libtestutil.a",
753                ],
754            "test/asn1_time_test" =>
755                [
756                    "libcrypto",
757                    "test/libtestutil.a",
758                ],
759            "test/asynciotest" =>
760                [
761                    "libcrypto",
762                    "libssl",
763                    "test/libtestutil.a",
764                ],
765            "test/asynctest" =>
766                [
767                    "libcrypto",
768                ],
769            "test/bad_dtls_test" =>
770                [
771                    "libcrypto",
772                    "libssl",
773                    "test/libtestutil.a",
774                ],
775            "test/bftest" =>
776                [
777                    "libcrypto",
778                    "test/libtestutil.a",
779                ],
780            "test/bio_callback_test" =>
781                [
782                    "libcrypto",
783                    "test/libtestutil.a",
784                ],
785            "test/bio_enc_test" =>
786                [
787                    "libcrypto",
788                    "test/libtestutil.a",
789                ],
790            "test/bio_memleak_test" =>
791                [
792                    "libcrypto",
793                    "test/libtestutil.a",
794                ],
795            "test/bioprinttest" =>
796                [
797                    "libcrypto",
798                    "test/libtestutil.a",
799                ],
800            "test/bntest" =>
801                [
802                    "libcrypto",
803                    "test/libtestutil.a",
804                ],
805            "test/buildtest_c_aes" =>
806                [
807                    "libcrypto",
808                    "libssl",
809                ],
810            "test/buildtest_c_asn1" =>
811                [
812                    "libcrypto",
813                    "libssl",
814                ],
815            "test/buildtest_c_asn1t" =>
816                [
817                    "libcrypto",
818                    "libssl",
819                ],
820            "test/buildtest_c_async" =>
821                [
822                    "libcrypto",
823                    "libssl",
824                ],
825            "test/buildtest_c_bio" =>
826                [
827                    "libcrypto",
828                    "libssl",
829                ],
830            "test/buildtest_c_blowfish" =>
831                [
832                    "libcrypto",
833                    "libssl",
834                ],
835            "test/buildtest_c_bn" =>
836                [
837                    "libcrypto",
838                    "libssl",
839                ],
840            "test/buildtest_c_buffer" =>
841                [
842                    "libcrypto",
843                    "libssl",
844                ],
845            "test/buildtest_c_camellia" =>
846                [
847                    "libcrypto",
848                    "libssl",
849                ],
850            "test/buildtest_c_cast" =>
851                [
852                    "libcrypto",
853                    "libssl",
854                ],
855            "test/buildtest_c_cmac" =>
856                [
857                    "libcrypto",
858                    "libssl",
859                ],
860            "test/buildtest_c_cms" =>
861                [
862                    "libcrypto",
863                    "libssl",
864                ],
865            "test/buildtest_c_conf" =>
866                [
867                    "libcrypto",
868                    "libssl",
869                ],
870            "test/buildtest_c_conf_api" =>
871                [
872                    "libcrypto",
873                    "libssl",
874                ],
875            "test/buildtest_c_crypto" =>
876                [
877                    "libcrypto",
878                    "libssl",
879                ],
880            "test/buildtest_c_ct" =>
881                [
882                    "libcrypto",
883                    "libssl",
884                ],
885            "test/buildtest_c_des" =>
886                [
887                    "libcrypto",
888                    "libssl",
889                ],
890            "test/buildtest_c_dh" =>
891                [
892                    "libcrypto",
893                    "libssl",
894                ],
895            "test/buildtest_c_dsa" =>
896                [
897                    "libcrypto",
898                    "libssl",
899                ],
900            "test/buildtest_c_dtls1" =>
901                [
902                    "libcrypto",
903                    "libssl",
904                ],
905            "test/buildtest_c_e_os2" =>
906                [
907                    "libcrypto",
908                    "libssl",
909                ],
910            "test/buildtest_c_ebcdic" =>
911                [
912                    "libcrypto",
913                    "libssl",
914                ],
915            "test/buildtest_c_ec" =>
916                [
917                    "libcrypto",
918                    "libssl",
919                ],
920            "test/buildtest_c_ecdh" =>
921                [
922                    "libcrypto",
923                    "libssl",
924                ],
925            "test/buildtest_c_ecdsa" =>
926                [
927                    "libcrypto",
928                    "libssl",
929                ],
930            "test/buildtest_c_engine" =>
931                [
932                    "libcrypto",
933                    "libssl",
934                ],
935            "test/buildtest_c_evp" =>
936                [
937                    "libcrypto",
938                    "libssl",
939                ],
940            "test/buildtest_c_hmac" =>
941                [
942                    "libcrypto",
943                    "libssl",
944                ],
945            "test/buildtest_c_idea" =>
946                [
947                    "libcrypto",
948                    "libssl",
949                ],
950            "test/buildtest_c_kdf" =>
951                [
952                    "libcrypto",
953                    "libssl",
954                ],
955            "test/buildtest_c_lhash" =>
956                [
957                    "libcrypto",
958                    "libssl",
959                ],
960            "test/buildtest_c_md4" =>
961                [
962                    "libcrypto",
963                    "libssl",
964                ],
965            "test/buildtest_c_md5" =>
966                [
967                    "libcrypto",
968                    "libssl",
969                ],
970            "test/buildtest_c_mdc2" =>
971                [
972                    "libcrypto",
973                    "libssl",
974                ],
975            "test/buildtest_c_modes" =>
976                [
977                    "libcrypto",
978                    "libssl",
979                ],
980            "test/buildtest_c_obj_mac" =>
981                [
982                    "libcrypto",
983                    "libssl",
984                ],
985            "test/buildtest_c_objects" =>
986                [
987                    "libcrypto",
988                    "libssl",
989                ],
990            "test/buildtest_c_ocsp" =>
991                [
992                    "libcrypto",
993                    "libssl",
994                ],
995            "test/buildtest_c_opensslv" =>
996                [
997                    "libcrypto",
998                    "libssl",
999                ],
1000            "test/buildtest_c_ossl_typ" =>
1001                [
1002                    "libcrypto",
1003                    "libssl",
1004                ],
1005            "test/buildtest_c_pem" =>
1006                [
1007                    "libcrypto",
1008                    "libssl",
1009                ],
1010            "test/buildtest_c_pem2" =>
1011                [
1012                    "libcrypto",
1013                    "libssl",
1014                ],
1015            "test/buildtest_c_pkcs12" =>
1016                [
1017                    "libcrypto",
1018                    "libssl",
1019                ],
1020            "test/buildtest_c_pkcs7" =>
1021                [
1022                    "libcrypto",
1023                    "libssl",
1024                ],
1025            "test/buildtest_c_rand" =>
1026                [
1027                    "libcrypto",
1028                    "libssl",
1029                ],
1030            "test/buildtest_c_rand_drbg" =>
1031                [
1032                    "libcrypto",
1033                    "libssl",
1034                ],
1035            "test/buildtest_c_rc2" =>
1036                [
1037                    "libcrypto",
1038                    "libssl",
1039                ],
1040            "test/buildtest_c_rc4" =>
1041                [
1042                    "libcrypto",
1043                    "libssl",
1044                ],
1045            "test/buildtest_c_ripemd" =>
1046                [
1047                    "libcrypto",
1048                    "libssl",
1049                ],
1050            "test/buildtest_c_rsa" =>
1051                [
1052                    "libcrypto",
1053                    "libssl",
1054                ],
1055            "test/buildtest_c_safestack" =>
1056                [
1057                    "libcrypto",
1058                    "libssl",
1059                ],
1060            "test/buildtest_c_seed" =>
1061                [
1062                    "libcrypto",
1063                    "libssl",
1064                ],
1065            "test/buildtest_c_sha" =>
1066                [
1067                    "libcrypto",
1068                    "libssl",
1069                ],
1070            "test/buildtest_c_srp" =>
1071                [
1072                    "libcrypto",
1073                    "libssl",
1074                ],
1075            "test/buildtest_c_srtp" =>
1076                [
1077                    "libcrypto",
1078                    "libssl",
1079                ],
1080            "test/buildtest_c_ssl" =>
1081                [
1082                    "libcrypto",
1083                    "libssl",
1084                ],
1085            "test/buildtest_c_ssl2" =>
1086                [
1087                    "libcrypto",
1088                    "libssl",
1089                ],
1090            "test/buildtest_c_stack" =>
1091                [
1092                    "libcrypto",
1093                    "libssl",
1094                ],
1095            "test/buildtest_c_store" =>
1096                [
1097                    "libcrypto",
1098                    "libssl",
1099                ],
1100            "test/buildtest_c_symhacks" =>
1101                [
1102                    "libcrypto",
1103                    "libssl",
1104                ],
1105            "test/buildtest_c_tls1" =>
1106                [
1107                    "libcrypto",
1108                    "libssl",
1109                ],
1110            "test/buildtest_c_ts" =>
1111                [
1112                    "libcrypto",
1113                    "libssl",
1114                ],
1115            "test/buildtest_c_txt_db" =>
1116                [
1117                    "libcrypto",
1118                    "libssl",
1119                ],
1120            "test/buildtest_c_ui" =>
1121                [
1122                    "libcrypto",
1123                    "libssl",
1124                ],
1125            "test/buildtest_c_whrlpool" =>
1126                [
1127                    "libcrypto",
1128                    "libssl",
1129                ],
1130            "test/buildtest_c_x509" =>
1131                [
1132                    "libcrypto",
1133                    "libssl",
1134                ],
1135            "test/buildtest_c_x509_vfy" =>
1136                [
1137                    "libcrypto",
1138                    "libssl",
1139                ],
1140            "test/buildtest_c_x509v3" =>
1141                [
1142                    "libcrypto",
1143                    "libssl",
1144                ],
1145            "test/casttest" =>
1146                [
1147                    "libcrypto",
1148                    "test/libtestutil.a",
1149                ],
1150            "test/chacha_internal_test" =>
1151                [
1152                    "libcrypto.a",
1153                    "test/libtestutil.a",
1154                ],
1155            "test/cipher_overhead_test" =>
1156                [
1157                    "libcrypto",
1158                    "libssl",
1159                    "test/libtestutil.a",
1160                ],
1161            "test/cipherbytes_test" =>
1162                [
1163                    "libcrypto",
1164                    "libssl",
1165                    "test/libtestutil.a",
1166                ],
1167            "test/cipherlist_test" =>
1168                [
1169                    "libcrypto",
1170                    "libssl",
1171                    "test/libtestutil.a",
1172                ],
1173            "test/ciphername_test" =>
1174                [
1175                    "libcrypto",
1176                    "libssl",
1177                    "test/libtestutil.a",
1178                ],
1179            "test/clienthellotest" =>
1180                [
1181                    "libcrypto",
1182                    "libssl",
1183                    "test/libtestutil.a",
1184                ],
1185            "test/cmactest" =>
1186                [
1187                    "libcrypto.a",
1188                    "test/libtestutil.a",
1189                ],
1190            "test/cmsapitest" =>
1191                [
1192                    "libcrypto",
1193                    "test/libtestutil.a",
1194                ],
1195            "test/conf_include_test" =>
1196                [
1197                    "libcrypto",
1198                    "test/libtestutil.a",
1199                ],
1200            "test/constant_time_test" =>
1201                [
1202                    "libcrypto",
1203                    "test/libtestutil.a",
1204                ],
1205            "test/crltest" =>
1206                [
1207                    "libcrypto",
1208                    "test/libtestutil.a",
1209                ],
1210            "test/ct_test" =>
1211                [
1212                    "libcrypto",
1213                    "test/libtestutil.a",
1214                ],
1215            "test/ctype_internal_test" =>
1216                [
1217                    "libcrypto.a",
1218                    "test/libtestutil.a",
1219                ],
1220            "test/curve448_internal_test" =>
1221                [
1222                    "libcrypto.a",
1223                    "test/libtestutil.a",
1224                ],
1225            "test/d2i_test" =>
1226                [
1227                    "libcrypto",
1228                    "test/libtestutil.a",
1229                ],
1230            "test/danetest" =>
1231                [
1232                    "libcrypto",
1233                    "libssl",
1234                    "test/libtestutil.a",
1235                ],
1236            "test/destest" =>
1237                [
1238                    "libcrypto",
1239                    "test/libtestutil.a",
1240                ],
1241            "test/dhtest" =>
1242                [
1243                    "libcrypto",
1244                    "test/libtestutil.a",
1245                ],
1246            "test/drbg_cavs_test" =>
1247                [
1248                    "libcrypto",
1249                    "test/libtestutil.a",
1250                ],
1251            "test/drbgtest" =>
1252                [
1253                    "libcrypto.a",
1254                    "test/libtestutil.a",
1255                ],
1256            "test/dsa_no_digest_size_test" =>
1257                [
1258                    "libcrypto",
1259                    "test/libtestutil.a",
1260                ],
1261            "test/dsatest" =>
1262                [
1263                    "libcrypto",
1264                    "test/libtestutil.a",
1265                ],
1266            "test/dtls_mtu_test" =>
1267                [
1268                    "libcrypto",
1269                    "libssl",
1270                    "test/libtestutil.a",
1271                ],
1272            "test/dtlstest" =>
1273                [
1274                    "libcrypto",
1275                    "libssl",
1276                    "test/libtestutil.a",
1277                ],
1278            "test/dtlsv1listentest" =>
1279                [
1280                    "libssl",
1281                    "test/libtestutil.a",
1282                ],
1283            "test/ec_internal_test" =>
1284                [
1285                    "libcrypto.a",
1286                    "test/libtestutil.a",
1287                ],
1288            "test/ecdsatest" =>
1289                [
1290                    "libcrypto",
1291                    "test/libtestutil.a",
1292                ],
1293            "test/ecstresstest" =>
1294                [
1295                    "libcrypto",
1296                    "test/libtestutil.a",
1297                ],
1298            "test/ectest" =>
1299                [
1300                    "libcrypto",
1301                    "test/libtestutil.a",
1302                ],
1303            "test/enginetest" =>
1304                [
1305                    "libcrypto",
1306                    "test/libtestutil.a",
1307                ],
1308            "test/errtest" =>
1309                [
1310                    "libcrypto",
1311                    "test/libtestutil.a",
1312                ],
1313            "test/evp_extra_test" =>
1314                [
1315                    "libcrypto",
1316                    "test/libtestutil.a",
1317                ],
1318            "test/evp_test" =>
1319                [
1320                    "libcrypto",
1321                    "test/libtestutil.a",
1322                ],
1323            "test/exdatatest" =>
1324                [
1325                    "libcrypto",
1326                    "test/libtestutil.a",
1327                ],
1328            "test/exptest" =>
1329                [
1330                    "libcrypto",
1331                    "test/libtestutil.a",
1332                ],
1333            "test/fatalerrtest" =>
1334                [
1335                    "libcrypto",
1336                    "libssl",
1337                    "test/libtestutil.a",
1338                ],
1339            "test/gmdifftest" =>
1340                [
1341                    "libcrypto",
1342                    "test/libtestutil.a",
1343                ],
1344            "test/gosttest" =>
1345                [
1346                    "libcrypto",
1347                    "libssl",
1348                    "test/libtestutil.a",
1349                ],
1350            "test/hmactest" =>
1351                [
1352                    "libcrypto",
1353                    "test/libtestutil.a",
1354                ],
1355            "test/ideatest" =>
1356                [
1357                    "libcrypto",
1358                    "test/libtestutil.a",
1359                ],
1360            "test/igetest" =>
1361                [
1362                    "libcrypto",
1363                    "test/libtestutil.a",
1364                ],
1365            "test/lhash_test" =>
1366                [
1367                    "libcrypto",
1368                    "test/libtestutil.a",
1369                ],
1370            "test/libtestutil.a" =>
1371                [
1372                    "libcrypto",
1373                ],
1374            "test/md2test" =>
1375                [
1376                    "libcrypto",
1377                    "test/libtestutil.a",
1378                ],
1379            "test/mdc2_internal_test" =>
1380                [
1381                    "libcrypto",
1382                    "test/libtestutil.a",
1383                ],
1384            "test/mdc2test" =>
1385                [
1386                    "libcrypto",
1387                    "test/libtestutil.a",
1388                ],
1389            "test/memleaktest" =>
1390                [
1391                    "libcrypto",
1392                    "test/libtestutil.a",
1393                ],
1394            "test/modes_internal_test" =>
1395                [
1396                    "libcrypto.a",
1397                    "test/libtestutil.a",
1398                ],
1399            "test/ocspapitest" =>
1400                [
1401                    "libcrypto",
1402                    "test/libtestutil.a",
1403                ],
1404            "test/packettest" =>
1405                [
1406                    "libcrypto",
1407                    "test/libtestutil.a",
1408                ],
1409            "test/pbelutest" =>
1410                [
1411                    "libcrypto",
1412                    "test/libtestutil.a",
1413                ],
1414            "test/pemtest" =>
1415                [
1416                    "libcrypto",
1417                    "test/libtestutil.a",
1418                ],
1419            "test/pkey_meth_kdf_test" =>
1420                [
1421                    "libcrypto",
1422                    "test/libtestutil.a",
1423                ],
1424            "test/pkey_meth_test" =>
1425                [
1426                    "libcrypto",
1427                    "test/libtestutil.a",
1428                ],
1429            "test/poly1305_internal_test" =>
1430                [
1431                    "libcrypto.a",
1432                    "test/libtestutil.a",
1433                ],
1434            "test/rc2test" =>
1435                [
1436                    "libcrypto",
1437                    "test/libtestutil.a",
1438                ],
1439            "test/rc4test" =>
1440                [
1441                    "libcrypto",
1442                    "test/libtestutil.a",
1443                ],
1444            "test/rc5test" =>
1445                [
1446                    "libcrypto",
1447                    "test/libtestutil.a",
1448                ],
1449            "test/rdrand_sanitytest" =>
1450                [
1451                    "libcrypto.a",
1452                    "test/libtestutil.a",
1453                ],
1454            "test/recordlentest" =>
1455                [
1456                    "libcrypto",
1457                    "libssl",
1458                    "test/libtestutil.a",
1459                ],
1460            "test/rsa_mp_test" =>
1461                [
1462                    "libcrypto",
1463                    "test/libtestutil.a",
1464                ],
1465            "test/rsa_test" =>
1466                [
1467                    "libcrypto",
1468                    "test/libtestutil.a",
1469                ],
1470            "test/sanitytest" =>
1471                [
1472                    "libcrypto",
1473                    "test/libtestutil.a",
1474                ],
1475            "test/secmemtest" =>
1476                [
1477                    "libcrypto",
1478                    "test/libtestutil.a",
1479                ],
1480            "test/servername_test" =>
1481                [
1482                    "libcrypto",
1483                    "libssl",
1484                    "test/libtestutil.a",
1485                ],
1486            "test/siphash_internal_test" =>
1487                [
1488                    "libcrypto.a",
1489                    "test/libtestutil.a",
1490                ],
1491            "test/sm2_internal_test" =>
1492                [
1493                    "libcrypto.a",
1494                    "test/libtestutil.a",
1495                ],
1496            "test/sm4_internal_test" =>
1497                [
1498                    "libcrypto.a",
1499                    "test/libtestutil.a",
1500                ],
1501            "test/srptest" =>
1502                [
1503                    "libcrypto",
1504                    "test/libtestutil.a",
1505                ],
1506            "test/ssl_cert_table_internal_test" =>
1507                [
1508                    "libcrypto",
1509                    "test/libtestutil.a",
1510                ],
1511            "test/ssl_ctx_test" =>
1512                [
1513                    "libcrypto",
1514                    "libssl",
1515                    "test/libtestutil.a",
1516                ],
1517            "test/ssl_test" =>
1518                [
1519                    "libcrypto",
1520                    "libssl",
1521                    "test/libtestutil.a",
1522                ],
1523            "test/ssl_test_ctx_test" =>
1524                [
1525                    "libcrypto",
1526                    "libssl",
1527                    "test/libtestutil.a",
1528                ],
1529            "test/sslapitest" =>
1530                [
1531                    "libcrypto",
1532                    "libssl",
1533                    "test/libtestutil.a",
1534                ],
1535            "test/sslbuffertest" =>
1536                [
1537                    "libcrypto",
1538                    "libssl",
1539                    "test/libtestutil.a",
1540                ],
1541            "test/sslcorrupttest" =>
1542                [
1543                    "libcrypto",
1544                    "libssl",
1545                    "test/libtestutil.a",
1546                ],
1547            "test/ssltest_old" =>
1548                [
1549                    "libcrypto",
1550                    "libssl",
1551                ],
1552            "test/stack_test" =>
1553                [
1554                    "libcrypto",
1555                    "test/libtestutil.a",
1556                ],
1557            "test/sysdefaulttest" =>
1558                [
1559                    "libcrypto",
1560                    "libssl",
1561                    "test/libtestutil.a",
1562                ],
1563            "test/test_test" =>
1564                [
1565                    "libcrypto",
1566                    "test/libtestutil.a",
1567                ],
1568            "test/threadstest" =>
1569                [
1570                    "libcrypto",
1571                    "test/libtestutil.a",
1572                ],
1573            "test/time_offset_test" =>
1574                [
1575                    "libcrypto",
1576                    "test/libtestutil.a",
1577                ],
1578            "test/tls13ccstest" =>
1579                [
1580                    "libcrypto",
1581                    "libssl",
1582                    "test/libtestutil.a",
1583                ],
1584            "test/tls13encryptiontest" =>
1585                [
1586                    "libcrypto",
1587                    "libssl.a",
1588                    "test/libtestutil.a",
1589                ],
1590            "test/uitest" =>
1591                [
1592                    "apps/libapps.a",
1593                    "libcrypto",
1594                    "libssl",
1595                    "test/libtestutil.a",
1596                ],
1597            "test/v3ext" =>
1598                [
1599                    "libcrypto",
1600                    "test/libtestutil.a",
1601                ],
1602            "test/v3nametest" =>
1603                [
1604                    "libcrypto",
1605                    "test/libtestutil.a",
1606                ],
1607            "test/verify_extra_test" =>
1608                [
1609                    "libcrypto",
1610                    "test/libtestutil.a",
1611                ],
1612            "test/versions" =>
1613                [
1614                    "libcrypto",
1615                ],
1616            "test/wpackettest" =>
1617                [
1618                    "libcrypto",
1619                    "libssl.a",
1620                    "test/libtestutil.a",
1621                ],
1622            "test/x509_check_cert_pkey_test" =>
1623                [
1624                    "libcrypto",
1625                    "test/libtestutil.a",
1626                ],
1627            "test/x509_dup_cert_test" =>
1628                [
1629                    "libcrypto",
1630                    "test/libtestutil.a",
1631                ],
1632            "test/x509_internal_test" =>
1633                [
1634                    "libcrypto.a",
1635                    "test/libtestutil.a",
1636                ],
1637            "test/x509_time_test" =>
1638                [
1639                    "libcrypto",
1640                    "test/libtestutil.a",
1641                ],
1642            "test/x509aux" =>
1643                [
1644                    "libcrypto",
1645                    "test/libtestutil.a",
1646                ],
1647        },
1648    "dirinfo" =>
1649        {
1650            "apps" =>
1651                {
1652                    "products" =>
1653                        {
1654                            "bin" =>
1655                                [
1656                                    "apps/openssl",
1657                                ],
1658                            "lib" =>
1659                                [
1660                                    "apps/libapps.a",
1661                                ],
1662                            "script" =>
1663                                [
1664                                    "apps/CA.pl",
1665                                    "apps/tsget.pl",
1666                                ],
1667                        },
1668                },
1669            "crypto" =>
1670                {
1671                    "deps" =>
1672                        [
1673                            "crypto/cpt_err.o",
1674                            "crypto/cryptlib.o",
1675                            "crypto/ctype.o",
1676                            "crypto/cversion.o",
1677                            "crypto/ebcdic.o",
1678                            "crypto/ex_data.o",
1679                            "crypto/getenv.o",
1680                            "crypto/init.o",
1681                            "crypto/mem.o",
1682                            "crypto/mem_dbg.o",
1683                            "crypto/mem_sec.o",
1684                            "crypto/o_dir.o",
1685                            "crypto/o_fips.o",
1686                            "crypto/o_fopen.o",
1687                            "crypto/o_init.o",
1688                            "crypto/o_str.o",
1689                            "crypto/o_time.o",
1690                            "crypto/threads_none.o",
1691                            "crypto/threads_pthread.o",
1692                            "crypto/threads_win.o",
1693                            "crypto/uid.o",
1694                            "crypto/x86_64cpuid.o",
1695                        ],
1696                    "products" =>
1697                        {
1698                            "lib" =>
1699                                [
1700                                    "libcrypto",
1701                                ],
1702                        },
1703                },
1704            "crypto/aes" =>
1705                {
1706                    "deps" =>
1707                        [
1708                            "crypto/aes/aes_cbc.o",
1709                            "crypto/aes/aes_cfb.o",
1710                            "crypto/aes/aes_core.o",
1711                            "crypto/aes/aes_ecb.o",
1712                            "crypto/aes/aes_ige.o",
1713                            "crypto/aes/aes_misc.o",
1714                            "crypto/aes/aes_ofb.o",
1715                            "crypto/aes/aes_wrap.o",
1716                            "crypto/aes/aesni-mb-x86_64.o",
1717                            "crypto/aes/aesni-sha1-x86_64.o",
1718                            "crypto/aes/aesni-sha256-x86_64.o",
1719                            "crypto/aes/aesni-x86_64.o",
1720                            "crypto/aes/vpaes-x86_64.o",
1721                        ],
1722                    "products" =>
1723                        {
1724                            "lib" =>
1725                                [
1726                                    "libcrypto",
1727                                ],
1728                        },
1729                },
1730            "crypto/aria" =>
1731                {
1732                    "deps" =>
1733                        [
1734                            "crypto/aria/aria.o",
1735                        ],
1736                    "products" =>
1737                        {
1738                            "lib" =>
1739                                [
1740                                    "libcrypto",
1741                                ],
1742                        },
1743                },
1744            "crypto/asn1" =>
1745                {
1746                    "deps" =>
1747                        [
1748                            "crypto/asn1/a_bitstr.o",
1749                            "crypto/asn1/a_d2i_fp.o",
1750                            "crypto/asn1/a_digest.o",
1751                            "crypto/asn1/a_dup.o",
1752                            "crypto/asn1/a_gentm.o",
1753                            "crypto/asn1/a_i2d_fp.o",
1754                            "crypto/asn1/a_int.o",
1755                            "crypto/asn1/a_mbstr.o",
1756                            "crypto/asn1/a_object.o",
1757                            "crypto/asn1/a_octet.o",
1758                            "crypto/asn1/a_print.o",
1759                            "crypto/asn1/a_sign.o",
1760                            "crypto/asn1/a_strex.o",
1761                            "crypto/asn1/a_strnid.o",
1762                            "crypto/asn1/a_time.o",
1763                            "crypto/asn1/a_type.o",
1764                            "crypto/asn1/a_utctm.o",
1765                            "crypto/asn1/a_utf8.o",
1766                            "crypto/asn1/a_verify.o",
1767                            "crypto/asn1/ameth_lib.o",
1768                            "crypto/asn1/asn1_err.o",
1769                            "crypto/asn1/asn1_gen.o",
1770                            "crypto/asn1/asn1_item_list.o",
1771                            "crypto/asn1/asn1_lib.o",
1772                            "crypto/asn1/asn1_par.o",
1773                            "crypto/asn1/asn_mime.o",
1774                            "crypto/asn1/asn_moid.o",
1775                            "crypto/asn1/asn_mstbl.o",
1776                            "crypto/asn1/asn_pack.o",
1777                            "crypto/asn1/bio_asn1.o",
1778                            "crypto/asn1/bio_ndef.o",
1779                            "crypto/asn1/d2i_pr.o",
1780                            "crypto/asn1/d2i_pu.o",
1781                            "crypto/asn1/evp_asn1.o",
1782                            "crypto/asn1/f_int.o",
1783                            "crypto/asn1/f_string.o",
1784                            "crypto/asn1/i2d_pr.o",
1785                            "crypto/asn1/i2d_pu.o",
1786                            "crypto/asn1/n_pkey.o",
1787                            "crypto/asn1/nsseq.o",
1788                            "crypto/asn1/p5_pbe.o",
1789                            "crypto/asn1/p5_pbev2.o",
1790                            "crypto/asn1/p5_scrypt.o",
1791                            "crypto/asn1/p8_pkey.o",
1792                            "crypto/asn1/t_bitst.o",
1793                            "crypto/asn1/t_pkey.o",
1794                            "crypto/asn1/t_spki.o",
1795                            "crypto/asn1/tasn_dec.o",
1796                            "crypto/asn1/tasn_enc.o",
1797                            "crypto/asn1/tasn_fre.o",
1798                            "crypto/asn1/tasn_new.o",
1799                            "crypto/asn1/tasn_prn.o",
1800                            "crypto/asn1/tasn_scn.o",
1801                            "crypto/asn1/tasn_typ.o",
1802                            "crypto/asn1/tasn_utl.o",
1803                            "crypto/asn1/x_algor.o",
1804                            "crypto/asn1/x_bignum.o",
1805                            "crypto/asn1/x_info.o",
1806                            "crypto/asn1/x_int64.o",
1807                            "crypto/asn1/x_long.o",
1808                            "crypto/asn1/x_pkey.o",
1809                            "crypto/asn1/x_sig.o",
1810                            "crypto/asn1/x_spki.o",
1811                            "crypto/asn1/x_val.o",
1812                        ],
1813                    "products" =>
1814                        {
1815                            "lib" =>
1816                                [
1817                                    "libcrypto",
1818                                ],
1819                        },
1820                },
1821            "crypto/async" =>
1822                {
1823                    "deps" =>
1824                        [
1825                            "crypto/async/async.o",
1826                            "crypto/async/async_err.o",
1827                            "crypto/async/async_wait.o",
1828                        ],
1829                    "products" =>
1830                        {
1831                            "lib" =>
1832                                [
1833                                    "libcrypto",
1834                                ],
1835                        },
1836                },
1837            "crypto/async/arch" =>
1838                {
1839                    "deps" =>
1840                        [
1841                            "crypto/async/arch/async_null.o",
1842                            "crypto/async/arch/async_posix.o",
1843                            "crypto/async/arch/async_win.o",
1844                        ],
1845                    "products" =>
1846                        {
1847                            "lib" =>
1848                                [
1849                                    "libcrypto",
1850                                ],
1851                        },
1852                },
1853            "crypto/bf" =>
1854                {
1855                    "deps" =>
1856                        [
1857                            "crypto/bf/bf_cfb64.o",
1858                            "crypto/bf/bf_ecb.o",
1859                            "crypto/bf/bf_enc.o",
1860                            "crypto/bf/bf_ofb64.o",
1861                            "crypto/bf/bf_skey.o",
1862                        ],
1863                    "products" =>
1864                        {
1865                            "lib" =>
1866                                [
1867                                    "libcrypto",
1868                                ],
1869                        },
1870                },
1871            "crypto/bio" =>
1872                {
1873                    "deps" =>
1874                        [
1875                            "crypto/bio/b_addr.o",
1876                            "crypto/bio/b_dump.o",
1877                            "crypto/bio/b_print.o",
1878                            "crypto/bio/b_sock.o",
1879                            "crypto/bio/b_sock2.o",
1880                            "crypto/bio/bf_buff.o",
1881                            "crypto/bio/bf_lbuf.o",
1882                            "crypto/bio/bf_nbio.o",
1883                            "crypto/bio/bf_null.o",
1884                            "crypto/bio/bio_cb.o",
1885                            "crypto/bio/bio_err.o",
1886                            "crypto/bio/bio_lib.o",
1887                            "crypto/bio/bio_meth.o",
1888                            "crypto/bio/bss_acpt.o",
1889                            "crypto/bio/bss_bio.o",
1890                            "crypto/bio/bss_conn.o",
1891                            "crypto/bio/bss_dgram.o",
1892                            "crypto/bio/bss_fd.o",
1893                            "crypto/bio/bss_file.o",
1894                            "crypto/bio/bss_log.o",
1895                            "crypto/bio/bss_mem.o",
1896                            "crypto/bio/bss_null.o",
1897                            "crypto/bio/bss_sock.o",
1898                        ],
1899                    "products" =>
1900                        {
1901                            "lib" =>
1902                                [
1903                                    "libcrypto",
1904                                ],
1905                        },
1906                },
1907            "crypto/blake2" =>
1908                {
1909                    "deps" =>
1910                        [
1911                            "crypto/blake2/blake2b.o",
1912                            "crypto/blake2/blake2s.o",
1913                            "crypto/blake2/m_blake2b.o",
1914                            "crypto/blake2/m_blake2s.o",
1915                        ],
1916                    "products" =>
1917                        {
1918                            "lib" =>
1919                                [
1920                                    "libcrypto",
1921                                ],
1922                        },
1923                },
1924            "crypto/bn" =>
1925                {
1926                    "deps" =>
1927                        [
1928                            "crypto/bn/bn_add.o",
1929                            "crypto/bn/bn_blind.o",
1930                            "crypto/bn/bn_const.o",
1931                            "crypto/bn/bn_ctx.o",
1932                            "crypto/bn/bn_depr.o",
1933                            "crypto/bn/bn_dh.o",
1934                            "crypto/bn/bn_div.o",
1935                            "crypto/bn/bn_err.o",
1936                            "crypto/bn/bn_exp.o",
1937                            "crypto/bn/bn_exp2.o",
1938                            "crypto/bn/bn_gcd.o",
1939                            "crypto/bn/bn_gf2m.o",
1940                            "crypto/bn/bn_intern.o",
1941                            "crypto/bn/bn_kron.o",
1942                            "crypto/bn/bn_lib.o",
1943                            "crypto/bn/bn_mod.o",
1944                            "crypto/bn/bn_mont.o",
1945                            "crypto/bn/bn_mpi.o",
1946                            "crypto/bn/bn_mul.o",
1947                            "crypto/bn/bn_nist.o",
1948                            "crypto/bn/bn_prime.o",
1949                            "crypto/bn/bn_print.o",
1950                            "crypto/bn/bn_rand.o",
1951                            "crypto/bn/bn_recp.o",
1952                            "crypto/bn/bn_shift.o",
1953                            "crypto/bn/bn_sqr.o",
1954                            "crypto/bn/bn_sqrt.o",
1955                            "crypto/bn/bn_srp.o",
1956                            "crypto/bn/bn_word.o",
1957                            "crypto/bn/bn_x931p.o",
1958                            "crypto/bn/rsaz-avx2.o",
1959                            "crypto/bn/rsaz-x86_64.o",
1960                            "crypto/bn/rsaz_exp.o",
1961                            "crypto/bn/x86_64-gf2m.o",
1962                            "crypto/bn/x86_64-mont.o",
1963                            "crypto/bn/x86_64-mont5.o",
1964                        ],
1965                    "products" =>
1966                        {
1967                            "lib" =>
1968                                [
1969                                    "libcrypto",
1970                                ],
1971                        },
1972                },
1973            "crypto/bn/asm" =>
1974                {
1975                    "deps" =>
1976                        [
1977                            "crypto/bn/asm/x86_64-gcc.o",
1978                        ],
1979                    "products" =>
1980                        {
1981                            "lib" =>
1982                                [
1983                                    "libcrypto",
1984                                ],
1985                        },
1986                },
1987            "crypto/buffer" =>
1988                {
1989                    "deps" =>
1990                        [
1991                            "crypto/buffer/buf_err.o",
1992                            "crypto/buffer/buffer.o",
1993                        ],
1994                    "products" =>
1995                        {
1996                            "lib" =>
1997                                [
1998                                    "libcrypto",
1999                                ],
2000                        },
2001                },
2002            "crypto/camellia" =>
2003                {
2004                    "deps" =>
2005                        [
2006                            "crypto/camellia/cmll-x86_64.o",
2007                            "crypto/camellia/cmll_cfb.o",
2008                            "crypto/camellia/cmll_ctr.o",
2009                            "crypto/camellia/cmll_ecb.o",
2010                            "crypto/camellia/cmll_misc.o",
2011                            "crypto/camellia/cmll_ofb.o",
2012                        ],
2013                    "products" =>
2014                        {
2015                            "lib" =>
2016                                [
2017                                    "libcrypto",
2018                                ],
2019                        },
2020                },
2021            "crypto/cast" =>
2022                {
2023                    "deps" =>
2024                        [
2025                            "crypto/cast/c_cfb64.o",
2026                            "crypto/cast/c_ecb.o",
2027                            "crypto/cast/c_enc.o",
2028                            "crypto/cast/c_ofb64.o",
2029                            "crypto/cast/c_skey.o",
2030                        ],
2031                    "products" =>
2032                        {
2033                            "lib" =>
2034                                [
2035                                    "libcrypto",
2036                                ],
2037                        },
2038                },
2039            "crypto/chacha" =>
2040                {
2041                    "deps" =>
2042                        [
2043                            "crypto/chacha/chacha-x86_64.o",
2044                        ],
2045                    "products" =>
2046                        {
2047                            "lib" =>
2048                                [
2049                                    "libcrypto",
2050                                ],
2051                        },
2052                },
2053            "crypto/cmac" =>
2054                {
2055                    "deps" =>
2056                        [
2057                            "crypto/cmac/cm_ameth.o",
2058                            "crypto/cmac/cm_pmeth.o",
2059                            "crypto/cmac/cmac.o",
2060                        ],
2061                    "products" =>
2062                        {
2063                            "lib" =>
2064                                [
2065                                    "libcrypto",
2066                                ],
2067                        },
2068                },
2069            "crypto/cms" =>
2070                {
2071                    "deps" =>
2072                        [
2073                            "crypto/cms/cms_asn1.o",
2074                            "crypto/cms/cms_att.o",
2075                            "crypto/cms/cms_cd.o",
2076                            "crypto/cms/cms_dd.o",
2077                            "crypto/cms/cms_enc.o",
2078                            "crypto/cms/cms_env.o",
2079                            "crypto/cms/cms_err.o",
2080                            "crypto/cms/cms_ess.o",
2081                            "crypto/cms/cms_io.o",
2082                            "crypto/cms/cms_kari.o",
2083                            "crypto/cms/cms_lib.o",
2084                            "crypto/cms/cms_pwri.o",
2085                            "crypto/cms/cms_sd.o",
2086                            "crypto/cms/cms_smime.o",
2087                        ],
2088                    "products" =>
2089                        {
2090                            "lib" =>
2091                                [
2092                                    "libcrypto",
2093                                ],
2094                        },
2095                },
2096            "crypto/conf" =>
2097                {
2098                    "deps" =>
2099                        [
2100                            "crypto/conf/conf_api.o",
2101                            "crypto/conf/conf_def.o",
2102                            "crypto/conf/conf_err.o",
2103                            "crypto/conf/conf_lib.o",
2104                            "crypto/conf/conf_mall.o",
2105                            "crypto/conf/conf_mod.o",
2106                            "crypto/conf/conf_sap.o",
2107                            "crypto/conf/conf_ssl.o",
2108                        ],
2109                    "products" =>
2110                        {
2111                            "lib" =>
2112                                [
2113                                    "libcrypto",
2114                                ],
2115                        },
2116                },
2117            "crypto/ct" =>
2118                {
2119                    "deps" =>
2120                        [
2121                            "crypto/ct/ct_b64.o",
2122                            "crypto/ct/ct_err.o",
2123                            "crypto/ct/ct_log.o",
2124                            "crypto/ct/ct_oct.o",
2125                            "crypto/ct/ct_policy.o",
2126                            "crypto/ct/ct_prn.o",
2127                            "crypto/ct/ct_sct.o",
2128                            "crypto/ct/ct_sct_ctx.o",
2129                            "crypto/ct/ct_vfy.o",
2130                            "crypto/ct/ct_x509v3.o",
2131                        ],
2132                    "products" =>
2133                        {
2134                            "lib" =>
2135                                [
2136                                    "libcrypto",
2137                                ],
2138                        },
2139                },
2140            "crypto/des" =>
2141                {
2142                    "deps" =>
2143                        [
2144                            "crypto/des/cbc_cksm.o",
2145                            "crypto/des/cbc_enc.o",
2146                            "crypto/des/cfb64ede.o",
2147                            "crypto/des/cfb64enc.o",
2148                            "crypto/des/cfb_enc.o",
2149                            "crypto/des/des_enc.o",
2150                            "crypto/des/ecb3_enc.o",
2151                            "crypto/des/ecb_enc.o",
2152                            "crypto/des/fcrypt.o",
2153                            "crypto/des/fcrypt_b.o",
2154                            "crypto/des/ofb64ede.o",
2155                            "crypto/des/ofb64enc.o",
2156                            "crypto/des/ofb_enc.o",
2157                            "crypto/des/pcbc_enc.o",
2158                            "crypto/des/qud_cksm.o",
2159                            "crypto/des/rand_key.o",
2160                            "crypto/des/set_key.o",
2161                            "crypto/des/str2key.o",
2162                            "crypto/des/xcbc_enc.o",
2163                        ],
2164                    "products" =>
2165                        {
2166                            "lib" =>
2167                                [
2168                                    "libcrypto",
2169                                ],
2170                        },
2171                },
2172            "crypto/dh" =>
2173                {
2174                    "deps" =>
2175                        [
2176                            "crypto/dh/dh_ameth.o",
2177                            "crypto/dh/dh_asn1.o",
2178                            "crypto/dh/dh_check.o",
2179                            "crypto/dh/dh_depr.o",
2180                            "crypto/dh/dh_err.o",
2181                            "crypto/dh/dh_gen.o",
2182                            "crypto/dh/dh_kdf.o",
2183                            "crypto/dh/dh_key.o",
2184                            "crypto/dh/dh_lib.o",
2185                            "crypto/dh/dh_meth.o",
2186                            "crypto/dh/dh_pmeth.o",
2187                            "crypto/dh/dh_prn.o",
2188                            "crypto/dh/dh_rfc5114.o",
2189                            "crypto/dh/dh_rfc7919.o",
2190                        ],
2191                    "products" =>
2192                        {
2193                            "lib" =>
2194                                [
2195                                    "libcrypto",
2196                                ],
2197                        },
2198                },
2199            "crypto/dsa" =>
2200                {
2201                    "deps" =>
2202                        [
2203                            "crypto/dsa/dsa_ameth.o",
2204                            "crypto/dsa/dsa_asn1.o",
2205                            "crypto/dsa/dsa_depr.o",
2206                            "crypto/dsa/dsa_err.o",
2207                            "crypto/dsa/dsa_gen.o",
2208                            "crypto/dsa/dsa_key.o",
2209                            "crypto/dsa/dsa_lib.o",
2210                            "crypto/dsa/dsa_meth.o",
2211                            "crypto/dsa/dsa_ossl.o",
2212                            "crypto/dsa/dsa_pmeth.o",
2213                            "crypto/dsa/dsa_prn.o",
2214                            "crypto/dsa/dsa_sign.o",
2215                            "crypto/dsa/dsa_vrf.o",
2216                        ],
2217                    "products" =>
2218                        {
2219                            "lib" =>
2220                                [
2221                                    "libcrypto",
2222                                ],
2223                        },
2224                },
2225            "crypto/dso" =>
2226                {
2227                    "deps" =>
2228                        [
2229                            "crypto/dso/dso_dl.o",
2230                            "crypto/dso/dso_dlfcn.o",
2231                            "crypto/dso/dso_err.o",
2232                            "crypto/dso/dso_lib.o",
2233                            "crypto/dso/dso_openssl.o",
2234                            "crypto/dso/dso_vms.o",
2235                            "crypto/dso/dso_win32.o",
2236                        ],
2237                    "products" =>
2238                        {
2239                            "lib" =>
2240                                [
2241                                    "libcrypto",
2242                                ],
2243                        },
2244                },
2245            "crypto/ec" =>
2246                {
2247                    "deps" =>
2248                        [
2249                            "crypto/ec/curve25519.o",
2250                            "crypto/ec/ec2_oct.o",
2251                            "crypto/ec/ec2_smpl.o",
2252                            "crypto/ec/ec_ameth.o",
2253                            "crypto/ec/ec_asn1.o",
2254                            "crypto/ec/ec_check.o",
2255                            "crypto/ec/ec_curve.o",
2256                            "crypto/ec/ec_cvt.o",
2257                            "crypto/ec/ec_err.o",
2258                            "crypto/ec/ec_key.o",
2259                            "crypto/ec/ec_kmeth.o",
2260                            "crypto/ec/ec_lib.o",
2261                            "crypto/ec/ec_mult.o",
2262                            "crypto/ec/ec_oct.o",
2263                            "crypto/ec/ec_pmeth.o",
2264                            "crypto/ec/ec_print.o",
2265                            "crypto/ec/ecdh_kdf.o",
2266                            "crypto/ec/ecdh_ossl.o",
2267                            "crypto/ec/ecdsa_ossl.o",
2268                            "crypto/ec/ecdsa_sign.o",
2269                            "crypto/ec/ecdsa_vrf.o",
2270                            "crypto/ec/eck_prn.o",
2271                            "crypto/ec/ecp_mont.o",
2272                            "crypto/ec/ecp_nist.o",
2273                            "crypto/ec/ecp_nistp224.o",
2274                            "crypto/ec/ecp_nistp256.o",
2275                            "crypto/ec/ecp_nistp521.o",
2276                            "crypto/ec/ecp_nistputil.o",
2277                            "crypto/ec/ecp_nistz256-x86_64.o",
2278                            "crypto/ec/ecp_nistz256.o",
2279                            "crypto/ec/ecp_oct.o",
2280                            "crypto/ec/ecp_smpl.o",
2281                            "crypto/ec/ecx_meth.o",
2282                            "crypto/ec/x25519-x86_64.o",
2283                        ],
2284                    "products" =>
2285                        {
2286                            "lib" =>
2287                                [
2288                                    "libcrypto",
2289                                ],
2290                        },
2291                },
2292            "crypto/ec/curve448" =>
2293                {
2294                    "deps" =>
2295                        [
2296                            "crypto/ec/curve448/curve448.o",
2297                            "crypto/ec/curve448/curve448_tables.o",
2298                            "crypto/ec/curve448/eddsa.o",
2299                            "crypto/ec/curve448/f_generic.o",
2300                            "crypto/ec/curve448/scalar.o",
2301                        ],
2302                    "products" =>
2303                        {
2304                            "lib" =>
2305                                [
2306                                    "libcrypto",
2307                                ],
2308                        },
2309                },
2310            "crypto/ec/curve448/arch_32" =>
2311                {
2312                    "deps" =>
2313                        [
2314                            "crypto/ec/curve448/arch_32/f_impl.o",
2315                        ],
2316                    "products" =>
2317                        {
2318                            "lib" =>
2319                                [
2320                                    "libcrypto",
2321                                ],
2322                        },
2323                },
2324            "crypto/engine" =>
2325                {
2326                    "deps" =>
2327                        [
2328                            "crypto/engine/eng_all.o",
2329                            "crypto/engine/eng_cnf.o",
2330                            "crypto/engine/eng_ctrl.o",
2331                            "crypto/engine/eng_devcrypto.o",
2332                            "crypto/engine/eng_dyn.o",
2333                            "crypto/engine/eng_err.o",
2334                            "crypto/engine/eng_fat.o",
2335                            "crypto/engine/eng_init.o",
2336                            "crypto/engine/eng_lib.o",
2337                            "crypto/engine/eng_list.o",
2338                            "crypto/engine/eng_openssl.o",
2339                            "crypto/engine/eng_pkey.o",
2340                            "crypto/engine/eng_rdrand.o",
2341                            "crypto/engine/eng_table.o",
2342                            "crypto/engine/tb_asnmth.o",
2343                            "crypto/engine/tb_cipher.o",
2344                            "crypto/engine/tb_dh.o",
2345                            "crypto/engine/tb_digest.o",
2346                            "crypto/engine/tb_dsa.o",
2347                            "crypto/engine/tb_eckey.o",
2348                            "crypto/engine/tb_pkmeth.o",
2349                            "crypto/engine/tb_rand.o",
2350                            "crypto/engine/tb_rsa.o",
2351                        ],
2352                    "products" =>
2353                        {
2354                            "lib" =>
2355                                [
2356                                    "libcrypto",
2357                                ],
2358                        },
2359                },
2360            "crypto/err" =>
2361                {
2362                    "deps" =>
2363                        [
2364                            "crypto/err/err.o",
2365                            "crypto/err/err_all.o",
2366                            "crypto/err/err_prn.o",
2367                        ],
2368                    "products" =>
2369                        {
2370                            "lib" =>
2371                                [
2372                                    "libcrypto",
2373                                ],
2374                        },
2375                },
2376            "crypto/evp" =>
2377                {
2378                    "deps" =>
2379                        [
2380                            "crypto/evp/bio_b64.o",
2381                            "crypto/evp/bio_enc.o",
2382                            "crypto/evp/bio_md.o",
2383                            "crypto/evp/bio_ok.o",
2384                            "crypto/evp/c_allc.o",
2385                            "crypto/evp/c_alld.o",
2386                            "crypto/evp/cmeth_lib.o",
2387                            "crypto/evp/digest.o",
2388                            "crypto/evp/e_aes.o",
2389                            "crypto/evp/e_aes_cbc_hmac_sha1.o",
2390                            "crypto/evp/e_aes_cbc_hmac_sha256.o",
2391                            "crypto/evp/e_aria.o",
2392                            "crypto/evp/e_bf.o",
2393                            "crypto/evp/e_camellia.o",
2394                            "crypto/evp/e_cast.o",
2395                            "crypto/evp/e_chacha20_poly1305.o",
2396                            "crypto/evp/e_des.o",
2397                            "crypto/evp/e_des3.o",
2398                            "crypto/evp/e_idea.o",
2399                            "crypto/evp/e_null.o",
2400                            "crypto/evp/e_old.o",
2401                            "crypto/evp/e_rc2.o",
2402                            "crypto/evp/e_rc4.o",
2403                            "crypto/evp/e_rc4_hmac_md5.o",
2404                            "crypto/evp/e_rc5.o",
2405                            "crypto/evp/e_seed.o",
2406                            "crypto/evp/e_sm4.o",
2407                            "crypto/evp/e_xcbc_d.o",
2408                            "crypto/evp/encode.o",
2409                            "crypto/evp/evp_cnf.o",
2410                            "crypto/evp/evp_enc.o",
2411                            "crypto/evp/evp_err.o",
2412                            "crypto/evp/evp_key.o",
2413                            "crypto/evp/evp_lib.o",
2414                            "crypto/evp/evp_pbe.o",
2415                            "crypto/evp/evp_pkey.o",
2416                            "crypto/evp/m_md2.o",
2417                            "crypto/evp/m_md4.o",
2418                            "crypto/evp/m_md5.o",
2419                            "crypto/evp/m_md5_sha1.o",
2420                            "crypto/evp/m_mdc2.o",
2421                            "crypto/evp/m_null.o",
2422                            "crypto/evp/m_ripemd.o",
2423                            "crypto/evp/m_sha1.o",
2424                            "crypto/evp/m_sha3.o",
2425                            "crypto/evp/m_sigver.o",
2426                            "crypto/evp/m_wp.o",
2427                            "crypto/evp/names.o",
2428                            "crypto/evp/p5_crpt.o",
2429                            "crypto/evp/p5_crpt2.o",
2430                            "crypto/evp/p_dec.o",
2431                            "crypto/evp/p_enc.o",
2432                            "crypto/evp/p_lib.o",
2433                            "crypto/evp/p_open.o",
2434                            "crypto/evp/p_seal.o",
2435                            "crypto/evp/p_sign.o",
2436                            "crypto/evp/p_verify.o",
2437                            "crypto/evp/pbe_scrypt.o",
2438                            "crypto/evp/pmeth_fn.o",
2439                            "crypto/evp/pmeth_gn.o",
2440                            "crypto/evp/pmeth_lib.o",
2441                        ],
2442                    "products" =>
2443                        {
2444                            "lib" =>
2445                                [
2446                                    "libcrypto",
2447                                ],
2448                        },
2449                },
2450            "crypto/hmac" =>
2451                {
2452                    "deps" =>
2453                        [
2454                            "crypto/hmac/hm_ameth.o",
2455                            "crypto/hmac/hm_pmeth.o",
2456                            "crypto/hmac/hmac.o",
2457                        ],
2458                    "products" =>
2459                        {
2460                            "lib" =>
2461                                [
2462                                    "libcrypto",
2463                                ],
2464                        },
2465                },
2466            "crypto/idea" =>
2467                {
2468                    "deps" =>
2469                        [
2470                            "crypto/idea/i_cbc.o",
2471                            "crypto/idea/i_cfb64.o",
2472                            "crypto/idea/i_ecb.o",
2473                            "crypto/idea/i_ofb64.o",
2474                            "crypto/idea/i_skey.o",
2475                        ],
2476                    "products" =>
2477                        {
2478                            "lib" =>
2479                                [
2480                                    "libcrypto",
2481                                ],
2482                        },
2483                },
2484            "crypto/kdf" =>
2485                {
2486                    "deps" =>
2487                        [
2488                            "crypto/kdf/hkdf.o",
2489                            "crypto/kdf/kdf_err.o",
2490                            "crypto/kdf/scrypt.o",
2491                            "crypto/kdf/tls1_prf.o",
2492                        ],
2493                    "products" =>
2494                        {
2495                            "lib" =>
2496                                [
2497                                    "libcrypto",
2498                                ],
2499                        },
2500                },
2501            "crypto/lhash" =>
2502                {
2503                    "deps" =>
2504                        [
2505                            "crypto/lhash/lh_stats.o",
2506                            "crypto/lhash/lhash.o",
2507                        ],
2508                    "products" =>
2509                        {
2510                            "lib" =>
2511                                [
2512                                    "libcrypto",
2513                                ],
2514                        },
2515                },
2516            "crypto/md4" =>
2517                {
2518                    "deps" =>
2519                        [
2520                            "crypto/md4/md4_dgst.o",
2521                            "crypto/md4/md4_one.o",
2522                        ],
2523                    "products" =>
2524                        {
2525                            "lib" =>
2526                                [
2527                                    "libcrypto",
2528                                ],
2529                        },
2530                },
2531            "crypto/md5" =>
2532                {
2533                    "deps" =>
2534                        [
2535                            "crypto/md5/md5-x86_64.o",
2536                            "crypto/md5/md5_dgst.o",
2537                            "crypto/md5/md5_one.o",
2538                        ],
2539                    "products" =>
2540                        {
2541                            "lib" =>
2542                                [
2543                                    "libcrypto",
2544                                ],
2545                        },
2546                },
2547            "crypto/mdc2" =>
2548                {
2549                    "deps" =>
2550                        [
2551                            "crypto/mdc2/mdc2_one.o",
2552                            "crypto/mdc2/mdc2dgst.o",
2553                        ],
2554                    "products" =>
2555                        {
2556                            "lib" =>
2557                                [
2558                                    "libcrypto",
2559                                ],
2560                        },
2561                },
2562            "crypto/modes" =>
2563                {
2564                    "deps" =>
2565                        [
2566                            "crypto/modes/aesni-gcm-x86_64.o",
2567                            "crypto/modes/cbc128.o",
2568                            "crypto/modes/ccm128.o",
2569                            "crypto/modes/cfb128.o",
2570                            "crypto/modes/ctr128.o",
2571                            "crypto/modes/cts128.o",
2572                            "crypto/modes/gcm128.o",
2573                            "crypto/modes/ghash-x86_64.o",
2574                            "crypto/modes/ocb128.o",
2575                            "crypto/modes/ofb128.o",
2576                            "crypto/modes/wrap128.o",
2577                            "crypto/modes/xts128.o",
2578                        ],
2579                    "products" =>
2580                        {
2581                            "lib" =>
2582                                [
2583                                    "libcrypto",
2584                                ],
2585                        },
2586                },
2587            "crypto/objects" =>
2588                {
2589                    "deps" =>
2590                        [
2591                            "crypto/objects/o_names.o",
2592                            "crypto/objects/obj_dat.o",
2593                            "crypto/objects/obj_err.o",
2594                            "crypto/objects/obj_lib.o",
2595                            "crypto/objects/obj_xref.o",
2596                        ],
2597                    "products" =>
2598                        {
2599                            "lib" =>
2600                                [
2601                                    "libcrypto",
2602                                ],
2603                        },
2604                },
2605            "crypto/ocsp" =>
2606                {
2607                    "deps" =>
2608                        [
2609                            "crypto/ocsp/ocsp_asn.o",
2610                            "crypto/ocsp/ocsp_cl.o",
2611                            "crypto/ocsp/ocsp_err.o",
2612                            "crypto/ocsp/ocsp_ext.o",
2613                            "crypto/ocsp/ocsp_ht.o",
2614                            "crypto/ocsp/ocsp_lib.o",
2615                            "crypto/ocsp/ocsp_prn.o",
2616                            "crypto/ocsp/ocsp_srv.o",
2617                            "crypto/ocsp/ocsp_vfy.o",
2618                            "crypto/ocsp/v3_ocsp.o",
2619                        ],
2620                    "products" =>
2621                        {
2622                            "lib" =>
2623                                [
2624                                    "libcrypto",
2625                                ],
2626                        },
2627                },
2628            "crypto/pem" =>
2629                {
2630                    "deps" =>
2631                        [
2632                            "crypto/pem/pem_all.o",
2633                            "crypto/pem/pem_err.o",
2634                            "crypto/pem/pem_info.o",
2635                            "crypto/pem/pem_lib.o",
2636                            "crypto/pem/pem_oth.o",
2637                            "crypto/pem/pem_pk8.o",
2638                            "crypto/pem/pem_pkey.o",
2639                            "crypto/pem/pem_sign.o",
2640                            "crypto/pem/pem_x509.o",
2641                            "crypto/pem/pem_xaux.o",
2642                            "crypto/pem/pvkfmt.o",
2643                        ],
2644                    "products" =>
2645                        {
2646                            "lib" =>
2647                                [
2648                                    "libcrypto",
2649                                ],
2650                        },
2651                },
2652            "crypto/pkcs12" =>
2653                {
2654                    "deps" =>
2655                        [
2656                            "crypto/pkcs12/p12_add.o",
2657                            "crypto/pkcs12/p12_asn.o",
2658                            "crypto/pkcs12/p12_attr.o",
2659                            "crypto/pkcs12/p12_crpt.o",
2660                            "crypto/pkcs12/p12_crt.o",
2661                            "crypto/pkcs12/p12_decr.o",
2662                            "crypto/pkcs12/p12_init.o",
2663                            "crypto/pkcs12/p12_key.o",
2664                            "crypto/pkcs12/p12_kiss.o",
2665                            "crypto/pkcs12/p12_mutl.o",
2666                            "crypto/pkcs12/p12_npas.o",
2667                            "crypto/pkcs12/p12_p8d.o",
2668                            "crypto/pkcs12/p12_p8e.o",
2669                            "crypto/pkcs12/p12_sbag.o",
2670                            "crypto/pkcs12/p12_utl.o",
2671                            "crypto/pkcs12/pk12err.o",
2672                        ],
2673                    "products" =>
2674                        {
2675                            "lib" =>
2676                                [
2677                                    "libcrypto",
2678                                ],
2679                        },
2680                },
2681            "crypto/pkcs7" =>
2682                {
2683                    "deps" =>
2684                        [
2685                            "crypto/pkcs7/bio_pk7.o",
2686                            "crypto/pkcs7/pk7_asn1.o",
2687                            "crypto/pkcs7/pk7_attr.o",
2688                            "crypto/pkcs7/pk7_doit.o",
2689                            "crypto/pkcs7/pk7_lib.o",
2690                            "crypto/pkcs7/pk7_mime.o",
2691                            "crypto/pkcs7/pk7_smime.o",
2692                            "crypto/pkcs7/pkcs7err.o",
2693                        ],
2694                    "products" =>
2695                        {
2696                            "lib" =>
2697                                [
2698                                    "libcrypto",
2699                                ],
2700                        },
2701                },
2702            "crypto/poly1305" =>
2703                {
2704                    "deps" =>
2705                        [
2706                            "crypto/poly1305/poly1305-x86_64.o",
2707                            "crypto/poly1305/poly1305.o",
2708                            "crypto/poly1305/poly1305_ameth.o",
2709                            "crypto/poly1305/poly1305_pmeth.o",
2710                        ],
2711                    "products" =>
2712                        {
2713                            "lib" =>
2714                                [
2715                                    "libcrypto",
2716                                ],
2717                        },
2718                },
2719            "crypto/rand" =>
2720                {
2721                    "deps" =>
2722                        [
2723                            "crypto/rand/drbg_ctr.o",
2724                            "crypto/rand/drbg_lib.o",
2725                            "crypto/rand/rand_egd.o",
2726                            "crypto/rand/rand_err.o",
2727                            "crypto/rand/rand_lib.o",
2728                            "crypto/rand/rand_unix.o",
2729                            "crypto/rand/rand_vms.o",
2730                            "crypto/rand/rand_win.o",
2731                            "crypto/rand/randfile.o",
2732                        ],
2733                    "products" =>
2734                        {
2735                            "lib" =>
2736                                [
2737                                    "libcrypto",
2738                                ],
2739                        },
2740                },
2741            "crypto/rc2" =>
2742                {
2743                    "deps" =>
2744                        [
2745                            "crypto/rc2/rc2_cbc.o",
2746                            "crypto/rc2/rc2_ecb.o",
2747                            "crypto/rc2/rc2_skey.o",
2748                            "crypto/rc2/rc2cfb64.o",
2749                            "crypto/rc2/rc2ofb64.o",
2750                        ],
2751                    "products" =>
2752                        {
2753                            "lib" =>
2754                                [
2755                                    "libcrypto",
2756                                ],
2757                        },
2758                },
2759            "crypto/rc4" =>
2760                {
2761                    "deps" =>
2762                        [
2763                            "crypto/rc4/rc4-md5-x86_64.o",
2764                            "crypto/rc4/rc4-x86_64.o",
2765                        ],
2766                    "products" =>
2767                        {
2768                            "lib" =>
2769                                [
2770                                    "libcrypto",
2771                                ],
2772                        },
2773                },
2774            "crypto/ripemd" =>
2775                {
2776                    "deps" =>
2777                        [
2778                            "crypto/ripemd/rmd_dgst.o",
2779                            "crypto/ripemd/rmd_one.o",
2780                        ],
2781                    "products" =>
2782                        {
2783                            "lib" =>
2784                                [
2785                                    "libcrypto",
2786                                ],
2787                        },
2788                },
2789            "crypto/rsa" =>
2790                {
2791                    "deps" =>
2792                        [
2793                            "crypto/rsa/rsa_ameth.o",
2794                            "crypto/rsa/rsa_asn1.o",
2795                            "crypto/rsa/rsa_chk.o",
2796                            "crypto/rsa/rsa_crpt.o",
2797                            "crypto/rsa/rsa_depr.o",
2798                            "crypto/rsa/rsa_err.o",
2799                            "crypto/rsa/rsa_gen.o",
2800                            "crypto/rsa/rsa_lib.o",
2801                            "crypto/rsa/rsa_meth.o",
2802                            "crypto/rsa/rsa_mp.o",
2803                            "crypto/rsa/rsa_none.o",
2804                            "crypto/rsa/rsa_oaep.o",
2805                            "crypto/rsa/rsa_ossl.o",
2806                            "crypto/rsa/rsa_pk1.o",
2807                            "crypto/rsa/rsa_pmeth.o",
2808                            "crypto/rsa/rsa_prn.o",
2809                            "crypto/rsa/rsa_pss.o",
2810                            "crypto/rsa/rsa_saos.o",
2811                            "crypto/rsa/rsa_sign.o",
2812                            "crypto/rsa/rsa_ssl.o",
2813                            "crypto/rsa/rsa_x931.o",
2814                            "crypto/rsa/rsa_x931g.o",
2815                        ],
2816                    "products" =>
2817                        {
2818                            "lib" =>
2819                                [
2820                                    "libcrypto",
2821                                ],
2822                        },
2823                },
2824            "crypto/seed" =>
2825                {
2826                    "deps" =>
2827                        [
2828                            "crypto/seed/seed.o",
2829                            "crypto/seed/seed_cbc.o",
2830                            "crypto/seed/seed_cfb.o",
2831                            "crypto/seed/seed_ecb.o",
2832                            "crypto/seed/seed_ofb.o",
2833                        ],
2834                    "products" =>
2835                        {
2836                            "lib" =>
2837                                [
2838                                    "libcrypto",
2839                                ],
2840                        },
2841                },
2842            "crypto/sha" =>
2843                {
2844                    "deps" =>
2845                        [
2846                            "crypto/sha/keccak1600-x86_64.o",
2847                            "crypto/sha/sha1-mb-x86_64.o",
2848                            "crypto/sha/sha1-x86_64.o",
2849                            "crypto/sha/sha1_one.o",
2850                            "crypto/sha/sha1dgst.o",
2851                            "crypto/sha/sha256-mb-x86_64.o",
2852                            "crypto/sha/sha256-x86_64.o",
2853                            "crypto/sha/sha256.o",
2854                            "crypto/sha/sha512-x86_64.o",
2855                            "crypto/sha/sha512.o",
2856                        ],
2857                    "products" =>
2858                        {
2859                            "lib" =>
2860                                [
2861                                    "libcrypto",
2862                                ],
2863                        },
2864                },
2865            "crypto/siphash" =>
2866                {
2867                    "deps" =>
2868                        [
2869                            "crypto/siphash/siphash.o",
2870                            "crypto/siphash/siphash_ameth.o",
2871                            "crypto/siphash/siphash_pmeth.o",
2872                        ],
2873                    "products" =>
2874                        {
2875                            "lib" =>
2876                                [
2877                                    "libcrypto",
2878                                ],
2879                        },
2880                },
2881            "crypto/sm2" =>
2882                {
2883                    "deps" =>
2884                        [
2885                            "crypto/sm2/sm2_crypt.o",
2886                            "crypto/sm2/sm2_err.o",
2887                            "crypto/sm2/sm2_pmeth.o",
2888                            "crypto/sm2/sm2_sign.o",
2889                        ],
2890                    "products" =>
2891                        {
2892                            "lib" =>
2893                                [
2894                                    "libcrypto",
2895                                ],
2896                        },
2897                },
2898            "crypto/sm3" =>
2899                {
2900                    "deps" =>
2901                        [
2902                            "crypto/sm3/m_sm3.o",
2903                            "crypto/sm3/sm3.o",
2904                        ],
2905                    "products" =>
2906                        {
2907                            "lib" =>
2908                                [
2909                                    "libcrypto",
2910                                ],
2911                        },
2912                },
2913            "crypto/sm4" =>
2914                {
2915                    "deps" =>
2916                        [
2917                            "crypto/sm4/sm4.o",
2918                        ],
2919                    "products" =>
2920                        {
2921                            "lib" =>
2922                                [
2923                                    "libcrypto",
2924                                ],
2925                        },
2926                },
2927            "crypto/srp" =>
2928                {
2929                    "deps" =>
2930                        [
2931                            "crypto/srp/srp_lib.o",
2932                            "crypto/srp/srp_vfy.o",
2933                        ],
2934                    "products" =>
2935                        {
2936                            "lib" =>
2937                                [
2938                                    "libcrypto",
2939                                ],
2940                        },
2941                },
2942            "crypto/stack" =>
2943                {
2944                    "deps" =>
2945                        [
2946                            "crypto/stack/stack.o",
2947                        ],
2948                    "products" =>
2949                        {
2950                            "lib" =>
2951                                [
2952                                    "libcrypto",
2953                                ],
2954                        },
2955                },
2956            "crypto/store" =>
2957                {
2958                    "deps" =>
2959                        [
2960                            "crypto/store/loader_file.o",
2961                            "crypto/store/store_err.o",
2962                            "crypto/store/store_init.o",
2963                            "crypto/store/store_lib.o",
2964                            "crypto/store/store_register.o",
2965                            "crypto/store/store_strings.o",
2966                        ],
2967                    "products" =>
2968                        {
2969                            "lib" =>
2970                                [
2971                                    "libcrypto",
2972                                ],
2973                        },
2974                },
2975            "crypto/ts" =>
2976                {
2977                    "deps" =>
2978                        [
2979                            "crypto/ts/ts_asn1.o",
2980                            "crypto/ts/ts_conf.o",
2981                            "crypto/ts/ts_err.o",
2982                            "crypto/ts/ts_lib.o",
2983                            "crypto/ts/ts_req_print.o",
2984                            "crypto/ts/ts_req_utils.o",
2985                            "crypto/ts/ts_rsp_print.o",
2986                            "crypto/ts/ts_rsp_sign.o",
2987                            "crypto/ts/ts_rsp_utils.o",
2988                            "crypto/ts/ts_rsp_verify.o",
2989                            "crypto/ts/ts_verify_ctx.o",
2990                        ],
2991                    "products" =>
2992                        {
2993                            "lib" =>
2994                                [
2995                                    "libcrypto",
2996                                ],
2997                        },
2998                },
2999            "crypto/txt_db" =>
3000                {
3001                    "deps" =>
3002                        [
3003                            "crypto/txt_db/txt_db.o",
3004                        ],
3005                    "products" =>
3006                        {
3007                            "lib" =>
3008                                [
3009                                    "libcrypto",
3010                                ],
3011                        },
3012                },
3013            "crypto/ui" =>
3014                {
3015                    "deps" =>
3016                        [
3017                            "crypto/ui/ui_err.o",
3018                            "crypto/ui/ui_lib.o",
3019                            "crypto/ui/ui_null.o",
3020                            "crypto/ui/ui_openssl.o",
3021                            "crypto/ui/ui_util.o",
3022                        ],
3023                    "products" =>
3024                        {
3025                            "lib" =>
3026                                [
3027                                    "libcrypto",
3028                                ],
3029                        },
3030                },
3031            "crypto/whrlpool" =>
3032                {
3033                    "deps" =>
3034                        [
3035                            "crypto/whrlpool/wp-x86_64.o",
3036                            "crypto/whrlpool/wp_dgst.o",
3037                        ],
3038                    "products" =>
3039                        {
3040                            "lib" =>
3041                                [
3042                                    "libcrypto",
3043                                ],
3044                        },
3045                },
3046            "crypto/x509" =>
3047                {
3048                    "deps" =>
3049                        [
3050                            "crypto/x509/by_dir.o",
3051                            "crypto/x509/by_file.o",
3052                            "crypto/x509/t_crl.o",
3053                            "crypto/x509/t_req.o",
3054                            "crypto/x509/t_x509.o",
3055                            "crypto/x509/x509_att.o",
3056                            "crypto/x509/x509_cmp.o",
3057                            "crypto/x509/x509_d2.o",
3058                            "crypto/x509/x509_def.o",
3059                            "crypto/x509/x509_err.o",
3060                            "crypto/x509/x509_ext.o",
3061                            "crypto/x509/x509_lu.o",
3062                            "crypto/x509/x509_meth.o",
3063                            "crypto/x509/x509_obj.o",
3064                            "crypto/x509/x509_r2x.o",
3065                            "crypto/x509/x509_req.o",
3066                            "crypto/x509/x509_set.o",
3067                            "crypto/x509/x509_trs.o",
3068                            "crypto/x509/x509_txt.o",
3069                            "crypto/x509/x509_v3.o",
3070                            "crypto/x509/x509_vfy.o",
3071                            "crypto/x509/x509_vpm.o",
3072                            "crypto/x509/x509cset.o",
3073                            "crypto/x509/x509name.o",
3074                            "crypto/x509/x509rset.o",
3075                            "crypto/x509/x509spki.o",
3076                            "crypto/x509/x509type.o",
3077                            "crypto/x509/x_all.o",
3078                            "crypto/x509/x_attrib.o",
3079                            "crypto/x509/x_crl.o",
3080                            "crypto/x509/x_exten.o",
3081                            "crypto/x509/x_name.o",
3082                            "crypto/x509/x_pubkey.o",
3083                            "crypto/x509/x_req.o",
3084                            "crypto/x509/x_x509.o",
3085                            "crypto/x509/x_x509a.o",
3086                        ],
3087                    "products" =>
3088                        {
3089                            "lib" =>
3090                                [
3091                                    "libcrypto",
3092                                ],
3093                        },
3094                },
3095            "crypto/x509v3" =>
3096                {
3097                    "deps" =>
3098                        [
3099                            "crypto/x509v3/pcy_cache.o",
3100                            "crypto/x509v3/pcy_data.o",
3101                            "crypto/x509v3/pcy_lib.o",
3102                            "crypto/x509v3/pcy_map.o",
3103                            "crypto/x509v3/pcy_node.o",
3104                            "crypto/x509v3/pcy_tree.o",
3105                            "crypto/x509v3/v3_addr.o",
3106                            "crypto/x509v3/v3_admis.o",
3107                            "crypto/x509v3/v3_akey.o",
3108                            "crypto/x509v3/v3_akeya.o",
3109                            "crypto/x509v3/v3_alt.o",
3110                            "crypto/x509v3/v3_asid.o",
3111                            "crypto/x509v3/v3_bcons.o",
3112                            "crypto/x509v3/v3_bitst.o",
3113                            "crypto/x509v3/v3_conf.o",
3114                            "crypto/x509v3/v3_cpols.o",
3115                            "crypto/x509v3/v3_crld.o",
3116                            "crypto/x509v3/v3_enum.o",
3117                            "crypto/x509v3/v3_extku.o",
3118                            "crypto/x509v3/v3_genn.o",
3119                            "crypto/x509v3/v3_ia5.o",
3120                            "crypto/x509v3/v3_info.o",
3121                            "crypto/x509v3/v3_int.o",
3122                            "crypto/x509v3/v3_lib.o",
3123                            "crypto/x509v3/v3_ncons.o",
3124                            "crypto/x509v3/v3_pci.o",
3125                            "crypto/x509v3/v3_pcia.o",
3126                            "crypto/x509v3/v3_pcons.o",
3127                            "crypto/x509v3/v3_pku.o",
3128                            "crypto/x509v3/v3_pmaps.o",
3129                            "crypto/x509v3/v3_prn.o",
3130                            "crypto/x509v3/v3_purp.o",
3131                            "crypto/x509v3/v3_skey.o",
3132                            "crypto/x509v3/v3_sxnet.o",
3133                            "crypto/x509v3/v3_tlsf.o",
3134                            "crypto/x509v3/v3_utl.o",
3135                            "crypto/x509v3/v3err.o",
3136                        ],
3137                    "products" =>
3138                        {
3139                            "lib" =>
3140                                [
3141                                    "libcrypto",
3142                                ],
3143                        },
3144                },
3145            "engines" =>
3146                {
3147                    "deps" =>
3148                        [
3149                            "engines/e_capi.o",
3150                            "engines/e_padlock-x86_64.o",
3151                            "engines/e_padlock.o",
3152                        ],
3153                    "products" =>
3154                        {
3155                            "lib" =>
3156                                [
3157                                    "libcrypto",
3158                                ],
3159                        },
3160                },
3161            "fuzz" =>
3162                {
3163                    "products" =>
3164                        {
3165                            "bin" =>
3166                                [
3167                                    "fuzz/asn1-test",
3168                                    "fuzz/asn1parse-test",
3169                                    "fuzz/bignum-test",
3170                                    "fuzz/bndiv-test",
3171                                    "fuzz/client-test",
3172                                    "fuzz/cms-test",
3173                                    "fuzz/conf-test",
3174                                    "fuzz/crl-test",
3175                                    "fuzz/ct-test",
3176                                    "fuzz/server-test",
3177                                    "fuzz/x509-test",
3178                                ],
3179                        },
3180                },
3181            "ssl" =>
3182                {
3183                    "deps" =>
3184                        [
3185                            "ssl/bio_ssl.o",
3186                            "ssl/d1_lib.o",
3187                            "ssl/d1_msg.o",
3188                            "ssl/d1_srtp.o",
3189                            "ssl/methods.o",
3190                            "ssl/packet.o",
3191                            "ssl/pqueue.o",
3192                            "ssl/s3_cbc.o",
3193                            "ssl/s3_enc.o",
3194                            "ssl/s3_lib.o",
3195                            "ssl/s3_msg.o",
3196                            "ssl/ssl_asn1.o",
3197                            "ssl/ssl_cert.o",
3198                            "ssl/ssl_ciph.o",
3199                            "ssl/ssl_conf.o",
3200                            "ssl/ssl_err.o",
3201                            "ssl/ssl_init.o",
3202                            "ssl/ssl_lib.o",
3203                            "ssl/ssl_mcnf.o",
3204                            "ssl/ssl_rsa.o",
3205                            "ssl/ssl_sess.o",
3206                            "ssl/ssl_stat.o",
3207                            "ssl/ssl_txt.o",
3208                            "ssl/ssl_utst.o",
3209                            "ssl/t1_enc.o",
3210                            "ssl/t1_lib.o",
3211                            "ssl/t1_trce.o",
3212                            "ssl/tls13_enc.o",
3213                            "ssl/tls_srp.o",
3214                        ],
3215                    "products" =>
3216                        {
3217                            "lib" =>
3218                                [
3219                                    "libssl",
3220                                ],
3221                        },
3222                },
3223            "ssl/record" =>
3224                {
3225                    "deps" =>
3226                        [
3227                            "ssl/record/dtls1_bitmap.o",
3228                            "ssl/record/rec_layer_d1.o",
3229                            "ssl/record/rec_layer_s3.o",
3230                            "ssl/record/ssl3_buffer.o",
3231                            "ssl/record/ssl3_record.o",
3232                            "ssl/record/ssl3_record_tls13.o",
3233                        ],
3234                    "products" =>
3235                        {
3236                            "lib" =>
3237                                [
3238                                    "libssl",
3239                                ],
3240                        },
3241                },
3242            "ssl/statem" =>
3243                {
3244                    "deps" =>
3245                        [
3246                            "ssl/statem/extensions.o",
3247                            "ssl/statem/extensions_clnt.o",
3248                            "ssl/statem/extensions_cust.o",
3249                            "ssl/statem/extensions_srvr.o",
3250                            "ssl/statem/statem.o",
3251                            "ssl/statem/statem_clnt.o",
3252                            "ssl/statem/statem_dtls.o",
3253                            "ssl/statem/statem_lib.o",
3254                            "ssl/statem/statem_srvr.o",
3255                        ],
3256                    "products" =>
3257                        {
3258                            "lib" =>
3259                                [
3260                                    "libssl",
3261                                ],
3262                        },
3263                },
3264            "test/testutil" =>
3265                {
3266                    "deps" =>
3267                        [
3268                            "test/testutil/basic_output.o",
3269                            "test/testutil/cb.o",
3270                            "test/testutil/driver.o",
3271                            "test/testutil/format_output.o",
3272                            "test/testutil/main.o",
3273                            "test/testutil/output_helpers.o",
3274                            "test/testutil/random.o",
3275                            "test/testutil/stanza.o",
3276                            "test/testutil/tap_bio.o",
3277                            "test/testutil/test_cleanup.o",
3278                            "test/testutil/tests.o",
3279                            "test/testutil/testutil_init.o",
3280                        ],
3281                    "products" =>
3282                        {
3283                            "lib" =>
3284                                [
3285                                    "test/libtestutil.a",
3286                                ],
3287                        },
3288                },
3289            "tools" =>
3290                {
3291                    "products" =>
3292                        {
3293                            "script" =>
3294                                [
3295                                    "tools/c_rehash",
3296                                ],
3297                        },
3298                },
3299            "util" =>
3300                {
3301                    "products" =>
3302                        {
3303                            "script" =>
3304                                [
3305                                    "util/shlib_wrap.sh",
3306                                ],
3307                        },
3308                },
3309        },
3310    "engines" =>
3311        [
3312        ],
3313    "extra" =>
3314        [
3315            "crypto/alphacpuid.pl",
3316            "crypto/arm64cpuid.pl",
3317            "crypto/armv4cpuid.pl",
3318            "crypto/ia64cpuid.S",
3319            "crypto/pariscid.pl",
3320            "crypto/ppccpuid.pl",
3321            "crypto/x86_64cpuid.pl",
3322            "crypto/x86cpuid.pl",
3323            "ms/applink.c",
3324            "ms/uplink-x86.pl",
3325            "ms/uplink.c",
3326        ],
3327    "generate" =>
3328        {
3329            "apps/progs.h" =>
3330                [
3331                    "apps/progs.pl",
3332                    "\$(APPS_OPENSSL)",
3333                ],
3334            "crypto/aes/aes-586.s" =>
3335                [
3336                    "crypto/aes/asm/aes-586.pl",
3337                    "\$(PERLASM_SCHEME)",
3338                    "\$(LIB_CFLAGS)",
3339                    "\$(LIB_CPPFLAGS)",
3340                    "\$(PROCESSOR)",
3341                ],
3342            "crypto/aes/aes-armv4.S" =>
3343                [
3344                    "crypto/aes/asm/aes-armv4.pl",
3345                    "\$(PERLASM_SCHEME)",
3346                ],
3347            "crypto/aes/aes-ia64.s" =>
3348                [
3349                    "crypto/aes/asm/aes-ia64.S",
3350                ],
3351            "crypto/aes/aes-mips.S" =>
3352                [
3353                    "crypto/aes/asm/aes-mips.pl",
3354                    "\$(PERLASM_SCHEME)",
3355                ],
3356            "crypto/aes/aes-parisc.s" =>
3357                [
3358                    "crypto/aes/asm/aes-parisc.pl",
3359                    "\$(PERLASM_SCHEME)",
3360                ],
3361            "crypto/aes/aes-ppc.s" =>
3362                [
3363                    "crypto/aes/asm/aes-ppc.pl",
3364                    "\$(PERLASM_SCHEME)",
3365                ],
3366            "crypto/aes/aes-s390x.S" =>
3367                [
3368                    "crypto/aes/asm/aes-s390x.pl",
3369                    "\$(PERLASM_SCHEME)",
3370                ],
3371            "crypto/aes/aes-sparcv9.S" =>
3372                [
3373                    "crypto/aes/asm/aes-sparcv9.pl",
3374                    "\$(PERLASM_SCHEME)",
3375                ],
3376            "crypto/aes/aes-x86_64.s" =>
3377                [
3378                    "crypto/aes/asm/aes-x86_64.pl",
3379                    "\$(PERLASM_SCHEME)",
3380                ],
3381            "crypto/aes/aesfx-sparcv9.S" =>
3382                [
3383                    "crypto/aes/asm/aesfx-sparcv9.pl",
3384                    "\$(PERLASM_SCHEME)",
3385                ],
3386            "crypto/aes/aesni-mb-x86_64.s" =>
3387                [
3388                    "crypto/aes/asm/aesni-mb-x86_64.pl",
3389                    "\$(PERLASM_SCHEME)",
3390                ],
3391            "crypto/aes/aesni-sha1-x86_64.s" =>
3392                [
3393                    "crypto/aes/asm/aesni-sha1-x86_64.pl",
3394                    "\$(PERLASM_SCHEME)",
3395                ],
3396            "crypto/aes/aesni-sha256-x86_64.s" =>
3397                [
3398                    "crypto/aes/asm/aesni-sha256-x86_64.pl",
3399                    "\$(PERLASM_SCHEME)",
3400                ],
3401            "crypto/aes/aesni-x86.s" =>
3402                [
3403                    "crypto/aes/asm/aesni-x86.pl",
3404                    "\$(PERLASM_SCHEME)",
3405                    "\$(LIB_CFLAGS)",
3406                    "\$(LIB_CPPFLAGS)",
3407                    "\$(PROCESSOR)",
3408                ],
3409            "crypto/aes/aesni-x86_64.s" =>
3410                [
3411                    "crypto/aes/asm/aesni-x86_64.pl",
3412                    "\$(PERLASM_SCHEME)",
3413                ],
3414            "crypto/aes/aesp8-ppc.s" =>
3415                [
3416                    "crypto/aes/asm/aesp8-ppc.pl",
3417                    "\$(PERLASM_SCHEME)",
3418                ],
3419            "crypto/aes/aest4-sparcv9.S" =>
3420                [
3421                    "crypto/aes/asm/aest4-sparcv9.pl",
3422                    "\$(PERLASM_SCHEME)",
3423                ],
3424            "crypto/aes/aesv8-armx.S" =>
3425                [
3426                    "crypto/aes/asm/aesv8-armx.pl",
3427                    "\$(PERLASM_SCHEME)",
3428                ],
3429            "crypto/aes/bsaes-armv7.S" =>
3430                [
3431                    "crypto/aes/asm/bsaes-armv7.pl",
3432                    "\$(PERLASM_SCHEME)",
3433                ],
3434            "crypto/aes/bsaes-x86_64.s" =>
3435                [
3436                    "crypto/aes/asm/bsaes-x86_64.pl",
3437                    "\$(PERLASM_SCHEME)",
3438                ],
3439            "crypto/aes/vpaes-armv8.S" =>
3440                [
3441                    "crypto/aes/asm/vpaes-armv8.pl",
3442                    "\$(PERLASM_SCHEME)",
3443                ],
3444            "crypto/aes/vpaes-ppc.s" =>
3445                [
3446                    "crypto/aes/asm/vpaes-ppc.pl",
3447                    "\$(PERLASM_SCHEME)",
3448                ],
3449            "crypto/aes/vpaes-x86.s" =>
3450                [
3451                    "crypto/aes/asm/vpaes-x86.pl",
3452                    "\$(PERLASM_SCHEME)",
3453                    "\$(LIB_CFLAGS)",
3454                    "\$(LIB_CPPFLAGS)",
3455                    "\$(PROCESSOR)",
3456                ],
3457            "crypto/aes/vpaes-x86_64.s" =>
3458                [
3459                    "crypto/aes/asm/vpaes-x86_64.pl",
3460                    "\$(PERLASM_SCHEME)",
3461                ],
3462            "crypto/alphacpuid.s" =>
3463                [
3464                    "crypto/alphacpuid.pl",
3465                ],
3466            "crypto/arm64cpuid.S" =>
3467                [
3468                    "crypto/arm64cpuid.pl",
3469                    "\$(PERLASM_SCHEME)",
3470                ],
3471            "crypto/armv4cpuid.S" =>
3472                [
3473                    "crypto/armv4cpuid.pl",
3474                    "\$(PERLASM_SCHEME)",
3475                ],
3476            "crypto/bf/bf-586.s" =>
3477                [
3478                    "crypto/bf/asm/bf-586.pl",
3479                    "\$(PERLASM_SCHEME)",
3480                    "\$(LIB_CFLAGS)",
3481                    "\$(LIB_CPPFLAGS)",
3482                    "\$(PROCESSOR)",
3483                ],
3484            "crypto/bn/alpha-mont.S" =>
3485                [
3486                    "crypto/bn/asm/alpha-mont.pl",
3487                    "\$(PERLASM_SCHEME)",
3488                ],
3489            "crypto/bn/armv4-gf2m.S" =>
3490                [
3491                    "crypto/bn/asm/armv4-gf2m.pl",
3492                    "\$(PERLASM_SCHEME)",
3493                ],
3494            "crypto/bn/armv4-mont.S" =>
3495                [
3496                    "crypto/bn/asm/armv4-mont.pl",
3497                    "\$(PERLASM_SCHEME)",
3498                ],
3499            "crypto/bn/armv8-mont.S" =>
3500                [
3501                    "crypto/bn/asm/armv8-mont.pl",
3502                    "\$(PERLASM_SCHEME)",
3503                ],
3504            "crypto/bn/bn-586.s" =>
3505                [
3506                    "crypto/bn/asm/bn-586.pl",
3507                    "\$(PERLASM_SCHEME)",
3508                    "\$(LIB_CFLAGS)",
3509                    "\$(LIB_CPPFLAGS)",
3510                    "\$(PROCESSOR)",
3511                ],
3512            "crypto/bn/bn-ia64.s" =>
3513                [
3514                    "crypto/bn/asm/ia64.S",
3515                ],
3516            "crypto/bn/bn-mips.S" =>
3517                [
3518                    "crypto/bn/asm/mips.pl",
3519                    "\$(PERLASM_SCHEME)",
3520                ],
3521            "crypto/bn/bn-ppc.s" =>
3522                [
3523                    "crypto/bn/asm/ppc.pl",
3524                    "\$(PERLASM_SCHEME)",
3525                ],
3526            "crypto/bn/co-586.s" =>
3527                [
3528                    "crypto/bn/asm/co-586.pl",
3529                    "\$(PERLASM_SCHEME)",
3530                    "\$(LIB_CFLAGS)",
3531                    "\$(LIB_CPPFLAGS)",
3532                    "\$(PROCESSOR)",
3533                ],
3534            "crypto/bn/ia64-mont.s" =>
3535                [
3536                    "crypto/bn/asm/ia64-mont.pl",
3537                    "\$(LIB_CFLAGS)",
3538                    "\$(LIB_CPPFLAGS)",
3539                ],
3540            "crypto/bn/mips-mont.S" =>
3541                [
3542                    "crypto/bn/asm/mips-mont.pl",
3543                    "\$(PERLASM_SCHEME)",
3544                ],
3545            "crypto/bn/parisc-mont.s" =>
3546                [
3547                    "crypto/bn/asm/parisc-mont.pl",
3548                    "\$(PERLASM_SCHEME)",
3549                ],
3550            "crypto/bn/ppc-mont.s" =>
3551                [
3552                    "crypto/bn/asm/ppc-mont.pl",
3553                    "\$(PERLASM_SCHEME)",
3554                ],
3555            "crypto/bn/ppc64-mont.s" =>
3556                [
3557                    "crypto/bn/asm/ppc64-mont.pl",
3558                    "\$(PERLASM_SCHEME)",
3559                ],
3560            "crypto/bn/rsaz-avx2.s" =>
3561                [
3562                    "crypto/bn/asm/rsaz-avx2.pl",
3563                    "\$(PERLASM_SCHEME)",
3564                ],
3565            "crypto/bn/rsaz-x86_64.s" =>
3566                [
3567                    "crypto/bn/asm/rsaz-x86_64.pl",
3568                    "\$(PERLASM_SCHEME)",
3569                ],
3570            "crypto/bn/s390x-gf2m.s" =>
3571                [
3572                    "crypto/bn/asm/s390x-gf2m.pl",
3573                    "\$(PERLASM_SCHEME)",
3574                ],
3575            "crypto/bn/s390x-mont.S" =>
3576                [
3577                    "crypto/bn/asm/s390x-mont.pl",
3578                    "\$(PERLASM_SCHEME)",
3579                ],
3580            "crypto/bn/sparct4-mont.S" =>
3581                [
3582                    "crypto/bn/asm/sparct4-mont.pl",
3583                    "\$(PERLASM_SCHEME)",
3584                ],
3585            "crypto/bn/sparcv9-gf2m.S" =>
3586                [
3587                    "crypto/bn/asm/sparcv9-gf2m.pl",
3588                    "\$(PERLASM_SCHEME)",
3589                ],
3590            "crypto/bn/sparcv9-mont.S" =>
3591                [
3592                    "crypto/bn/asm/sparcv9-mont.pl",
3593                    "\$(PERLASM_SCHEME)",
3594                ],
3595            "crypto/bn/sparcv9a-mont.S" =>
3596                [
3597                    "crypto/bn/asm/sparcv9a-mont.pl",
3598                    "\$(PERLASM_SCHEME)",
3599                ],
3600            "crypto/bn/vis3-mont.S" =>
3601                [
3602                    "crypto/bn/asm/vis3-mont.pl",
3603                    "\$(PERLASM_SCHEME)",
3604                ],
3605            "crypto/bn/x86-gf2m.s" =>
3606                [
3607                    "crypto/bn/asm/x86-gf2m.pl",
3608                    "\$(PERLASM_SCHEME)",
3609                    "\$(LIB_CFLAGS)",
3610                    "\$(LIB_CPPFLAGS)",
3611                    "\$(PROCESSOR)",
3612                ],
3613            "crypto/bn/x86-mont.s" =>
3614                [
3615                    "crypto/bn/asm/x86-mont.pl",
3616                    "\$(PERLASM_SCHEME)",
3617                    "\$(LIB_CFLAGS)",
3618                    "\$(LIB_CPPFLAGS)",
3619                    "\$(PROCESSOR)",
3620                ],
3621            "crypto/bn/x86_64-gf2m.s" =>
3622                [
3623                    "crypto/bn/asm/x86_64-gf2m.pl",
3624                    "\$(PERLASM_SCHEME)",
3625                ],
3626            "crypto/bn/x86_64-mont.s" =>
3627                [
3628                    "crypto/bn/asm/x86_64-mont.pl",
3629                    "\$(PERLASM_SCHEME)",
3630                ],
3631            "crypto/bn/x86_64-mont5.s" =>
3632                [
3633                    "crypto/bn/asm/x86_64-mont5.pl",
3634                    "\$(PERLASM_SCHEME)",
3635                ],
3636            "crypto/buildinf.h" =>
3637                [
3638                    "util/mkbuildinf.pl",
3639                    "\"\$(CC)",
3640                    "\$(LIB_CFLAGS)",
3641                    "\$(CPPFLAGS_Q)\"",
3642                    "\"\$(PLATFORM)\"",
3643                ],
3644            "crypto/camellia/cmll-x86.s" =>
3645                [
3646                    "crypto/camellia/asm/cmll-x86.pl",
3647                    "\$(PERLASM_SCHEME)",
3648                    "\$(LIB_CFLAGS)",
3649                    "\$(LIB_CPPFLAGS)",
3650                    "\$(PROCESSOR)",
3651                ],
3652            "crypto/camellia/cmll-x86_64.s" =>
3653                [
3654                    "crypto/camellia/asm/cmll-x86_64.pl",
3655                    "\$(PERLASM_SCHEME)",
3656                ],
3657            "crypto/camellia/cmllt4-sparcv9.S" =>
3658                [
3659                    "crypto/camellia/asm/cmllt4-sparcv9.pl",
3660                    "\$(PERLASM_SCHEME)",
3661                ],
3662            "crypto/cast/cast-586.s" =>
3663                [
3664                    "crypto/cast/asm/cast-586.pl",
3665                    "\$(PERLASM_SCHEME)",
3666                    "\$(LIB_CFLAGS)",
3667                    "\$(LIB_CPPFLAGS)",
3668                    "\$(PROCESSOR)",
3669                ],
3670            "crypto/chacha/chacha-armv4.S" =>
3671                [
3672                    "crypto/chacha/asm/chacha-armv4.pl",
3673                    "\$(PERLASM_SCHEME)",
3674                ],
3675            "crypto/chacha/chacha-armv8.S" =>
3676                [
3677                    "crypto/chacha/asm/chacha-armv8.pl",
3678                    "\$(PERLASM_SCHEME)",
3679                ],
3680            "crypto/chacha/chacha-ppc.s" =>
3681                [
3682                    "crypto/chacha/asm/chacha-ppc.pl",
3683                    "\$(PERLASM_SCHEME)",
3684                ],
3685            "crypto/chacha/chacha-s390x.S" =>
3686                [
3687                    "crypto/chacha/asm/chacha-s390x.pl",
3688                    "\$(PERLASM_SCHEME)",
3689                ],
3690            "crypto/chacha/chacha-x86.s" =>
3691                [
3692                    "crypto/chacha/asm/chacha-x86.pl",
3693                    "\$(PERLASM_SCHEME)",
3694                    "\$(LIB_CFLAGS)",
3695                    "\$(LIB_CPPFLAGS)",
3696                    "\$(PROCESSOR)",
3697                ],
3698            "crypto/chacha/chacha-x86_64.s" =>
3699                [
3700                    "crypto/chacha/asm/chacha-x86_64.pl",
3701                    "\$(PERLASM_SCHEME)",
3702                ],
3703            "crypto/des/crypt586.s" =>
3704                [
3705                    "crypto/des/asm/crypt586.pl",
3706                    "\$(PERLASM_SCHEME)",
3707                    "\$(LIB_CFLAGS)",
3708                    "\$(LIB_CPPFLAGS)",
3709                ],
3710            "crypto/des/des-586.s" =>
3711                [
3712                    "crypto/des/asm/des-586.pl",
3713                    "\$(PERLASM_SCHEME)",
3714                    "\$(LIB_CFLAGS)",
3715                    "\$(LIB_CPPFLAGS)",
3716                ],
3717            "crypto/des/des_enc-sparc.S" =>
3718                [
3719                    "crypto/des/asm/des_enc.m4",
3720                ],
3721            "crypto/des/dest4-sparcv9.S" =>
3722                [
3723                    "crypto/des/asm/dest4-sparcv9.pl",
3724                    "\$(PERLASM_SCHEME)",
3725                ],
3726            "crypto/ec/ecp_nistz256-armv4.S" =>
3727                [
3728                    "crypto/ec/asm/ecp_nistz256-armv4.pl",
3729                    "\$(PERLASM_SCHEME)",
3730                ],
3731            "crypto/ec/ecp_nistz256-armv8.S" =>
3732                [
3733                    "crypto/ec/asm/ecp_nistz256-armv8.pl",
3734                    "\$(PERLASM_SCHEME)",
3735                ],
3736            "crypto/ec/ecp_nistz256-avx2.s" =>
3737                [
3738                    "crypto/ec/asm/ecp_nistz256-avx2.pl",
3739                    "\$(PERLASM_SCHEME)",
3740                ],
3741            "crypto/ec/ecp_nistz256-ppc64.s" =>
3742                [
3743                    "crypto/ec/asm/ecp_nistz256-ppc64.pl",
3744                    "\$(PERLASM_SCHEME)",
3745                ],
3746            "crypto/ec/ecp_nistz256-sparcv9.S" =>
3747                [
3748                    "crypto/ec/asm/ecp_nistz256-sparcv9.pl",
3749                    "\$(PERLASM_SCHEME)",
3750                ],
3751            "crypto/ec/ecp_nistz256-x86.s" =>
3752                [
3753                    "crypto/ec/asm/ecp_nistz256-x86.pl",
3754                    "\$(PERLASM_SCHEME)",
3755                    "\$(LIB_CFLAGS)",
3756                    "\$(LIB_CPPFLAGS)",
3757                    "\$(PROCESSOR)",
3758                ],
3759            "crypto/ec/ecp_nistz256-x86_64.s" =>
3760                [
3761                    "crypto/ec/asm/ecp_nistz256-x86_64.pl",
3762                    "\$(PERLASM_SCHEME)",
3763                ],
3764            "crypto/ec/x25519-ppc64.s" =>
3765                [
3766                    "crypto/ec/asm/x25519-ppc64.pl",
3767                    "\$(PERLASM_SCHEME)",
3768                ],
3769            "crypto/ec/x25519-x86_64.s" =>
3770                [
3771                    "crypto/ec/asm/x25519-x86_64.pl",
3772                    "\$(PERLASM_SCHEME)",
3773                ],
3774            "crypto/ia64cpuid.s" =>
3775                [
3776                    "crypto/ia64cpuid.S",
3777                ],
3778            "crypto/md5/md5-586.s" =>
3779                [
3780                    "crypto/md5/asm/md5-586.pl",
3781                    "\$(PERLASM_SCHEME)",
3782                    "\$(LIB_CFLAGS)",
3783                    "\$(LIB_CPPFLAGS)",
3784                ],
3785            "crypto/md5/md5-sparcv9.S" =>
3786                [
3787                    "crypto/md5/asm/md5-sparcv9.pl",
3788                    "\$(PERLASM_SCHEME)",
3789                ],
3790            "crypto/md5/md5-x86_64.s" =>
3791                [
3792                    "crypto/md5/asm/md5-x86_64.pl",
3793                    "\$(PERLASM_SCHEME)",
3794                ],
3795            "crypto/modes/aesni-gcm-x86_64.s" =>
3796                [
3797                    "crypto/modes/asm/aesni-gcm-x86_64.pl",
3798                    "\$(PERLASM_SCHEME)",
3799                ],
3800            "crypto/modes/ghash-alpha.S" =>
3801                [
3802                    "crypto/modes/asm/ghash-alpha.pl",
3803                    "\$(PERLASM_SCHEME)",
3804                ],
3805            "crypto/modes/ghash-armv4.S" =>
3806                [
3807                    "crypto/modes/asm/ghash-armv4.pl",
3808                    "\$(PERLASM_SCHEME)",
3809                ],
3810            "crypto/modes/ghash-ia64.s" =>
3811                [
3812                    "crypto/modes/asm/ghash-ia64.pl",
3813                    "\$(LIB_CFLAGS)",
3814                    "\$(LIB_CPPFLAGS)",
3815                ],
3816            "crypto/modes/ghash-parisc.s" =>
3817                [
3818                    "crypto/modes/asm/ghash-parisc.pl",
3819                    "\$(PERLASM_SCHEME)",
3820                ],
3821            "crypto/modes/ghash-s390x.S" =>
3822                [
3823                    "crypto/modes/asm/ghash-s390x.pl",
3824                    "\$(PERLASM_SCHEME)",
3825                ],
3826            "crypto/modes/ghash-sparcv9.S" =>
3827                [
3828                    "crypto/modes/asm/ghash-sparcv9.pl",
3829                    "\$(PERLASM_SCHEME)",
3830                ],
3831            "crypto/modes/ghash-x86.s" =>
3832                [
3833                    "crypto/modes/asm/ghash-x86.pl",
3834                    "\$(PERLASM_SCHEME)",
3835                    "\$(LIB_CFLAGS)",
3836                    "\$(LIB_CPPFLAGS)",
3837                    "\$(PROCESSOR)",
3838                ],
3839            "crypto/modes/ghash-x86_64.s" =>
3840                [
3841                    "crypto/modes/asm/ghash-x86_64.pl",
3842                    "\$(PERLASM_SCHEME)",
3843                ],
3844            "crypto/modes/ghashp8-ppc.s" =>
3845                [
3846                    "crypto/modes/asm/ghashp8-ppc.pl",
3847                    "\$(PERLASM_SCHEME)",
3848                ],
3849            "crypto/modes/ghashv8-armx.S" =>
3850                [
3851                    "crypto/modes/asm/ghashv8-armx.pl",
3852                    "\$(PERLASM_SCHEME)",
3853                ],
3854            "crypto/pariscid.s" =>
3855                [
3856                    "crypto/pariscid.pl",
3857                    "\$(PERLASM_SCHEME)",
3858                ],
3859            "crypto/poly1305/poly1305-armv4.S" =>
3860                [
3861                    "crypto/poly1305/asm/poly1305-armv4.pl",
3862                    "\$(PERLASM_SCHEME)",
3863                ],
3864            "crypto/poly1305/poly1305-armv8.S" =>
3865                [
3866                    "crypto/poly1305/asm/poly1305-armv8.pl",
3867                    "\$(PERLASM_SCHEME)",
3868                ],
3869            "crypto/poly1305/poly1305-mips.S" =>
3870                [
3871                    "crypto/poly1305/asm/poly1305-mips.pl",
3872                    "\$(PERLASM_SCHEME)",
3873                ],
3874            "crypto/poly1305/poly1305-ppc.s" =>
3875                [
3876                    "crypto/poly1305/asm/poly1305-ppc.pl",
3877                    "\$(PERLASM_SCHEME)",
3878                ],
3879            "crypto/poly1305/poly1305-ppcfp.s" =>
3880                [
3881                    "crypto/poly1305/asm/poly1305-ppcfp.pl",
3882                    "\$(PERLASM_SCHEME)",
3883                ],
3884            "crypto/poly1305/poly1305-s390x.S" =>
3885                [
3886                    "crypto/poly1305/asm/poly1305-s390x.pl",
3887                    "\$(PERLASM_SCHEME)",
3888                ],
3889            "crypto/poly1305/poly1305-sparcv9.S" =>
3890                [
3891                    "crypto/poly1305/asm/poly1305-sparcv9.pl",
3892                    "\$(PERLASM_SCHEME)",
3893                ],
3894            "crypto/poly1305/poly1305-x86.s" =>
3895                [
3896                    "crypto/poly1305/asm/poly1305-x86.pl",
3897                    "\$(PERLASM_SCHEME)",
3898                    "\$(LIB_CFLAGS)",
3899                    "\$(LIB_CPPFLAGS)",
3900                    "\$(PROCESSOR)",
3901                ],
3902            "crypto/poly1305/poly1305-x86_64.s" =>
3903                [
3904                    "crypto/poly1305/asm/poly1305-x86_64.pl",
3905                    "\$(PERLASM_SCHEME)",
3906                ],
3907            "crypto/ppccpuid.s" =>
3908                [
3909                    "crypto/ppccpuid.pl",
3910                    "\$(PERLASM_SCHEME)",
3911                ],
3912            "crypto/rc4/rc4-586.s" =>
3913                [
3914                    "crypto/rc4/asm/rc4-586.pl",
3915                    "\$(PERLASM_SCHEME)",
3916                    "\$(LIB_CFLAGS)",
3917                    "\$(LIB_CPPFLAGS)",
3918                    "\$(PROCESSOR)",
3919                ],
3920            "crypto/rc4/rc4-md5-x86_64.s" =>
3921                [
3922                    "crypto/rc4/asm/rc4-md5-x86_64.pl",
3923                    "\$(PERLASM_SCHEME)",
3924                ],
3925            "crypto/rc4/rc4-parisc.s" =>
3926                [
3927                    "crypto/rc4/asm/rc4-parisc.pl",
3928                    "\$(PERLASM_SCHEME)",
3929                ],
3930            "crypto/rc4/rc4-s390x.s" =>
3931                [
3932                    "crypto/rc4/asm/rc4-s390x.pl",
3933                    "\$(PERLASM_SCHEME)",
3934                ],
3935            "crypto/rc4/rc4-x86_64.s" =>
3936                [
3937                    "crypto/rc4/asm/rc4-x86_64.pl",
3938                    "\$(PERLASM_SCHEME)",
3939                ],
3940            "crypto/ripemd/rmd-586.s" =>
3941                [
3942                    "crypto/ripemd/asm/rmd-586.pl",
3943                    "\$(PERLASM_SCHEME)",
3944                    "\$(LIB_CFLAGS)",
3945                    "\$(LIB_CPPFLAGS)",
3946                ],
3947            "crypto/s390xcpuid.S" =>
3948                [
3949                    "crypto/s390xcpuid.pl",
3950                    "\$(PERLASM_SCHEME)",
3951                ],
3952            "crypto/sha/keccak1600-armv4.S" =>
3953                [
3954                    "crypto/sha/asm/keccak1600-armv4.pl",
3955                    "\$(PERLASM_SCHEME)",
3956                ],
3957            "crypto/sha/keccak1600-armv8.S" =>
3958                [
3959                    "crypto/sha/asm/keccak1600-armv8.pl",
3960                    "\$(PERLASM_SCHEME)",
3961                ],
3962            "crypto/sha/keccak1600-ppc64.s" =>
3963                [
3964                    "crypto/sha/asm/keccak1600-ppc64.pl",
3965                    "\$(PERLASM_SCHEME)",
3966                ],
3967            "crypto/sha/keccak1600-s390x.S" =>
3968                [
3969                    "crypto/sha/asm/keccak1600-s390x.pl",
3970                    "\$(PERLASM_SCHEME)",
3971                ],
3972            "crypto/sha/keccak1600-x86_64.s" =>
3973                [
3974                    "crypto/sha/asm/keccak1600-x86_64.pl",
3975                    "\$(PERLASM_SCHEME)",
3976                ],
3977            "crypto/sha/sha1-586.s" =>
3978                [
3979                    "crypto/sha/asm/sha1-586.pl",
3980                    "\$(PERLASM_SCHEME)",
3981                    "\$(LIB_CFLAGS)",
3982                    "\$(LIB_CPPFLAGS)",
3983                    "\$(PROCESSOR)",
3984                ],
3985            "crypto/sha/sha1-alpha.S" =>
3986                [
3987                    "crypto/sha/asm/sha1-alpha.pl",
3988                    "\$(PERLASM_SCHEME)",
3989                ],
3990            "crypto/sha/sha1-armv4-large.S" =>
3991                [
3992                    "crypto/sha/asm/sha1-armv4-large.pl",
3993                    "\$(PERLASM_SCHEME)",
3994                ],
3995            "crypto/sha/sha1-armv8.S" =>
3996                [
3997                    "crypto/sha/asm/sha1-armv8.pl",
3998                    "\$(PERLASM_SCHEME)",
3999                ],
4000            "crypto/sha/sha1-ia64.s" =>
4001                [
4002                    "crypto/sha/asm/sha1-ia64.pl",
4003                    "\$(LIB_CFLAGS)",
4004                    "\$(LIB_CPPFLAGS)",
4005                ],
4006            "crypto/sha/sha1-mb-x86_64.s" =>
4007                [
4008                    "crypto/sha/asm/sha1-mb-x86_64.pl",
4009                    "\$(PERLASM_SCHEME)",
4010                ],
4011            "crypto/sha/sha1-mips.S" =>
4012                [
4013                    "crypto/sha/asm/sha1-mips.pl",
4014                    "\$(PERLASM_SCHEME)",
4015                ],
4016            "crypto/sha/sha1-parisc.s" =>
4017                [
4018                    "crypto/sha/asm/sha1-parisc.pl",
4019                    "\$(PERLASM_SCHEME)",
4020                ],
4021            "crypto/sha/sha1-ppc.s" =>
4022                [
4023                    "crypto/sha/asm/sha1-ppc.pl",
4024                    "\$(PERLASM_SCHEME)",
4025                ],
4026            "crypto/sha/sha1-s390x.S" =>
4027                [
4028                    "crypto/sha/asm/sha1-s390x.pl",
4029                    "\$(PERLASM_SCHEME)",
4030                ],
4031            "crypto/sha/sha1-sparcv9.S" =>
4032                [
4033                    "crypto/sha/asm/sha1-sparcv9.pl",
4034                    "\$(PERLASM_SCHEME)",
4035                ],
4036            "crypto/sha/sha1-x86_64.s" =>
4037                [
4038                    "crypto/sha/asm/sha1-x86_64.pl",
4039                    "\$(PERLASM_SCHEME)",
4040                ],
4041            "crypto/sha/sha256-586.s" =>
4042                [
4043                    "crypto/sha/asm/sha256-586.pl",
4044                    "\$(PERLASM_SCHEME)",
4045                    "\$(LIB_CFLAGS)",
4046                    "\$(LIB_CPPFLAGS)",
4047                    "\$(PROCESSOR)",
4048                ],
4049            "crypto/sha/sha256-armv4.S" =>
4050                [
4051                    "crypto/sha/asm/sha256-armv4.pl",
4052                    "\$(PERLASM_SCHEME)",
4053                ],
4054            "crypto/sha/sha256-armv8.S" =>
4055                [
4056                    "crypto/sha/asm/sha512-armv8.pl",
4057                    "\$(PERLASM_SCHEME)",
4058                ],
4059            "crypto/sha/sha256-ia64.s" =>
4060                [
4061                    "crypto/sha/asm/sha512-ia64.pl",
4062                    "\$(LIB_CFLAGS)",
4063                    "\$(LIB_CPPFLAGS)",
4064                ],
4065            "crypto/sha/sha256-mb-x86_64.s" =>
4066                [
4067                    "crypto/sha/asm/sha256-mb-x86_64.pl",
4068                    "\$(PERLASM_SCHEME)",
4069                ],
4070            "crypto/sha/sha256-mips.S" =>
4071                [
4072                    "crypto/sha/asm/sha512-mips.pl",
4073                    "\$(PERLASM_SCHEME)",
4074                ],
4075            "crypto/sha/sha256-parisc.s" =>
4076                [
4077                    "crypto/sha/asm/sha512-parisc.pl",
4078                    "\$(PERLASM_SCHEME)",
4079                ],
4080            "crypto/sha/sha256-ppc.s" =>
4081                [
4082                    "crypto/sha/asm/sha512-ppc.pl",
4083                    "\$(PERLASM_SCHEME)",
4084                ],
4085            "crypto/sha/sha256-s390x.S" =>
4086                [
4087                    "crypto/sha/asm/sha512-s390x.pl",
4088                    "\$(PERLASM_SCHEME)",
4089                ],
4090            "crypto/sha/sha256-sparcv9.S" =>
4091                [
4092                    "crypto/sha/asm/sha512-sparcv9.pl",
4093                    "\$(PERLASM_SCHEME)",
4094                ],
4095            "crypto/sha/sha256-x86_64.s" =>
4096                [
4097                    "crypto/sha/asm/sha512-x86_64.pl",
4098                    "\$(PERLASM_SCHEME)",
4099                ],
4100            "crypto/sha/sha256p8-ppc.s" =>
4101                [
4102                    "crypto/sha/asm/sha512p8-ppc.pl",
4103                    "\$(PERLASM_SCHEME)",
4104                ],
4105            "crypto/sha/sha512-586.s" =>
4106                [
4107                    "crypto/sha/asm/sha512-586.pl",
4108                    "\$(PERLASM_SCHEME)",
4109                    "\$(LIB_CFLAGS)",
4110                    "\$(LIB_CPPFLAGS)",
4111                    "\$(PROCESSOR)",
4112                ],
4113            "crypto/sha/sha512-armv4.S" =>
4114                [
4115                    "crypto/sha/asm/sha512-armv4.pl",
4116                    "\$(PERLASM_SCHEME)",
4117                ],
4118            "crypto/sha/sha512-armv8.S" =>
4119                [
4120                    "crypto/sha/asm/sha512-armv8.pl",
4121                    "\$(PERLASM_SCHEME)",
4122                ],
4123            "crypto/sha/sha512-ia64.s" =>
4124                [
4125                    "crypto/sha/asm/sha512-ia64.pl",
4126                    "\$(LIB_CFLAGS)",
4127                    "\$(LIB_CPPFLAGS)",
4128                ],
4129            "crypto/sha/sha512-mips.S" =>
4130                [
4131                    "crypto/sha/asm/sha512-mips.pl",
4132                    "\$(PERLASM_SCHEME)",
4133                ],
4134            "crypto/sha/sha512-parisc.s" =>
4135                [
4136                    "crypto/sha/asm/sha512-parisc.pl",
4137                    "\$(PERLASM_SCHEME)",
4138                ],
4139            "crypto/sha/sha512-ppc.s" =>
4140                [
4141                    "crypto/sha/asm/sha512-ppc.pl",
4142                    "\$(PERLASM_SCHEME)",
4143                ],
4144            "crypto/sha/sha512-s390x.S" =>
4145                [
4146                    "crypto/sha/asm/sha512-s390x.pl",
4147                    "\$(PERLASM_SCHEME)",
4148                ],
4149            "crypto/sha/sha512-sparcv9.S" =>
4150                [
4151                    "crypto/sha/asm/sha512-sparcv9.pl",
4152                    "\$(PERLASM_SCHEME)",
4153                ],
4154            "crypto/sha/sha512-x86_64.s" =>
4155                [
4156                    "crypto/sha/asm/sha512-x86_64.pl",
4157                    "\$(PERLASM_SCHEME)",
4158                ],
4159            "crypto/sha/sha512p8-ppc.s" =>
4160                [
4161                    "crypto/sha/asm/sha512p8-ppc.pl",
4162                    "\$(PERLASM_SCHEME)",
4163                ],
4164            "crypto/uplink-ia64.s" =>
4165                [
4166                    "ms/uplink-ia64.pl",
4167                    "\$(PERLASM_SCHEME)",
4168                ],
4169            "crypto/uplink-x86.s" =>
4170                [
4171                    "ms/uplink-x86.pl",
4172                    "\$(PERLASM_SCHEME)",
4173                ],
4174            "crypto/uplink-x86_64.s" =>
4175                [
4176                    "ms/uplink-x86_64.pl",
4177                    "\$(PERLASM_SCHEME)",
4178                ],
4179            "crypto/whrlpool/wp-mmx.s" =>
4180                [
4181                    "crypto/whrlpool/asm/wp-mmx.pl",
4182                    "\$(PERLASM_SCHEME)",
4183                    "\$(LIB_CFLAGS)",
4184                    "\$(LIB_CPPFLAGS)",
4185                    "\$(PROCESSOR)",
4186                ],
4187            "crypto/whrlpool/wp-x86_64.s" =>
4188                [
4189                    "crypto/whrlpool/asm/wp-x86_64.pl",
4190                    "\$(PERLASM_SCHEME)",
4191                ],
4192            "crypto/x86_64cpuid.s" =>
4193                [
4194                    "crypto/x86_64cpuid.pl",
4195                    "\$(PERLASM_SCHEME)",
4196                ],
4197            "crypto/x86cpuid.s" =>
4198                [
4199                    "crypto/x86cpuid.pl",
4200                    "\$(PERLASM_SCHEME)",
4201                    "\$(LIB_CFLAGS)",
4202                    "\$(LIB_CPPFLAGS)",
4203                    "\$(PROCESSOR)",
4204                ],
4205            "engines/e_padlock-x86.s" =>
4206                [
4207                    "engines/asm/e_padlock-x86.pl",
4208                    "\$(PERLASM_SCHEME)",
4209                    "\$(LIB_CFLAGS)",
4210                    "\$(LIB_CPPFLAGS)",
4211                    "\$(PROCESSOR)",
4212                ],
4213            "engines/e_padlock-x86_64.s" =>
4214                [
4215                    "engines/asm/e_padlock-x86_64.pl",
4216                    "\$(PERLASM_SCHEME)",
4217                ],
4218            "include/crypto/bn_conf.h" =>
4219                [
4220                    "include/crypto/bn_conf.h.in",
4221                ],
4222            "include/crypto/dso_conf.h" =>
4223                [
4224                    "include/crypto/dso_conf.h.in",
4225                ],
4226            "include/openssl/opensslconf.h" =>
4227                [
4228                    "include/openssl/opensslconf.h.in",
4229                ],
4230            "libcrypto.map" =>
4231                [
4232                    "util/mkdef.pl",
4233                    "crypto",
4234                    "linux",
4235                ],
4236            "libssl.map" =>
4237                [
4238                    "util/mkdef.pl",
4239                    "ssl",
4240                    "linux",
4241                ],
4242            "test/buildtest_aes.c" =>
4243                [
4244                    "test/generate_buildtest.pl",
4245                    "aes",
4246                ],
4247            "test/buildtest_asn1.c" =>
4248                [
4249                    "test/generate_buildtest.pl",
4250                    "asn1",
4251                ],
4252            "test/buildtest_asn1t.c" =>
4253                [
4254                    "test/generate_buildtest.pl",
4255                    "asn1t",
4256                ],
4257            "test/buildtest_async.c" =>
4258                [
4259                    "test/generate_buildtest.pl",
4260                    "async",
4261                ],
4262            "test/buildtest_bio.c" =>
4263                [
4264                    "test/generate_buildtest.pl",
4265                    "bio",
4266                ],
4267            "test/buildtest_blowfish.c" =>
4268                [
4269                    "test/generate_buildtest.pl",
4270                    "blowfish",
4271                ],
4272            "test/buildtest_bn.c" =>
4273                [
4274                    "test/generate_buildtest.pl",
4275                    "bn",
4276                ],
4277            "test/buildtest_buffer.c" =>
4278                [
4279                    "test/generate_buildtest.pl",
4280                    "buffer",
4281                ],
4282            "test/buildtest_camellia.c" =>
4283                [
4284                    "test/generate_buildtest.pl",
4285                    "camellia",
4286                ],
4287            "test/buildtest_cast.c" =>
4288                [
4289                    "test/generate_buildtest.pl",
4290                    "cast",
4291                ],
4292            "test/buildtest_cmac.c" =>
4293                [
4294                    "test/generate_buildtest.pl",
4295                    "cmac",
4296                ],
4297            "test/buildtest_cms.c" =>
4298                [
4299                    "test/generate_buildtest.pl",
4300                    "cms",
4301                ],
4302            "test/buildtest_conf.c" =>
4303                [
4304                    "test/generate_buildtest.pl",
4305                    "conf",
4306                ],
4307            "test/buildtest_conf_api.c" =>
4308                [
4309                    "test/generate_buildtest.pl",
4310                    "conf_api",
4311                ],
4312            "test/buildtest_crypto.c" =>
4313                [
4314                    "test/generate_buildtest.pl",
4315                    "crypto",
4316                ],
4317            "test/buildtest_ct.c" =>
4318                [
4319                    "test/generate_buildtest.pl",
4320                    "ct",
4321                ],
4322            "test/buildtest_des.c" =>
4323                [
4324                    "test/generate_buildtest.pl",
4325                    "des",
4326                ],
4327            "test/buildtest_dh.c" =>
4328                [
4329                    "test/generate_buildtest.pl",
4330                    "dh",
4331                ],
4332            "test/buildtest_dsa.c" =>
4333                [
4334                    "test/generate_buildtest.pl",
4335                    "dsa",
4336                ],
4337            "test/buildtest_dtls1.c" =>
4338                [
4339                    "test/generate_buildtest.pl",
4340                    "dtls1",
4341                ],
4342            "test/buildtest_e_os2.c" =>
4343                [
4344                    "test/generate_buildtest.pl",
4345                    "e_os2",
4346                ],
4347            "test/buildtest_ebcdic.c" =>
4348                [
4349                    "test/generate_buildtest.pl",
4350                    "ebcdic",
4351                ],
4352            "test/buildtest_ec.c" =>
4353                [
4354                    "test/generate_buildtest.pl",
4355                    "ec",
4356                ],
4357            "test/buildtest_ecdh.c" =>
4358                [
4359                    "test/generate_buildtest.pl",
4360                    "ecdh",
4361                ],
4362            "test/buildtest_ecdsa.c" =>
4363                [
4364                    "test/generate_buildtest.pl",
4365                    "ecdsa",
4366                ],
4367            "test/buildtest_engine.c" =>
4368                [
4369                    "test/generate_buildtest.pl",
4370                    "engine",
4371                ],
4372            "test/buildtest_evp.c" =>
4373                [
4374                    "test/generate_buildtest.pl",
4375                    "evp",
4376                ],
4377            "test/buildtest_hmac.c" =>
4378                [
4379                    "test/generate_buildtest.pl",
4380                    "hmac",
4381                ],
4382            "test/buildtest_idea.c" =>
4383                [
4384                    "test/generate_buildtest.pl",
4385                    "idea",
4386                ],
4387            "test/buildtest_kdf.c" =>
4388                [
4389                    "test/generate_buildtest.pl",
4390                    "kdf",
4391                ],
4392            "test/buildtest_lhash.c" =>
4393                [
4394                    "test/generate_buildtest.pl",
4395                    "lhash",
4396                ],
4397            "test/buildtest_md4.c" =>
4398                [
4399                    "test/generate_buildtest.pl",
4400                    "md4",
4401                ],
4402            "test/buildtest_md5.c" =>
4403                [
4404                    "test/generate_buildtest.pl",
4405                    "md5",
4406                ],
4407            "test/buildtest_mdc2.c" =>
4408                [
4409                    "test/generate_buildtest.pl",
4410                    "mdc2",
4411                ],
4412            "test/buildtest_modes.c" =>
4413                [
4414                    "test/generate_buildtest.pl",
4415                    "modes",
4416                ],
4417            "test/buildtest_obj_mac.c" =>
4418                [
4419                    "test/generate_buildtest.pl",
4420                    "obj_mac",
4421                ],
4422            "test/buildtest_objects.c" =>
4423                [
4424                    "test/generate_buildtest.pl",
4425                    "objects",
4426                ],
4427            "test/buildtest_ocsp.c" =>
4428                [
4429                    "test/generate_buildtest.pl",
4430                    "ocsp",
4431                ],
4432            "test/buildtest_opensslv.c" =>
4433                [
4434                    "test/generate_buildtest.pl",
4435                    "opensslv",
4436                ],
4437            "test/buildtest_ossl_typ.c" =>
4438                [
4439                    "test/generate_buildtest.pl",
4440                    "ossl_typ",
4441                ],
4442            "test/buildtest_pem.c" =>
4443                [
4444                    "test/generate_buildtest.pl",
4445                    "pem",
4446                ],
4447            "test/buildtest_pem2.c" =>
4448                [
4449                    "test/generate_buildtest.pl",
4450                    "pem2",
4451                ],
4452            "test/buildtest_pkcs12.c" =>
4453                [
4454                    "test/generate_buildtest.pl",
4455                    "pkcs12",
4456                ],
4457            "test/buildtest_pkcs7.c" =>
4458                [
4459                    "test/generate_buildtest.pl",
4460                    "pkcs7",
4461                ],
4462            "test/buildtest_rand.c" =>
4463                [
4464                    "test/generate_buildtest.pl",
4465                    "rand",
4466                ],
4467            "test/buildtest_rand_drbg.c" =>
4468                [
4469                    "test/generate_buildtest.pl",
4470                    "rand_drbg",
4471                ],
4472            "test/buildtest_rc2.c" =>
4473                [
4474                    "test/generate_buildtest.pl",
4475                    "rc2",
4476                ],
4477            "test/buildtest_rc4.c" =>
4478                [
4479                    "test/generate_buildtest.pl",
4480                    "rc4",
4481                ],
4482            "test/buildtest_ripemd.c" =>
4483                [
4484                    "test/generate_buildtest.pl",
4485                    "ripemd",
4486                ],
4487            "test/buildtest_rsa.c" =>
4488                [
4489                    "test/generate_buildtest.pl",
4490                    "rsa",
4491                ],
4492            "test/buildtest_safestack.c" =>
4493                [
4494                    "test/generate_buildtest.pl",
4495                    "safestack",
4496                ],
4497            "test/buildtest_seed.c" =>
4498                [
4499                    "test/generate_buildtest.pl",
4500                    "seed",
4501                ],
4502            "test/buildtest_sha.c" =>
4503                [
4504                    "test/generate_buildtest.pl",
4505                    "sha",
4506                ],
4507            "test/buildtest_srp.c" =>
4508                [
4509                    "test/generate_buildtest.pl",
4510                    "srp",
4511                ],
4512            "test/buildtest_srtp.c" =>
4513                [
4514                    "test/generate_buildtest.pl",
4515                    "srtp",
4516                ],
4517            "test/buildtest_ssl.c" =>
4518                [
4519                    "test/generate_buildtest.pl",
4520                    "ssl",
4521                ],
4522            "test/buildtest_ssl2.c" =>
4523                [
4524                    "test/generate_buildtest.pl",
4525                    "ssl2",
4526                ],
4527            "test/buildtest_stack.c" =>
4528                [
4529                    "test/generate_buildtest.pl",
4530                    "stack",
4531                ],
4532            "test/buildtest_store.c" =>
4533                [
4534                    "test/generate_buildtest.pl",
4535                    "store",
4536                ],
4537            "test/buildtest_symhacks.c" =>
4538                [
4539                    "test/generate_buildtest.pl",
4540                    "symhacks",
4541                ],
4542            "test/buildtest_tls1.c" =>
4543                [
4544                    "test/generate_buildtest.pl",
4545                    "tls1",
4546                ],
4547            "test/buildtest_ts.c" =>
4548                [
4549                    "test/generate_buildtest.pl",
4550                    "ts",
4551                ],
4552            "test/buildtest_txt_db.c" =>
4553                [
4554                    "test/generate_buildtest.pl",
4555                    "txt_db",
4556                ],
4557            "test/buildtest_ui.c" =>
4558                [
4559                    "test/generate_buildtest.pl",
4560                    "ui",
4561                ],
4562            "test/buildtest_whrlpool.c" =>
4563                [
4564                    "test/generate_buildtest.pl",
4565                    "whrlpool",
4566                ],
4567            "test/buildtest_x509.c" =>
4568                [
4569                    "test/generate_buildtest.pl",
4570                    "x509",
4571                ],
4572            "test/buildtest_x509_vfy.c" =>
4573                [
4574                    "test/generate_buildtest.pl",
4575                    "x509_vfy",
4576                ],
4577            "test/buildtest_x509v3.c" =>
4578                [
4579                    "test/generate_buildtest.pl",
4580                    "x509v3",
4581                ],
4582        },
4583    "includes" =>
4584        {
4585            "apps/app_rand.o" =>
4586                [
4587                    ".",
4588                    "include",
4589                ],
4590            "apps/apps.o" =>
4591                [
4592                    ".",
4593                    "include",
4594                ],
4595            "apps/asn1pars.o" =>
4596                [
4597                    ".",
4598                    "include",
4599                    "apps",
4600                ],
4601            "apps/bf_prefix.o" =>
4602                [
4603                    ".",
4604                    "include",
4605                ],
4606            "apps/ca.o" =>
4607                [
4608                    ".",
4609                    "include",
4610                    "apps",
4611                ],
4612            "apps/ciphers.o" =>
4613                [
4614                    ".",
4615                    "include",
4616                    "apps",
4617                ],
4618            "apps/cms.o" =>
4619                [
4620                    ".",
4621                    "include",
4622                    "apps",
4623                ],
4624            "apps/crl.o" =>
4625                [
4626                    ".",
4627                    "include",
4628                    "apps",
4629                ],
4630            "apps/crl2p7.o" =>
4631                [
4632                    ".",
4633                    "include",
4634                    "apps",
4635                ],
4636            "apps/dgst.o" =>
4637                [
4638                    ".",
4639                    "include",
4640                    "apps",
4641                ],
4642            "apps/dhparam.o" =>
4643                [
4644                    ".",
4645                    "include",
4646                    "apps",
4647                ],
4648            "apps/dsa.o" =>
4649                [
4650                    ".",
4651                    "include",
4652                    "apps",
4653                ],
4654            "apps/dsaparam.o" =>
4655                [
4656                    ".",
4657                    "include",
4658                    "apps",
4659                ],
4660            "apps/ec.o" =>
4661                [
4662                    ".",
4663                    "include",
4664                    "apps",
4665                ],
4666            "apps/ecparam.o" =>
4667                [
4668                    ".",
4669                    "include",
4670                    "apps",
4671                ],
4672            "apps/enc.o" =>
4673                [
4674                    ".",
4675                    "include",
4676                    "apps",
4677                ],
4678            "apps/engine.o" =>
4679                [
4680                    ".",
4681                    "include",
4682                    "apps",
4683                ],
4684            "apps/errstr.o" =>
4685                [
4686                    ".",
4687                    "include",
4688                    "apps",
4689                ],
4690            "apps/gendsa.o" =>
4691                [
4692                    ".",
4693                    "include",
4694                    "apps",
4695                ],
4696            "apps/genpkey.o" =>
4697                [
4698                    ".",
4699                    "include",
4700                    "apps",
4701                ],
4702            "apps/genrsa.o" =>
4703                [
4704                    ".",
4705                    "include",
4706                    "apps",
4707                ],
4708            "apps/nseq.o" =>
4709                [
4710                    ".",
4711                    "include",
4712                    "apps",
4713                ],
4714            "apps/ocsp.o" =>
4715                [
4716                    ".",
4717                    "include",
4718                    "apps",
4719                ],
4720            "apps/openssl.o" =>
4721                [
4722                    ".",
4723                    "include",
4724                    "apps",
4725                ],
4726            "apps/opt.o" =>
4727                [
4728                    ".",
4729                    "include",
4730                ],
4731            "apps/passwd.o" =>
4732                [
4733                    ".",
4734                    "include",
4735                    "apps",
4736                ],
4737            "apps/pkcs12.o" =>
4738                [
4739                    ".",
4740                    "include",
4741                    "apps",
4742                ],
4743            "apps/pkcs7.o" =>
4744                [
4745                    ".",
4746                    "include",
4747                    "apps",
4748                ],
4749            "apps/pkcs8.o" =>
4750                [
4751                    ".",
4752                    "include",
4753                    "apps",
4754                ],
4755            "apps/pkey.o" =>
4756                [
4757                    ".",
4758                    "include",
4759                    "apps",
4760                ],
4761            "apps/pkeyparam.o" =>
4762                [
4763                    ".",
4764                    "include",
4765                    "apps",
4766                ],
4767            "apps/pkeyutl.o" =>
4768                [
4769                    ".",
4770                    "include",
4771                    "apps",
4772                ],
4773            "apps/prime.o" =>
4774                [
4775                    ".",
4776                    "include",
4777                    "apps",
4778                ],
4779            "apps/progs.h" =>
4780                [
4781                    ".",
4782                ],
4783            "apps/rand.o" =>
4784                [
4785                    ".",
4786                    "include",
4787                    "apps",
4788                ],
4789            "apps/rehash.o" =>
4790                [
4791                    ".",
4792                    "include",
4793                    "apps",
4794                ],
4795            "apps/req.o" =>
4796                [
4797                    ".",
4798                    "include",
4799                    "apps",
4800                ],
4801            "apps/rsa.o" =>
4802                [
4803                    ".",
4804                    "include",
4805                    "apps",
4806                ],
4807            "apps/rsautl.o" =>
4808                [
4809                    ".",
4810                    "include",
4811                    "apps",
4812                ],
4813            "apps/s_cb.o" =>
4814                [
4815                    ".",
4816                    "include",
4817                ],
4818            "apps/s_client.o" =>
4819                [
4820                    ".",
4821                    "include",
4822                    "apps",
4823                ],
4824            "apps/s_server.o" =>
4825                [
4826                    ".",
4827                    "include",
4828                    "apps",
4829                ],
4830            "apps/s_socket.o" =>
4831                [
4832                    ".",
4833                    "include",
4834                ],
4835            "apps/s_time.o" =>
4836                [
4837                    ".",
4838                    "include",
4839                    "apps",
4840                ],
4841            "apps/sess_id.o" =>
4842                [
4843                    ".",
4844                    "include",
4845                    "apps",
4846                ],
4847            "apps/smime.o" =>
4848                [
4849                    ".",
4850                    "include",
4851                    "apps",
4852                ],
4853            "apps/speed.o" =>
4854                [
4855                    ".",
4856                    "include",
4857                    "apps",
4858                ],
4859            "apps/spkac.o" =>
4860                [
4861                    ".",
4862                    "include",
4863                    "apps",
4864                ],
4865            "apps/srp.o" =>
4866                [
4867                    ".",
4868                    "include",
4869                    "apps",
4870                ],
4871            "apps/storeutl.o" =>
4872                [
4873                    ".",
4874                    "include",
4875                    "apps",
4876                ],
4877            "apps/ts.o" =>
4878                [
4879                    ".",
4880                    "include",
4881                    "apps",
4882                ],
4883            "apps/verify.o" =>
4884                [
4885                    ".",
4886                    "include",
4887                    "apps",
4888                ],
4889            "apps/version.o" =>
4890                [
4891                    ".",
4892                    "include",
4893                    "apps",
4894                ],
4895            "apps/x509.o" =>
4896                [
4897                    ".",
4898                    "include",
4899                    "apps",
4900                ],
4901            "crypto/aes/aes-armv4.o" =>
4902                [
4903                    "crypto",
4904                ],
4905            "crypto/aes/aes-mips.o" =>
4906                [
4907                    "crypto",
4908                ],
4909            "crypto/aes/aes-s390x.o" =>
4910                [
4911                    "crypto",
4912                ],
4913            "crypto/aes/aes-sparcv9.o" =>
4914                [
4915                    "crypto",
4916                ],
4917            "crypto/aes/aes_cbc.o" =>
4918                [
4919                    ".",
4920                    "include",
4921                ],
4922            "crypto/aes/aes_cfb.o" =>
4923                [
4924                    ".",
4925                    "include",
4926                ],
4927            "crypto/aes/aes_core.o" =>
4928                [
4929                    ".",
4930                    "include",
4931                ],
4932            "crypto/aes/aes_ecb.o" =>
4933                [
4934                    ".",
4935                    "include",
4936                ],
4937            "crypto/aes/aes_ige.o" =>
4938                [
4939                    ".",
4940                    "include",
4941                ],
4942            "crypto/aes/aes_misc.o" =>
4943                [
4944                    ".",
4945                    "include",
4946                ],
4947            "crypto/aes/aes_ofb.o" =>
4948                [
4949                    ".",
4950                    "include",
4951                ],
4952            "crypto/aes/aes_wrap.o" =>
4953                [
4954                    ".",
4955                    "include",
4956                ],
4957            "crypto/aes/aesfx-sparcv9.o" =>
4958                [
4959                    "crypto",
4960                ],
4961            "crypto/aes/aesni-mb-x86_64.o" =>
4962                [
4963                    ".",
4964                    "include",
4965                ],
4966            "crypto/aes/aesni-sha1-x86_64.o" =>
4967                [
4968                    ".",
4969                    "include",
4970                ],
4971            "crypto/aes/aesni-sha256-x86_64.o" =>
4972                [
4973                    ".",
4974                    "include",
4975                ],
4976            "crypto/aes/aesni-x86_64.o" =>
4977                [
4978                    ".",
4979                    "include",
4980                ],
4981            "crypto/aes/aest4-sparcv9.o" =>
4982                [
4983                    "crypto",
4984                ],
4985            "crypto/aes/aesv8-armx.o" =>
4986                [
4987                    "crypto",
4988                ],
4989            "crypto/aes/bsaes-armv7.o" =>
4990                [
4991                    "crypto",
4992                ],
4993            "crypto/aes/vpaes-x86_64.o" =>
4994                [
4995                    ".",
4996                    "include",
4997                ],
4998            "crypto/aria/aria.o" =>
4999                [
5000                    ".",
5001                    "include",
5002                ],
5003            "crypto/arm64cpuid.o" =>
5004                [
5005                    "crypto",
5006                ],
5007            "crypto/armv4cpuid.o" =>
5008                [
5009                    "crypto",
5010                ],
5011            "crypto/asn1/a_bitstr.o" =>
5012                [
5013                    ".",
5014                    "include",
5015                ],
5016            "crypto/asn1/a_d2i_fp.o" =>
5017                [
5018                    ".",
5019                    "include",
5020                ],
5021            "crypto/asn1/a_digest.o" =>
5022                [
5023                    ".",
5024                    "include",
5025                ],
5026            "crypto/asn1/a_dup.o" =>
5027                [
5028                    ".",
5029                    "include",
5030                ],
5031            "crypto/asn1/a_gentm.o" =>
5032                [
5033                    ".",
5034                    "include",
5035                ],
5036            "crypto/asn1/a_i2d_fp.o" =>
5037                [
5038                    ".",
5039                    "include",
5040                ],
5041            "crypto/asn1/a_int.o" =>
5042                [
5043                    ".",
5044                    "include",
5045                ],
5046            "crypto/asn1/a_mbstr.o" =>
5047                [
5048                    ".",
5049                    "include",
5050                ],
5051            "crypto/asn1/a_object.o" =>
5052                [
5053                    ".",
5054                    "include",
5055                ],
5056            "crypto/asn1/a_octet.o" =>
5057                [
5058                    ".",
5059                    "include",
5060                ],
5061            "crypto/asn1/a_print.o" =>
5062                [
5063                    ".",
5064                    "include",
5065                ],
5066            "crypto/asn1/a_sign.o" =>
5067                [
5068                    ".",
5069                    "include",
5070                ],
5071            "crypto/asn1/a_strex.o" =>
5072                [
5073                    ".",
5074                    "include",
5075                ],
5076            "crypto/asn1/a_strnid.o" =>
5077                [
5078                    ".",
5079                    "include",
5080                ],
5081            "crypto/asn1/a_time.o" =>
5082                [
5083                    ".",
5084                    "include",
5085                ],
5086            "crypto/asn1/a_type.o" =>
5087                [
5088                    ".",
5089                    "include",
5090                ],
5091            "crypto/asn1/a_utctm.o" =>
5092                [
5093                    ".",
5094                    "include",
5095                ],
5096            "crypto/asn1/a_utf8.o" =>
5097                [
5098                    ".",
5099                    "include",
5100                ],
5101            "crypto/asn1/a_verify.o" =>
5102                [
5103                    ".",
5104                    "include",
5105                ],
5106            "crypto/asn1/ameth_lib.o" =>
5107                [
5108                    ".",
5109                    "include",
5110                ],
5111            "crypto/asn1/asn1_err.o" =>
5112                [
5113                    ".",
5114                    "include",
5115                ],
5116            "crypto/asn1/asn1_gen.o" =>
5117                [
5118                    ".",
5119                    "include",
5120                ],
5121            "crypto/asn1/asn1_item_list.o" =>
5122                [
5123                    ".",
5124                    "include",
5125                ],
5126            "crypto/asn1/asn1_lib.o" =>
5127                [
5128                    ".",
5129                    "include",
5130                ],
5131            "crypto/asn1/asn1_par.o" =>
5132                [
5133                    ".",
5134                    "include",
5135                ],
5136            "crypto/asn1/asn_mime.o" =>
5137                [
5138                    ".",
5139                    "include",
5140                ],
5141            "crypto/asn1/asn_moid.o" =>
5142                [
5143                    ".",
5144                    "include",
5145                ],
5146            "crypto/asn1/asn_mstbl.o" =>
5147                [
5148                    ".",
5149                    "include",
5150                ],
5151            "crypto/asn1/asn_pack.o" =>
5152                [
5153                    ".",
5154                    "include",
5155                ],
5156            "crypto/asn1/bio_asn1.o" =>
5157                [
5158                    ".",
5159                    "include",
5160                ],
5161            "crypto/asn1/bio_ndef.o" =>
5162                [
5163                    ".",
5164                    "include",
5165                ],
5166            "crypto/asn1/d2i_pr.o" =>
5167                [
5168                    ".",
5169                    "include",
5170                ],
5171            "crypto/asn1/d2i_pu.o" =>
5172                [
5173                    ".",
5174                    "include",
5175                ],
5176            "crypto/asn1/evp_asn1.o" =>
5177                [
5178                    ".",
5179                    "include",
5180                ],
5181            "crypto/asn1/f_int.o" =>
5182                [
5183                    ".",
5184                    "include",
5185                ],
5186            "crypto/asn1/f_string.o" =>
5187                [
5188                    ".",
5189                    "include",
5190                ],
5191            "crypto/asn1/i2d_pr.o" =>
5192                [
5193                    ".",
5194                    "include",
5195                ],
5196            "crypto/asn1/i2d_pu.o" =>
5197                [
5198                    ".",
5199                    "include",
5200                ],
5201            "crypto/asn1/n_pkey.o" =>
5202                [
5203                    ".",
5204                    "include",
5205                ],
5206            "crypto/asn1/nsseq.o" =>
5207                [
5208                    ".",
5209                    "include",
5210                ],
5211            "crypto/asn1/p5_pbe.o" =>
5212                [
5213                    ".",
5214                    "include",
5215                ],
5216            "crypto/asn1/p5_pbev2.o" =>
5217                [
5218                    ".",
5219                    "include",
5220                ],
5221            "crypto/asn1/p5_scrypt.o" =>
5222                [
5223                    ".",
5224                    "include",
5225                ],
5226            "crypto/asn1/p8_pkey.o" =>
5227                [
5228                    ".",
5229                    "include",
5230                ],
5231            "crypto/asn1/t_bitst.o" =>
5232                [
5233                    ".",
5234                    "include",
5235                ],
5236            "crypto/asn1/t_pkey.o" =>
5237                [
5238                    ".",
5239                    "include",
5240                ],
5241            "crypto/asn1/t_spki.o" =>
5242                [
5243                    ".",
5244                    "include",
5245                ],
5246            "crypto/asn1/tasn_dec.o" =>
5247                [
5248                    ".",
5249                    "include",
5250                ],
5251            "crypto/asn1/tasn_enc.o" =>
5252                [
5253                    ".",
5254                    "include",
5255                ],
5256            "crypto/asn1/tasn_fre.o" =>
5257                [
5258                    ".",
5259                    "include",
5260                ],
5261            "crypto/asn1/tasn_new.o" =>
5262                [
5263                    ".",
5264                    "include",
5265                ],
5266            "crypto/asn1/tasn_prn.o" =>
5267                [
5268                    ".",
5269                    "include",
5270                ],
5271            "crypto/asn1/tasn_scn.o" =>
5272                [
5273                    ".",
5274                    "include",
5275                ],
5276            "crypto/asn1/tasn_typ.o" =>
5277                [
5278                    ".",
5279                    "include",
5280                ],
5281            "crypto/asn1/tasn_utl.o" =>
5282                [
5283                    ".",
5284                    "include",
5285                ],
5286            "crypto/asn1/x_algor.o" =>
5287                [
5288                    ".",
5289                    "include",
5290                ],
5291            "crypto/asn1/x_bignum.o" =>
5292                [
5293                    ".",
5294                    "include",
5295                ],
5296            "crypto/asn1/x_info.o" =>
5297                [
5298                    ".",
5299                    "include",
5300                ],
5301            "crypto/asn1/x_int64.o" =>
5302                [
5303                    ".",
5304                    "include",
5305                ],
5306            "crypto/asn1/x_long.o" =>
5307                [
5308                    ".",
5309                    "include",
5310                ],
5311            "crypto/asn1/x_pkey.o" =>
5312                [
5313                    ".",
5314                    "include",
5315                ],
5316            "crypto/asn1/x_sig.o" =>
5317                [
5318                    ".",
5319                    "include",
5320                ],
5321            "crypto/asn1/x_spki.o" =>
5322                [
5323                    ".",
5324                    "include",
5325                ],
5326            "crypto/asn1/x_val.o" =>
5327                [
5328                    ".",
5329                    "include",
5330                ],
5331            "crypto/async/arch/async_null.o" =>
5332                [
5333                    ".",
5334                    "include",
5335                ],
5336            "crypto/async/arch/async_posix.o" =>
5337                [
5338                    ".",
5339                    "include",
5340                ],
5341            "crypto/async/arch/async_win.o" =>
5342                [
5343                    ".",
5344                    "include",
5345                ],
5346            "crypto/async/async.o" =>
5347                [
5348                    ".",
5349                    "include",
5350                ],
5351            "crypto/async/async_err.o" =>
5352                [
5353                    ".",
5354                    "include",
5355                ],
5356            "crypto/async/async_wait.o" =>
5357                [
5358                    ".",
5359                    "include",
5360                ],
5361            "crypto/bf/bf_cfb64.o" =>
5362                [
5363                    ".",
5364                    "include",
5365                ],
5366            "crypto/bf/bf_ecb.o" =>
5367                [
5368                    ".",
5369                    "include",
5370                ],
5371            "crypto/bf/bf_enc.o" =>
5372                [
5373                    ".",
5374                    "include",
5375                ],
5376            "crypto/bf/bf_ofb64.o" =>
5377                [
5378                    ".",
5379                    "include",
5380                ],
5381            "crypto/bf/bf_skey.o" =>
5382                [
5383                    ".",
5384                    "include",
5385                ],
5386            "crypto/bio/b_addr.o" =>
5387                [
5388                    ".",
5389                    "include",
5390                ],
5391            "crypto/bio/b_dump.o" =>
5392                [
5393                    ".",
5394                    "include",
5395                ],
5396            "crypto/bio/b_print.o" =>
5397                [
5398                    ".",
5399                    "include",
5400                ],
5401            "crypto/bio/b_sock.o" =>
5402                [
5403                    ".",
5404                    "include",
5405                ],
5406            "crypto/bio/b_sock2.o" =>
5407                [
5408                    ".",
5409                    "include",
5410                ],
5411            "crypto/bio/bf_buff.o" =>
5412                [
5413                    ".",
5414                    "include",
5415                ],
5416            "crypto/bio/bf_lbuf.o" =>
5417                [
5418                    ".",
5419                    "include",
5420                ],
5421            "crypto/bio/bf_nbio.o" =>
5422                [
5423                    ".",
5424                    "include",
5425                ],
5426            "crypto/bio/bf_null.o" =>
5427                [
5428                    ".",
5429                    "include",
5430                ],
5431            "crypto/bio/bio_cb.o" =>
5432                [
5433                    ".",
5434                    "include",
5435                ],
5436            "crypto/bio/bio_err.o" =>
5437                [
5438                    ".",
5439                    "include",
5440                ],
5441            "crypto/bio/bio_lib.o" =>
5442                [
5443                    ".",
5444                    "include",
5445                ],
5446            "crypto/bio/bio_meth.o" =>
5447                [
5448                    ".",
5449                    "include",
5450                ],
5451            "crypto/bio/bss_acpt.o" =>
5452                [
5453                    ".",
5454                    "include",
5455                ],
5456            "crypto/bio/bss_bio.o" =>
5457                [
5458                    ".",
5459                    "include",
5460                ],
5461            "crypto/bio/bss_conn.o" =>
5462                [
5463                    ".",
5464                    "include",
5465                ],
5466            "crypto/bio/bss_dgram.o" =>
5467                [
5468                    ".",
5469                    "include",
5470                ],
5471            "crypto/bio/bss_fd.o" =>
5472                [
5473                    ".",
5474                    "include",
5475                ],
5476            "crypto/bio/bss_file.o" =>
5477                [
5478                    ".",
5479                    "include",
5480                ],
5481            "crypto/bio/bss_log.o" =>
5482                [
5483                    ".",
5484                    "include",
5485                ],
5486            "crypto/bio/bss_mem.o" =>
5487                [
5488                    ".",
5489                    "include",
5490                ],
5491            "crypto/bio/bss_null.o" =>
5492                [
5493                    ".",
5494                    "include",
5495                ],
5496            "crypto/bio/bss_sock.o" =>
5497                [
5498                    ".",
5499                    "include",
5500                ],
5501            "crypto/blake2/blake2b.o" =>
5502                [
5503                    ".",
5504                    "include",
5505                ],
5506            "crypto/blake2/blake2s.o" =>
5507                [
5508                    ".",
5509                    "include",
5510                ],
5511            "crypto/blake2/m_blake2b.o" =>
5512                [
5513                    ".",
5514                    "include",
5515                ],
5516            "crypto/blake2/m_blake2s.o" =>
5517                [
5518                    ".",
5519                    "include",
5520                ],
5521            "crypto/bn/armv4-gf2m.o" =>
5522                [
5523                    "crypto",
5524                ],
5525            "crypto/bn/armv4-mont.o" =>
5526                [
5527                    "crypto",
5528                ],
5529            "crypto/bn/asm/x86_64-gcc.o" =>
5530                [
5531                    ".",
5532                    "include",
5533                ],
5534            "crypto/bn/bn-mips.o" =>
5535                [
5536                    "crypto",
5537                ],
5538            "crypto/bn/bn_add.o" =>
5539                [
5540                    ".",
5541                    "include",
5542                ],
5543            "crypto/bn/bn_blind.o" =>
5544                [
5545                    ".",
5546                    "include",
5547                ],
5548            "crypto/bn/bn_const.o" =>
5549                [
5550                    ".",
5551                    "include",
5552                ],
5553            "crypto/bn/bn_ctx.o" =>
5554                [
5555                    ".",
5556                    "include",
5557                ],
5558            "crypto/bn/bn_depr.o" =>
5559                [
5560                    ".",
5561                    "include",
5562                ],
5563            "crypto/bn/bn_dh.o" =>
5564                [
5565                    ".",
5566                    "include",
5567                ],
5568            "crypto/bn/bn_div.o" =>
5569                [
5570                    ".",
5571                    "include",
5572                ],
5573            "crypto/bn/bn_err.o" =>
5574                [
5575                    ".",
5576                    "include",
5577                ],
5578            "crypto/bn/bn_exp.o" =>
5579                [
5580                    ".",
5581                    "include",
5582                    "crypto",
5583                ],
5584            "crypto/bn/bn_exp2.o" =>
5585                [
5586                    ".",
5587                    "include",
5588                ],
5589            "crypto/bn/bn_gcd.o" =>
5590                [
5591                    ".",
5592                    "include",
5593                ],
5594            "crypto/bn/bn_gf2m.o" =>
5595                [
5596                    ".",
5597                    "include",
5598                ],
5599            "crypto/bn/bn_intern.o" =>
5600                [
5601                    ".",
5602                    "include",
5603                ],
5604            "crypto/bn/bn_kron.o" =>
5605                [
5606                    ".",
5607                    "include",
5608                ],
5609            "crypto/bn/bn_lib.o" =>
5610                [
5611                    ".",
5612                    "include",
5613                ],
5614            "crypto/bn/bn_mod.o" =>
5615                [
5616                    ".",
5617                    "include",
5618                ],
5619            "crypto/bn/bn_mont.o" =>
5620                [
5621                    ".",
5622                    "include",
5623                ],
5624            "crypto/bn/bn_mpi.o" =>
5625                [
5626                    ".",
5627                    "include",
5628                ],
5629            "crypto/bn/bn_mul.o" =>
5630                [
5631                    ".",
5632                    "include",
5633                ],
5634            "crypto/bn/bn_nist.o" =>
5635                [
5636                    ".",
5637                    "include",
5638                ],
5639            "crypto/bn/bn_prime.o" =>
5640                [
5641                    ".",
5642                    "include",
5643                ],
5644            "crypto/bn/bn_print.o" =>
5645                [
5646                    ".",
5647                    "include",
5648                ],
5649            "crypto/bn/bn_rand.o" =>
5650                [
5651                    ".",
5652                    "include",
5653                ],
5654            "crypto/bn/bn_recp.o" =>
5655                [
5656                    ".",
5657                    "include",
5658                ],
5659            "crypto/bn/bn_shift.o" =>
5660                [
5661                    ".",
5662                    "include",
5663                ],
5664            "crypto/bn/bn_sqr.o" =>
5665                [
5666                    ".",
5667                    "include",
5668                ],
5669            "crypto/bn/bn_sqrt.o" =>
5670                [
5671                    ".",
5672                    "include",
5673                ],
5674            "crypto/bn/bn_srp.o" =>
5675                [
5676                    ".",
5677                    "include",
5678                ],
5679            "crypto/bn/bn_word.o" =>
5680                [
5681                    ".",
5682                    "include",
5683                ],
5684            "crypto/bn/bn_x931p.o" =>
5685                [
5686                    ".",
5687                    "include",
5688                ],
5689            "crypto/bn/mips-mont.o" =>
5690                [
5691                    "crypto",
5692                ],
5693            "crypto/bn/rsaz-avx2.o" =>
5694                [
5695                    ".",
5696                    "include",
5697                ],
5698            "crypto/bn/rsaz-x86_64.o" =>
5699                [
5700                    ".",
5701                    "include",
5702                ],
5703            "crypto/bn/rsaz_exp.o" =>
5704                [
5705                    ".",
5706                    "include",
5707                ],
5708            "crypto/bn/sparct4-mont.o" =>
5709                [
5710                    "crypto",
5711                ],
5712            "crypto/bn/sparcv9-gf2m.o" =>
5713                [
5714                    "crypto",
5715                ],
5716            "crypto/bn/sparcv9-mont.o" =>
5717                [
5718                    "crypto",
5719                ],
5720            "crypto/bn/sparcv9a-mont.o" =>
5721                [
5722                    "crypto",
5723                ],
5724            "crypto/bn/vis3-mont.o" =>
5725                [
5726                    "crypto",
5727                ],
5728            "crypto/bn/x86_64-gf2m.o" =>
5729                [
5730                    ".",
5731                    "include",
5732                ],
5733            "crypto/bn/x86_64-mont.o" =>
5734                [
5735                    ".",
5736                    "include",
5737                ],
5738            "crypto/bn/x86_64-mont5.o" =>
5739                [
5740                    ".",
5741                    "include",
5742                ],
5743            "crypto/buffer/buf_err.o" =>
5744                [
5745                    ".",
5746                    "include",
5747                ],
5748            "crypto/buffer/buffer.o" =>
5749                [
5750                    ".",
5751                    "include",
5752                ],
5753            "crypto/buildinf.h" =>
5754                [
5755                    ".",
5756                ],
5757            "crypto/camellia/cmll-x86_64.o" =>
5758                [
5759                    ".",
5760                    "include",
5761                ],
5762            "crypto/camellia/cmll_cfb.o" =>
5763                [
5764                    ".",
5765                    "include",
5766                ],
5767            "crypto/camellia/cmll_ctr.o" =>
5768                [
5769                    ".",
5770                    "include",
5771                ],
5772            "crypto/camellia/cmll_ecb.o" =>
5773                [
5774                    ".",
5775                    "include",
5776                ],
5777            "crypto/camellia/cmll_misc.o" =>
5778                [
5779                    ".",
5780                    "include",
5781                ],
5782            "crypto/camellia/cmll_ofb.o" =>
5783                [
5784                    ".",
5785                    "include",
5786                ],
5787            "crypto/camellia/cmllt4-sparcv9.o" =>
5788                [
5789                    "crypto",
5790                ],
5791            "crypto/cast/c_cfb64.o" =>
5792                [
5793                    ".",
5794                    "include",
5795                ],
5796            "crypto/cast/c_ecb.o" =>
5797                [
5798                    ".",
5799                    "include",
5800                ],
5801            "crypto/cast/c_enc.o" =>
5802                [
5803                    ".",
5804                    "include",
5805                ],
5806            "crypto/cast/c_ofb64.o" =>
5807                [
5808                    ".",
5809                    "include",
5810                ],
5811            "crypto/cast/c_skey.o" =>
5812                [
5813                    ".",
5814                    "include",
5815                ],
5816            "crypto/chacha/chacha-armv4.o" =>
5817                [
5818                    "crypto",
5819                ],
5820            "crypto/chacha/chacha-armv8.o" =>
5821                [
5822                    "crypto",
5823                ],
5824            "crypto/chacha/chacha-s390x.o" =>
5825                [
5826                    "crypto",
5827                ],
5828            "crypto/chacha/chacha-x86_64.o" =>
5829                [
5830                    ".",
5831                    "include",
5832                ],
5833            "crypto/cmac/cm_ameth.o" =>
5834                [
5835                    ".",
5836                    "include",
5837                ],
5838            "crypto/cmac/cm_pmeth.o" =>
5839                [
5840                    ".",
5841                    "include",
5842                ],
5843            "crypto/cmac/cmac.o" =>
5844                [
5845                    ".",
5846                    "include",
5847                ],
5848            "crypto/cms/cms_asn1.o" =>
5849                [
5850                    ".",
5851                    "include",
5852                ],
5853            "crypto/cms/cms_att.o" =>
5854                [
5855                    ".",
5856                    "include",
5857                ],
5858            "crypto/cms/cms_cd.o" =>
5859                [
5860                    ".",
5861                    "include",
5862                ],
5863            "crypto/cms/cms_dd.o" =>
5864                [
5865                    ".",
5866                    "include",
5867                ],
5868            "crypto/cms/cms_enc.o" =>
5869                [
5870                    ".",
5871                    "include",
5872                ],
5873            "crypto/cms/cms_env.o" =>
5874                [
5875                    ".",
5876                    "include",
5877                ],
5878            "crypto/cms/cms_err.o" =>
5879                [
5880                    ".",
5881                    "include",
5882                ],
5883            "crypto/cms/cms_ess.o" =>
5884                [
5885                    ".",
5886                    "include",
5887                ],
5888            "crypto/cms/cms_io.o" =>
5889                [
5890                    ".",
5891                    "include",
5892                ],
5893            "crypto/cms/cms_kari.o" =>
5894                [
5895                    ".",
5896                    "include",
5897                ],
5898            "crypto/cms/cms_lib.o" =>
5899                [
5900                    ".",
5901                    "include",
5902                ],
5903            "crypto/cms/cms_pwri.o" =>
5904                [
5905                    ".",
5906                    "include",
5907                ],
5908            "crypto/cms/cms_sd.o" =>
5909                [
5910                    ".",
5911                    "include",
5912                ],
5913            "crypto/cms/cms_smime.o" =>
5914                [
5915                    ".",
5916                    "include",
5917                ],
5918            "crypto/conf/conf_api.o" =>
5919                [
5920                    ".",
5921                    "include",
5922                ],
5923            "crypto/conf/conf_def.o" =>
5924                [
5925                    ".",
5926                    "include",
5927                ],
5928            "crypto/conf/conf_err.o" =>
5929                [
5930                    ".",
5931                    "include",
5932                ],
5933            "crypto/conf/conf_lib.o" =>
5934                [
5935                    ".",
5936                    "include",
5937                ],
5938            "crypto/conf/conf_mall.o" =>
5939                [
5940                    ".",
5941                    "include",
5942                ],
5943            "crypto/conf/conf_mod.o" =>
5944                [
5945                    ".",
5946                    "include",
5947                ],
5948            "crypto/conf/conf_sap.o" =>
5949                [
5950                    ".",
5951                    "include",
5952                ],
5953            "crypto/conf/conf_ssl.o" =>
5954                [
5955                    ".",
5956                    "include",
5957                ],
5958            "crypto/cpt_err.o" =>
5959                [
5960                    ".",
5961                    "include",
5962                ],
5963            "crypto/cryptlib.o" =>
5964                [
5965                    ".",
5966                    "include",
5967                ],
5968            "crypto/ct/ct_b64.o" =>
5969                [
5970                    ".",
5971                    "include",
5972                ],
5973            "crypto/ct/ct_err.o" =>
5974                [
5975                    ".",
5976                    "include",
5977                ],
5978            "crypto/ct/ct_log.o" =>
5979                [
5980                    ".",
5981                    "include",
5982                ],
5983            "crypto/ct/ct_oct.o" =>
5984                [
5985                    ".",
5986                    "include",
5987                ],
5988            "crypto/ct/ct_policy.o" =>
5989                [
5990                    ".",
5991                    "include",
5992                ],
5993            "crypto/ct/ct_prn.o" =>
5994                [
5995                    ".",
5996                    "include",
5997                ],
5998            "crypto/ct/ct_sct.o" =>
5999                [
6000                    ".",
6001                    "include",
6002                ],
6003            "crypto/ct/ct_sct_ctx.o" =>
6004                [
6005                    ".",
6006                    "include",
6007                ],
6008            "crypto/ct/ct_vfy.o" =>
6009                [
6010                    ".",
6011                    "include",
6012                ],
6013            "crypto/ct/ct_x509v3.o" =>
6014                [
6015                    ".",
6016                    "include",
6017                ],
6018            "crypto/ctype.o" =>
6019                [
6020                    ".",
6021                    "include",
6022                ],
6023            "crypto/cversion.o" =>
6024                [
6025                    ".",
6026                    "include",
6027                    "crypto",
6028                ],
6029            "crypto/des/cbc_cksm.o" =>
6030                [
6031                    ".",
6032                    "include",
6033                ],
6034            "crypto/des/cbc_enc.o" =>
6035                [
6036                    ".",
6037                    "include",
6038                ],
6039            "crypto/des/cfb64ede.o" =>
6040                [
6041                    ".",
6042                    "include",
6043                ],
6044            "crypto/des/cfb64enc.o" =>
6045                [
6046                    ".",
6047                    "include",
6048                ],
6049            "crypto/des/cfb_enc.o" =>
6050                [
6051                    ".",
6052                    "include",
6053                ],
6054            "crypto/des/des_enc.o" =>
6055                [
6056                    ".",
6057                    "include",
6058                ],
6059            "crypto/des/dest4-sparcv9.o" =>
6060                [
6061                    "crypto",
6062                ],
6063            "crypto/des/ecb3_enc.o" =>
6064                [
6065                    ".",
6066                    "include",
6067                ],
6068            "crypto/des/ecb_enc.o" =>
6069                [
6070                    ".",
6071                    "include",
6072                ],
6073            "crypto/des/fcrypt.o" =>
6074                [
6075                    ".",
6076                    "include",
6077                ],
6078            "crypto/des/fcrypt_b.o" =>
6079                [
6080                    ".",
6081                    "include",
6082                ],
6083            "crypto/des/ofb64ede.o" =>
6084                [
6085                    ".",
6086                    "include",
6087                ],
6088            "crypto/des/ofb64enc.o" =>
6089                [
6090                    ".",
6091                    "include",
6092                ],
6093            "crypto/des/ofb_enc.o" =>
6094                [
6095                    ".",
6096                    "include",
6097                ],
6098            "crypto/des/pcbc_enc.o" =>
6099                [
6100                    ".",
6101                    "include",
6102                ],
6103            "crypto/des/qud_cksm.o" =>
6104                [
6105                    ".",
6106                    "include",
6107                ],
6108            "crypto/des/rand_key.o" =>
6109                [
6110                    ".",
6111                    "include",
6112                ],
6113            "crypto/des/set_key.o" =>
6114                [
6115                    ".",
6116                    "include",
6117                ],
6118            "crypto/des/str2key.o" =>
6119                [
6120                    ".",
6121                    "include",
6122                ],
6123            "crypto/des/xcbc_enc.o" =>
6124                [
6125                    ".",
6126                    "include",
6127                ],
6128            "crypto/dh/dh_ameth.o" =>
6129                [
6130                    ".",
6131                    "include",
6132                ],
6133            "crypto/dh/dh_asn1.o" =>
6134                [
6135                    ".",
6136                    "include",
6137                ],
6138            "crypto/dh/dh_check.o" =>
6139                [
6140                    ".",
6141                    "include",
6142                ],
6143            "crypto/dh/dh_depr.o" =>
6144                [
6145                    ".",
6146                    "include",
6147                ],
6148            "crypto/dh/dh_err.o" =>
6149                [
6150                    ".",
6151                    "include",
6152                ],
6153            "crypto/dh/dh_gen.o" =>
6154                [
6155                    ".",
6156                    "include",
6157                ],
6158            "crypto/dh/dh_kdf.o" =>
6159                [
6160                    ".",
6161                    "include",
6162                ],
6163            "crypto/dh/dh_key.o" =>
6164                [
6165                    ".",
6166                    "include",
6167                ],
6168            "crypto/dh/dh_lib.o" =>
6169                [
6170                    ".",
6171                    "include",
6172                ],
6173            "crypto/dh/dh_meth.o" =>
6174                [
6175                    ".",
6176                    "include",
6177                ],
6178            "crypto/dh/dh_pmeth.o" =>
6179                [
6180                    ".",
6181                    "include",
6182                ],
6183            "crypto/dh/dh_prn.o" =>
6184                [
6185                    ".",
6186                    "include",
6187                ],
6188            "crypto/dh/dh_rfc5114.o" =>
6189                [
6190                    ".",
6191                    "include",
6192                ],
6193            "crypto/dh/dh_rfc7919.o" =>
6194                [
6195                    ".",
6196                    "include",
6197                ],
6198            "crypto/dsa/dsa_ameth.o" =>
6199                [
6200                    ".",
6201                    "include",
6202                ],
6203            "crypto/dsa/dsa_asn1.o" =>
6204                [
6205                    ".",
6206                    "include",
6207                ],
6208            "crypto/dsa/dsa_depr.o" =>
6209                [
6210                    ".",
6211                    "include",
6212                ],
6213            "crypto/dsa/dsa_err.o" =>
6214                [
6215                    ".",
6216                    "include",
6217                ],
6218            "crypto/dsa/dsa_gen.o" =>
6219                [
6220                    ".",
6221                    "include",
6222                ],
6223            "crypto/dsa/dsa_key.o" =>
6224                [
6225                    ".",
6226                    "include",
6227                ],
6228            "crypto/dsa/dsa_lib.o" =>
6229                [
6230                    ".",
6231                    "include",
6232                ],
6233            "crypto/dsa/dsa_meth.o" =>
6234                [
6235                    ".",
6236                    "include",
6237                ],
6238            "crypto/dsa/dsa_ossl.o" =>
6239                [
6240                    ".",
6241                    "include",
6242                ],
6243            "crypto/dsa/dsa_pmeth.o" =>
6244                [
6245                    ".",
6246                    "include",
6247                ],
6248            "crypto/dsa/dsa_prn.o" =>
6249                [
6250                    ".",
6251                    "include",
6252                ],
6253            "crypto/dsa/dsa_sign.o" =>
6254                [
6255                    ".",
6256                    "include",
6257                ],
6258            "crypto/dsa/dsa_vrf.o" =>
6259                [
6260                    ".",
6261                    "include",
6262                ],
6263            "crypto/dso/dso_dl.o" =>
6264                [
6265                    ".",
6266                    "include",
6267                ],
6268            "crypto/dso/dso_dlfcn.o" =>
6269                [
6270                    ".",
6271                    "include",
6272                ],
6273            "crypto/dso/dso_err.o" =>
6274                [
6275                    ".",
6276                    "include",
6277                ],
6278            "crypto/dso/dso_lib.o" =>
6279                [
6280                    ".",
6281                    "include",
6282                ],
6283            "crypto/dso/dso_openssl.o" =>
6284                [
6285                    ".",
6286                    "include",
6287                ],
6288            "crypto/dso/dso_vms.o" =>
6289                [
6290                    ".",
6291                    "include",
6292                ],
6293            "crypto/dso/dso_win32.o" =>
6294                [
6295                    ".",
6296                    "include",
6297                ],
6298            "crypto/ebcdic.o" =>
6299                [
6300                    ".",
6301                    "include",
6302                ],
6303            "crypto/ec/curve25519.o" =>
6304                [
6305                    ".",
6306                    "include",
6307                ],
6308            "crypto/ec/curve448/arch_32/f_impl.o" =>
6309                [
6310                    ".",
6311                    "include",
6312                    "crypto/ec/curve448/arch_32",
6313                    "crypto/ec/curve448",
6314                ],
6315            "crypto/ec/curve448/curve448.o" =>
6316                [
6317                    ".",
6318                    "include",
6319                    "crypto/ec/curve448/arch_32",
6320                    "crypto/ec/curve448",
6321                ],
6322            "crypto/ec/curve448/curve448_tables.o" =>
6323                [
6324                    ".",
6325                    "include",
6326                    "crypto/ec/curve448/arch_32",
6327                    "crypto/ec/curve448",
6328                ],
6329            "crypto/ec/curve448/eddsa.o" =>
6330                [
6331                    ".",
6332                    "include",
6333                    "crypto/ec/curve448/arch_32",
6334                    "crypto/ec/curve448",
6335                ],
6336            "crypto/ec/curve448/f_generic.o" =>
6337                [
6338                    ".",
6339                    "include",
6340                    "crypto/ec/curve448/arch_32",
6341                    "crypto/ec/curve448",
6342                ],
6343            "crypto/ec/curve448/scalar.o" =>
6344                [
6345                    ".",
6346                    "include",
6347                    "crypto/ec/curve448/arch_32",
6348                    "crypto/ec/curve448",
6349                ],
6350            "crypto/ec/ec2_oct.o" =>
6351                [
6352                    ".",
6353                    "include",
6354                ],
6355            "crypto/ec/ec2_smpl.o" =>
6356                [
6357                    ".",
6358                    "include",
6359                ],
6360            "crypto/ec/ec_ameth.o" =>
6361                [
6362                    ".",
6363                    "include",
6364                ],
6365            "crypto/ec/ec_asn1.o" =>
6366                [
6367                    ".",
6368                    "include",
6369                ],
6370            "crypto/ec/ec_check.o" =>
6371                [
6372                    ".",
6373                    "include",
6374                ],
6375            "crypto/ec/ec_curve.o" =>
6376                [
6377                    ".",
6378                    "include",
6379                ],
6380            "crypto/ec/ec_cvt.o" =>
6381                [
6382                    ".",
6383                    "include",
6384                ],
6385            "crypto/ec/ec_err.o" =>
6386                [
6387                    ".",
6388                    "include",
6389                ],
6390            "crypto/ec/ec_key.o" =>
6391                [
6392                    ".",
6393                    "include",
6394                ],
6395            "crypto/ec/ec_kmeth.o" =>
6396                [
6397                    ".",
6398                    "include",
6399                ],
6400            "crypto/ec/ec_lib.o" =>
6401                [
6402                    ".",
6403                    "include",
6404                ],
6405            "crypto/ec/ec_mult.o" =>
6406                [
6407                    ".",
6408                    "include",
6409                ],
6410            "crypto/ec/ec_oct.o" =>
6411                [
6412                    ".",
6413                    "include",
6414                ],
6415            "crypto/ec/ec_pmeth.o" =>
6416                [
6417                    ".",
6418                    "include",
6419                ],
6420            "crypto/ec/ec_print.o" =>
6421                [
6422                    ".",
6423                    "include",
6424                ],
6425            "crypto/ec/ecdh_kdf.o" =>
6426                [
6427                    ".",
6428                    "include",
6429                ],
6430            "crypto/ec/ecdh_ossl.o" =>
6431                [
6432                    ".",
6433                    "include",
6434                ],
6435            "crypto/ec/ecdsa_ossl.o" =>
6436                [
6437                    ".",
6438                    "include",
6439                ],
6440            "crypto/ec/ecdsa_sign.o" =>
6441                [
6442                    ".",
6443                    "include",
6444                ],
6445            "crypto/ec/ecdsa_vrf.o" =>
6446                [
6447                    ".",
6448                    "include",
6449                ],
6450            "crypto/ec/eck_prn.o" =>
6451                [
6452                    ".",
6453                    "include",
6454                ],
6455            "crypto/ec/ecp_mont.o" =>
6456                [
6457                    ".",
6458                    "include",
6459                ],
6460            "crypto/ec/ecp_nist.o" =>
6461                [
6462                    ".",
6463                    "include",
6464                ],
6465            "crypto/ec/ecp_nistp224.o" =>
6466                [
6467                    ".",
6468                    "include",
6469                ],
6470            "crypto/ec/ecp_nistp256.o" =>
6471                [
6472                    ".",
6473                    "include",
6474                ],
6475            "crypto/ec/ecp_nistp521.o" =>
6476                [
6477                    ".",
6478                    "include",
6479                ],
6480            "crypto/ec/ecp_nistputil.o" =>
6481                [
6482                    ".",
6483                    "include",
6484                ],
6485            "crypto/ec/ecp_nistz256-armv4.o" =>
6486                [
6487                    "crypto",
6488                ],
6489            "crypto/ec/ecp_nistz256-armv8.o" =>
6490                [
6491                    "crypto",
6492                ],
6493            "crypto/ec/ecp_nistz256-sparcv9.o" =>
6494                [
6495                    "crypto",
6496                ],
6497            "crypto/ec/ecp_nistz256-x86_64.o" =>
6498                [
6499                    ".",
6500                    "include",
6501                ],
6502            "crypto/ec/ecp_nistz256.o" =>
6503                [
6504                    ".",
6505                    "include",
6506                ],
6507            "crypto/ec/ecp_oct.o" =>
6508                [
6509                    ".",
6510                    "include",
6511                ],
6512            "crypto/ec/ecp_smpl.o" =>
6513                [
6514                    ".",
6515                    "include",
6516                ],
6517            "crypto/ec/ecx_meth.o" =>
6518                [
6519                    ".",
6520                    "include",
6521                ],
6522            "crypto/ec/x25519-x86_64.o" =>
6523                [
6524                    ".",
6525                    "include",
6526                ],
6527            "crypto/engine/eng_all.o" =>
6528                [
6529                    ".",
6530                    "include",
6531                ],
6532            "crypto/engine/eng_cnf.o" =>
6533                [
6534                    ".",
6535                    "include",
6536                ],
6537            "crypto/engine/eng_ctrl.o" =>
6538                [
6539                    ".",
6540                    "include",
6541                ],
6542            "crypto/engine/eng_devcrypto.o" =>
6543                [
6544                    ".",
6545                    "include",
6546                ],
6547            "crypto/engine/eng_dyn.o" =>
6548                [
6549                    ".",
6550                    "include",
6551                ],
6552            "crypto/engine/eng_err.o" =>
6553                [
6554                    ".",
6555                    "include",
6556                ],
6557            "crypto/engine/eng_fat.o" =>
6558                [
6559                    ".",
6560                    "include",
6561                ],
6562            "crypto/engine/eng_init.o" =>
6563                [
6564                    ".",
6565                    "include",
6566                ],
6567            "crypto/engine/eng_lib.o" =>
6568                [
6569                    ".",
6570                    "include",
6571                ],
6572            "crypto/engine/eng_list.o" =>
6573                [
6574                    ".",
6575                    "include",
6576                ],
6577            "crypto/engine/eng_openssl.o" =>
6578                [
6579                    ".",
6580                    "include",
6581                ],
6582            "crypto/engine/eng_pkey.o" =>
6583                [
6584                    ".",
6585                    "include",
6586                ],
6587            "crypto/engine/eng_rdrand.o" =>
6588                [
6589                    ".",
6590                    "include",
6591                ],
6592            "crypto/engine/eng_table.o" =>
6593                [
6594                    ".",
6595                    "include",
6596                ],
6597            "crypto/engine/tb_asnmth.o" =>
6598                [
6599                    ".",
6600                    "include",
6601                ],
6602            "crypto/engine/tb_cipher.o" =>
6603                [
6604                    ".",
6605                    "include",
6606                ],
6607            "crypto/engine/tb_dh.o" =>
6608                [
6609                    ".",
6610                    "include",
6611                ],
6612            "crypto/engine/tb_digest.o" =>
6613                [
6614                    ".",
6615                    "include",
6616                ],
6617            "crypto/engine/tb_dsa.o" =>
6618                [
6619                    ".",
6620                    "include",
6621                ],
6622            "crypto/engine/tb_eckey.o" =>
6623                [
6624                    ".",
6625                    "include",
6626                ],
6627            "crypto/engine/tb_pkmeth.o" =>
6628                [
6629                    ".",
6630                    "include",
6631                ],
6632            "crypto/engine/tb_rand.o" =>
6633                [
6634                    ".",
6635                    "include",
6636                ],
6637            "crypto/engine/tb_rsa.o" =>
6638                [
6639                    ".",
6640                    "include",
6641                ],
6642            "crypto/err/err.o" =>
6643                [
6644                    ".",
6645                    "include",
6646                ],
6647            "crypto/err/err_all.o" =>
6648                [
6649                    ".",
6650                    "include",
6651                ],
6652            "crypto/err/err_prn.o" =>
6653                [
6654                    ".",
6655                    "include",
6656                ],
6657            "crypto/evp/bio_b64.o" =>
6658                [
6659                    ".",
6660                    "include",
6661                ],
6662            "crypto/evp/bio_enc.o" =>
6663                [
6664                    ".",
6665                    "include",
6666                ],
6667            "crypto/evp/bio_md.o" =>
6668                [
6669                    ".",
6670                    "include",
6671                ],
6672            "crypto/evp/bio_ok.o" =>
6673                [
6674                    ".",
6675                    "include",
6676                ],
6677            "crypto/evp/c_allc.o" =>
6678                [
6679                    ".",
6680                    "include",
6681                ],
6682            "crypto/evp/c_alld.o" =>
6683                [
6684                    ".",
6685                    "include",
6686                ],
6687            "crypto/evp/cmeth_lib.o" =>
6688                [
6689                    ".",
6690                    "include",
6691                ],
6692            "crypto/evp/digest.o" =>
6693                [
6694                    ".",
6695                    "include",
6696                ],
6697            "crypto/evp/e_aes.o" =>
6698                [
6699                    ".",
6700                    "include",
6701                    "crypto",
6702                    "crypto/modes",
6703                ],
6704            "crypto/evp/e_aes_cbc_hmac_sha1.o" =>
6705                [
6706                    ".",
6707                    "include",
6708                    "crypto/modes",
6709                ],
6710            "crypto/evp/e_aes_cbc_hmac_sha256.o" =>
6711                [
6712                    ".",
6713                    "include",
6714                    "crypto/modes",
6715                ],
6716            "crypto/evp/e_aria.o" =>
6717                [
6718                    ".",
6719                    "include",
6720                    "crypto",
6721                    "crypto/modes",
6722                ],
6723            "crypto/evp/e_bf.o" =>
6724                [
6725                    ".",
6726                    "include",
6727                ],
6728            "crypto/evp/e_camellia.o" =>
6729                [
6730                    ".",
6731                    "include",
6732                    "crypto",
6733                    "crypto/modes",
6734                ],
6735            "crypto/evp/e_cast.o" =>
6736                [
6737                    ".",
6738                    "include",
6739                ],
6740            "crypto/evp/e_chacha20_poly1305.o" =>
6741                [
6742                    ".",
6743                    "include",
6744                ],
6745            "crypto/evp/e_des.o" =>
6746                [
6747                    ".",
6748                    "include",
6749                    "crypto",
6750                ],
6751            "crypto/evp/e_des3.o" =>
6752                [
6753                    ".",
6754                    "include",
6755                    "crypto",
6756                ],
6757            "crypto/evp/e_idea.o" =>
6758                [
6759                    ".",
6760                    "include",
6761                ],
6762            "crypto/evp/e_null.o" =>
6763                [
6764                    ".",
6765                    "include",
6766                ],
6767            "crypto/evp/e_old.o" =>
6768                [
6769                    ".",
6770                    "include",
6771                ],
6772            "crypto/evp/e_rc2.o" =>
6773                [
6774                    ".",
6775                    "include",
6776                ],
6777            "crypto/evp/e_rc4.o" =>
6778                [
6779                    ".",
6780                    "include",
6781                ],
6782            "crypto/evp/e_rc4_hmac_md5.o" =>
6783                [
6784                    ".",
6785                    "include",
6786                ],
6787            "crypto/evp/e_rc5.o" =>
6788                [
6789                    ".",
6790                    "include",
6791                ],
6792            "crypto/evp/e_seed.o" =>
6793                [
6794                    ".",
6795                    "include",
6796                ],
6797            "crypto/evp/e_sm4.o" =>
6798                [
6799                    ".",
6800                    "include",
6801                    "crypto",
6802                    "crypto/modes",
6803                ],
6804            "crypto/evp/e_xcbc_d.o" =>
6805                [
6806                    ".",
6807                    "include",
6808                ],
6809            "crypto/evp/encode.o" =>
6810                [
6811                    ".",
6812                    "include",
6813                ],
6814            "crypto/evp/evp_cnf.o" =>
6815                [
6816                    ".",
6817                    "include",
6818                ],
6819            "crypto/evp/evp_enc.o" =>
6820                [
6821                    ".",
6822                    "include",
6823                ],
6824            "crypto/evp/evp_err.o" =>
6825                [
6826                    ".",
6827                    "include",
6828                ],
6829            "crypto/evp/evp_key.o" =>
6830                [
6831                    ".",
6832                    "include",
6833                ],
6834            "crypto/evp/evp_lib.o" =>
6835                [
6836                    ".",
6837                    "include",
6838                ],
6839            "crypto/evp/evp_pbe.o" =>
6840                [
6841                    ".",
6842                    "include",
6843                ],
6844            "crypto/evp/evp_pkey.o" =>
6845                [
6846                    ".",
6847                    "include",
6848                ],
6849            "crypto/evp/m_md2.o" =>
6850                [
6851                    ".",
6852                    "include",
6853                ],
6854            "crypto/evp/m_md4.o" =>
6855                [
6856                    ".",
6857                    "include",
6858                ],
6859            "crypto/evp/m_md5.o" =>
6860                [
6861                    ".",
6862                    "include",
6863                ],
6864            "crypto/evp/m_md5_sha1.o" =>
6865                [
6866                    ".",
6867                    "include",
6868                ],
6869            "crypto/evp/m_mdc2.o" =>
6870                [
6871                    ".",
6872                    "include",
6873                ],
6874            "crypto/evp/m_null.o" =>
6875                [
6876                    ".",
6877                    "include",
6878                ],
6879            "crypto/evp/m_ripemd.o" =>
6880                [
6881                    ".",
6882                    "include",
6883                ],
6884            "crypto/evp/m_sha1.o" =>
6885                [
6886                    ".",
6887                    "include",
6888                ],
6889            "crypto/evp/m_sha3.o" =>
6890                [
6891                    ".",
6892                    "include",
6893                    "crypto",
6894                ],
6895            "crypto/evp/m_sigver.o" =>
6896                [
6897                    ".",
6898                    "include",
6899                ],
6900            "crypto/evp/m_wp.o" =>
6901                [
6902                    ".",
6903                    "include",
6904                ],
6905            "crypto/evp/names.o" =>
6906                [
6907                    ".",
6908                    "include",
6909                ],
6910            "crypto/evp/p5_crpt.o" =>
6911                [
6912                    ".",
6913                    "include",
6914                ],
6915            "crypto/evp/p5_crpt2.o" =>
6916                [
6917                    ".",
6918                    "include",
6919                ],
6920            "crypto/evp/p_dec.o" =>
6921                [
6922                    ".",
6923                    "include",
6924                ],
6925            "crypto/evp/p_enc.o" =>
6926                [
6927                    ".",
6928                    "include",
6929                ],
6930            "crypto/evp/p_lib.o" =>
6931                [
6932                    ".",
6933                    "include",
6934                ],
6935            "crypto/evp/p_open.o" =>
6936                [
6937                    ".",
6938                    "include",
6939                ],
6940            "crypto/evp/p_seal.o" =>
6941                [
6942                    ".",
6943                    "include",
6944                ],
6945            "crypto/evp/p_sign.o" =>
6946                [
6947                    ".",
6948                    "include",
6949                ],
6950            "crypto/evp/p_verify.o" =>
6951                [
6952                    ".",
6953                    "include",
6954                ],
6955            "crypto/evp/pbe_scrypt.o" =>
6956                [
6957                    ".",
6958                    "include",
6959                ],
6960            "crypto/evp/pmeth_fn.o" =>
6961                [
6962                    ".",
6963                    "include",
6964                ],
6965            "crypto/evp/pmeth_gn.o" =>
6966                [
6967                    ".",
6968                    "include",
6969                ],
6970            "crypto/evp/pmeth_lib.o" =>
6971                [
6972                    ".",
6973                    "include",
6974                ],
6975            "crypto/ex_data.o" =>
6976                [
6977                    ".",
6978                    "include",
6979                ],
6980            "crypto/getenv.o" =>
6981                [
6982                    ".",
6983                    "include",
6984                ],
6985            "crypto/hmac/hm_ameth.o" =>
6986                [
6987                    ".",
6988                    "include",
6989                ],
6990            "crypto/hmac/hm_pmeth.o" =>
6991                [
6992                    ".",
6993                    "include",
6994                ],
6995            "crypto/hmac/hmac.o" =>
6996                [
6997                    ".",
6998                    "include",
6999                ],
7000            "crypto/idea/i_cbc.o" =>
7001                [
7002                    ".",
7003                    "include",
7004                ],
7005            "crypto/idea/i_cfb64.o" =>
7006                [
7007                    ".",
7008                    "include",
7009                ],
7010            "crypto/idea/i_ecb.o" =>
7011                [
7012                    ".",
7013                    "include",
7014                ],
7015            "crypto/idea/i_ofb64.o" =>
7016                [
7017                    ".",
7018                    "include",
7019                ],
7020            "crypto/idea/i_skey.o" =>
7021                [
7022                    ".",
7023                    "include",
7024                ],
7025            "crypto/init.o" =>
7026                [
7027                    ".",
7028                    "include",
7029                ],
7030            "crypto/kdf/hkdf.o" =>
7031                [
7032                    ".",
7033                    "include",
7034                ],
7035            "crypto/kdf/kdf_err.o" =>
7036                [
7037                    ".",
7038                    "include",
7039                ],
7040            "crypto/kdf/scrypt.o" =>
7041                [
7042                    ".",
7043                    "include",
7044                ],
7045            "crypto/kdf/tls1_prf.o" =>
7046                [
7047                    ".",
7048                    "include",
7049                ],
7050            "crypto/lhash/lh_stats.o" =>
7051                [
7052                    ".",
7053                    "include",
7054                ],
7055            "crypto/lhash/lhash.o" =>
7056                [
7057                    ".",
7058                    "include",
7059                ],
7060            "crypto/md4/md4_dgst.o" =>
7061                [
7062                    ".",
7063                    "include",
7064                ],
7065            "crypto/md4/md4_one.o" =>
7066                [
7067                    ".",
7068                    "include",
7069                ],
7070            "crypto/md5/md5-sparcv9.o" =>
7071                [
7072                    "crypto",
7073                ],
7074            "crypto/md5/md5-x86_64.o" =>
7075                [
7076                    ".",
7077                    "include",
7078                ],
7079            "crypto/md5/md5_dgst.o" =>
7080                [
7081                    ".",
7082                    "include",
7083                ],
7084            "crypto/md5/md5_one.o" =>
7085                [
7086                    ".",
7087                    "include",
7088                ],
7089            "crypto/mdc2/mdc2_one.o" =>
7090                [
7091                    ".",
7092                    "include",
7093                ],
7094            "crypto/mdc2/mdc2dgst.o" =>
7095                [
7096                    ".",
7097                    "include",
7098                ],
7099            "crypto/mem.o" =>
7100                [
7101                    ".",
7102                    "include",
7103                ],
7104            "crypto/mem_dbg.o" =>
7105                [
7106                    ".",
7107                    "include",
7108                ],
7109            "crypto/mem_sec.o" =>
7110                [
7111                    ".",
7112                    "include",
7113                ],
7114            "crypto/modes/aesni-gcm-x86_64.o" =>
7115                [
7116                    ".",
7117                    "include",
7118                ],
7119            "crypto/modes/cbc128.o" =>
7120                [
7121                    ".",
7122                    "include",
7123                ],
7124            "crypto/modes/ccm128.o" =>
7125                [
7126                    ".",
7127                    "include",
7128                ],
7129            "crypto/modes/cfb128.o" =>
7130                [
7131                    ".",
7132                    "include",
7133                ],
7134            "crypto/modes/ctr128.o" =>
7135                [
7136                    ".",
7137                    "include",
7138                ],
7139            "crypto/modes/cts128.o" =>
7140                [
7141                    ".",
7142                    "include",
7143                ],
7144            "crypto/modes/gcm128.o" =>
7145                [
7146                    ".",
7147                    "include",
7148                    "crypto",
7149                ],
7150            "crypto/modes/ghash-armv4.o" =>
7151                [
7152                    "crypto",
7153                ],
7154            "crypto/modes/ghash-s390x.o" =>
7155                [
7156                    "crypto",
7157                ],
7158            "crypto/modes/ghash-sparcv9.o" =>
7159                [
7160                    "crypto",
7161                ],
7162            "crypto/modes/ghash-x86_64.o" =>
7163                [
7164                    ".",
7165                    "include",
7166                ],
7167            "crypto/modes/ghashv8-armx.o" =>
7168                [
7169                    "crypto",
7170                ],
7171            "crypto/modes/ocb128.o" =>
7172                [
7173                    ".",
7174                    "include",
7175                ],
7176            "crypto/modes/ofb128.o" =>
7177                [
7178                    ".",
7179                    "include",
7180                ],
7181            "crypto/modes/wrap128.o" =>
7182                [
7183                    ".",
7184                    "include",
7185                ],
7186            "crypto/modes/xts128.o" =>
7187                [
7188                    ".",
7189                    "include",
7190                ],
7191            "crypto/o_dir.o" =>
7192                [
7193                    ".",
7194                    "include",
7195                ],
7196            "crypto/o_fips.o" =>
7197                [
7198                    ".",
7199                    "include",
7200                ],
7201            "crypto/o_fopen.o" =>
7202                [
7203                    ".",
7204                    "include",
7205                ],
7206            "crypto/o_init.o" =>
7207                [
7208                    ".",
7209                    "include",
7210                ],
7211            "crypto/o_str.o" =>
7212                [
7213                    ".",
7214                    "include",
7215                ],
7216            "crypto/o_time.o" =>
7217                [
7218                    ".",
7219                    "include",
7220                ],
7221            "crypto/objects/o_names.o" =>
7222                [
7223                    ".",
7224                    "include",
7225                ],
7226            "crypto/objects/obj_dat.o" =>
7227                [
7228                    ".",
7229                    "include",
7230                ],
7231            "crypto/objects/obj_err.o" =>
7232                [
7233                    ".",
7234                    "include",
7235                ],
7236            "crypto/objects/obj_lib.o" =>
7237                [
7238                    ".",
7239                    "include",
7240                ],
7241            "crypto/objects/obj_xref.o" =>
7242                [
7243                    ".",
7244                    "include",
7245                ],
7246            "crypto/ocsp/ocsp_asn.o" =>
7247                [
7248                    ".",
7249                    "include",
7250                ],
7251            "crypto/ocsp/ocsp_cl.o" =>
7252                [
7253                    ".",
7254                    "include",
7255                ],
7256            "crypto/ocsp/ocsp_err.o" =>
7257                [
7258                    ".",
7259                    "include",
7260                ],
7261            "crypto/ocsp/ocsp_ext.o" =>
7262                [
7263                    ".",
7264                    "include",
7265                ],
7266            "crypto/ocsp/ocsp_ht.o" =>
7267                [
7268                    ".",
7269                    "include",
7270                ],
7271            "crypto/ocsp/ocsp_lib.o" =>
7272                [
7273                    ".",
7274                    "include",
7275                ],
7276            "crypto/ocsp/ocsp_prn.o" =>
7277                [
7278                    ".",
7279                    "include",
7280                ],
7281            "crypto/ocsp/ocsp_srv.o" =>
7282                [
7283                    ".",
7284                    "include",
7285                ],
7286            "crypto/ocsp/ocsp_vfy.o" =>
7287                [
7288                    ".",
7289                    "include",
7290                ],
7291            "crypto/ocsp/v3_ocsp.o" =>
7292                [
7293                    ".",
7294                    "include",
7295                ],
7296            "crypto/pem/pem_all.o" =>
7297                [
7298                    ".",
7299                    "include",
7300                ],
7301            "crypto/pem/pem_err.o" =>
7302                [
7303                    ".",
7304                    "include",
7305                ],
7306            "crypto/pem/pem_info.o" =>
7307                [
7308                    ".",
7309                    "include",
7310                ],
7311            "crypto/pem/pem_lib.o" =>
7312                [
7313                    ".",
7314                    "include",
7315                ],
7316            "crypto/pem/pem_oth.o" =>
7317                [
7318                    ".",
7319                    "include",
7320                ],
7321            "crypto/pem/pem_pk8.o" =>
7322                [
7323                    ".",
7324                    "include",
7325                ],
7326            "crypto/pem/pem_pkey.o" =>
7327                [
7328                    ".",
7329                    "include",
7330                ],
7331            "crypto/pem/pem_sign.o" =>
7332                [
7333                    ".",
7334                    "include",
7335                ],
7336            "crypto/pem/pem_x509.o" =>
7337                [
7338                    ".",
7339                    "include",
7340                ],
7341            "crypto/pem/pem_xaux.o" =>
7342                [
7343                    ".",
7344                    "include",
7345                ],
7346            "crypto/pem/pvkfmt.o" =>
7347                [
7348                    ".",
7349                    "include",
7350                ],
7351            "crypto/pkcs12/p12_add.o" =>
7352                [
7353                    ".",
7354                    "include",
7355                ],
7356            "crypto/pkcs12/p12_asn.o" =>
7357                [
7358                    ".",
7359                    "include",
7360                ],
7361            "crypto/pkcs12/p12_attr.o" =>
7362                [
7363                    ".",
7364                    "include",
7365                ],
7366            "crypto/pkcs12/p12_crpt.o" =>
7367                [
7368                    ".",
7369                    "include",
7370                ],
7371            "crypto/pkcs12/p12_crt.o" =>
7372                [
7373                    ".",
7374                    "include",
7375                ],
7376            "crypto/pkcs12/p12_decr.o" =>
7377                [
7378                    ".",
7379                    "include",
7380                ],
7381            "crypto/pkcs12/p12_init.o" =>
7382                [
7383                    ".",
7384                    "include",
7385                ],
7386            "crypto/pkcs12/p12_key.o" =>
7387                [
7388                    ".",
7389                    "include",
7390                ],
7391            "crypto/pkcs12/p12_kiss.o" =>
7392                [
7393                    ".",
7394                    "include",
7395                ],
7396            "crypto/pkcs12/p12_mutl.o" =>
7397                [
7398                    ".",
7399                    "include",
7400                ],
7401            "crypto/pkcs12/p12_npas.o" =>
7402                [
7403                    ".",
7404                    "include",
7405                ],
7406            "crypto/pkcs12/p12_p8d.o" =>
7407                [
7408                    ".",
7409                    "include",
7410                ],
7411            "crypto/pkcs12/p12_p8e.o" =>
7412                [
7413                    ".",
7414                    "include",
7415                ],
7416            "crypto/pkcs12/p12_sbag.o" =>
7417                [
7418                    ".",
7419                    "include",
7420                ],
7421            "crypto/pkcs12/p12_utl.o" =>
7422                [
7423                    ".",
7424                    "include",
7425                ],
7426            "crypto/pkcs12/pk12err.o" =>
7427                [
7428                    ".",
7429                    "include",
7430                ],
7431            "crypto/pkcs7/bio_pk7.o" =>
7432                [
7433                    ".",
7434                    "include",
7435                ],
7436            "crypto/pkcs7/pk7_asn1.o" =>
7437                [
7438                    ".",
7439                    "include",
7440                ],
7441            "crypto/pkcs7/pk7_attr.o" =>
7442                [
7443                    ".",
7444                    "include",
7445                ],
7446            "crypto/pkcs7/pk7_doit.o" =>
7447                [
7448                    ".",
7449                    "include",
7450                ],
7451            "crypto/pkcs7/pk7_lib.o" =>
7452                [
7453                    ".",
7454                    "include",
7455                ],
7456            "crypto/pkcs7/pk7_mime.o" =>
7457                [
7458                    ".",
7459                    "include",
7460                ],
7461            "crypto/pkcs7/pk7_smime.o" =>
7462                [
7463                    ".",
7464                    "include",
7465                ],
7466            "crypto/pkcs7/pkcs7err.o" =>
7467                [
7468                    ".",
7469                    "include",
7470                ],
7471            "crypto/poly1305/poly1305-armv4.o" =>
7472                [
7473                    "crypto",
7474                ],
7475            "crypto/poly1305/poly1305-armv8.o" =>
7476                [
7477                    "crypto",
7478                ],
7479            "crypto/poly1305/poly1305-mips.o" =>
7480                [
7481                    "crypto",
7482                ],
7483            "crypto/poly1305/poly1305-sparcv9.o" =>
7484                [
7485                    "crypto",
7486                ],
7487            "crypto/poly1305/poly1305-x86_64.o" =>
7488                [
7489                    ".",
7490                    "include",
7491                ],
7492            "crypto/poly1305/poly1305.o" =>
7493                [
7494                    ".",
7495                    "include",
7496                ],
7497            "crypto/poly1305/poly1305_ameth.o" =>
7498                [
7499                    ".",
7500                    "include",
7501                ],
7502            "crypto/poly1305/poly1305_pmeth.o" =>
7503                [
7504                    ".",
7505                    "include",
7506                ],
7507            "crypto/rand/drbg_ctr.o" =>
7508                [
7509                    ".",
7510                    "include",
7511                    "crypto/modes",
7512                ],
7513            "crypto/rand/drbg_lib.o" =>
7514                [
7515                    ".",
7516                    "include",
7517                ],
7518            "crypto/rand/rand_egd.o" =>
7519                [
7520                    ".",
7521                    "include",
7522                ],
7523            "crypto/rand/rand_err.o" =>
7524                [
7525                    ".",
7526                    "include",
7527                ],
7528            "crypto/rand/rand_lib.o" =>
7529                [
7530                    ".",
7531                    "include",
7532                ],
7533            "crypto/rand/rand_unix.o" =>
7534                [
7535                    ".",
7536                    "include",
7537                ],
7538            "crypto/rand/rand_vms.o" =>
7539                [
7540                    ".",
7541                    "include",
7542                ],
7543            "crypto/rand/rand_win.o" =>
7544                [
7545                    ".",
7546                    "include",
7547                ],
7548            "crypto/rand/randfile.o" =>
7549                [
7550                    ".",
7551                    "include",
7552                ],
7553            "crypto/rc2/rc2_cbc.o" =>
7554                [
7555                    ".",
7556                    "include",
7557                ],
7558            "crypto/rc2/rc2_ecb.o" =>
7559                [
7560                    ".",
7561                    "include",
7562                ],
7563            "crypto/rc2/rc2_skey.o" =>
7564                [
7565                    ".",
7566                    "include",
7567                ],
7568            "crypto/rc2/rc2cfb64.o" =>
7569                [
7570                    ".",
7571                    "include",
7572                ],
7573            "crypto/rc2/rc2ofb64.o" =>
7574                [
7575                    ".",
7576                    "include",
7577                ],
7578            "crypto/rc4/rc4-md5-x86_64.o" =>
7579                [
7580                    ".",
7581                    "include",
7582                ],
7583            "crypto/rc4/rc4-x86_64.o" =>
7584                [
7585                    ".",
7586                    "include",
7587                ],
7588            "crypto/ripemd/rmd_dgst.o" =>
7589                [
7590                    ".",
7591                    "include",
7592                ],
7593            "crypto/ripemd/rmd_one.o" =>
7594                [
7595                    ".",
7596                    "include",
7597                ],
7598            "crypto/rsa/rsa_ameth.o" =>
7599                [
7600                    ".",
7601                    "include",
7602                ],
7603            "crypto/rsa/rsa_asn1.o" =>
7604                [
7605                    ".",
7606                    "include",
7607                ],
7608            "crypto/rsa/rsa_chk.o" =>
7609                [
7610                    ".",
7611                    "include",
7612                ],
7613            "crypto/rsa/rsa_crpt.o" =>
7614                [
7615                    ".",
7616                    "include",
7617                ],
7618            "crypto/rsa/rsa_depr.o" =>
7619                [
7620                    ".",
7621                    "include",
7622                ],
7623            "crypto/rsa/rsa_err.o" =>
7624                [
7625                    ".",
7626                    "include",
7627                ],
7628            "crypto/rsa/rsa_gen.o" =>
7629                [
7630                    ".",
7631                    "include",
7632                ],
7633            "crypto/rsa/rsa_lib.o" =>
7634                [
7635                    ".",
7636                    "include",
7637                ],
7638            "crypto/rsa/rsa_meth.o" =>
7639                [
7640                    ".",
7641                    "include",
7642                ],
7643            "crypto/rsa/rsa_mp.o" =>
7644                [
7645                    ".",
7646                    "include",
7647                ],
7648            "crypto/rsa/rsa_none.o" =>
7649                [
7650                    ".",
7651                    "include",
7652                ],
7653            "crypto/rsa/rsa_oaep.o" =>
7654                [
7655                    ".",
7656                    "include",
7657                ],
7658            "crypto/rsa/rsa_ossl.o" =>
7659                [
7660                    ".",
7661                    "include",
7662                ],
7663            "crypto/rsa/rsa_pk1.o" =>
7664                [
7665                    ".",
7666                    "include",
7667                ],
7668            "crypto/rsa/rsa_pmeth.o" =>
7669                [
7670                    ".",
7671                    "include",
7672                ],
7673            "crypto/rsa/rsa_prn.o" =>
7674                [
7675                    ".",
7676                    "include",
7677                ],
7678            "crypto/rsa/rsa_pss.o" =>
7679                [
7680                    ".",
7681                    "include",
7682                ],
7683            "crypto/rsa/rsa_saos.o" =>
7684                [
7685                    ".",
7686                    "include",
7687                ],
7688            "crypto/rsa/rsa_sign.o" =>
7689                [
7690                    ".",
7691                    "include",
7692                ],
7693            "crypto/rsa/rsa_ssl.o" =>
7694                [
7695                    ".",
7696                    "include",
7697                ],
7698            "crypto/rsa/rsa_x931.o" =>
7699                [
7700                    ".",
7701                    "include",
7702                ],
7703            "crypto/rsa/rsa_x931g.o" =>
7704                [
7705                    ".",
7706                    "include",
7707                ],
7708            "crypto/s390xcpuid.o" =>
7709                [
7710                    "crypto",
7711                ],
7712            "crypto/seed/seed.o" =>
7713                [
7714                    ".",
7715                    "include",
7716                ],
7717            "crypto/seed/seed_cbc.o" =>
7718                [
7719                    ".",
7720                    "include",
7721                ],
7722            "crypto/seed/seed_cfb.o" =>
7723                [
7724                    ".",
7725                    "include",
7726                ],
7727            "crypto/seed/seed_ecb.o" =>
7728                [
7729                    ".",
7730                    "include",
7731                ],
7732            "crypto/seed/seed_ofb.o" =>
7733                [
7734                    ".",
7735                    "include",
7736                ],
7737            "crypto/sha/keccak1600-armv4.o" =>
7738                [
7739                    "crypto",
7740                ],
7741            "crypto/sha/keccak1600-x86_64.o" =>
7742                [
7743                    ".",
7744                    "include",
7745                ],
7746            "crypto/sha/sha1-armv4-large.o" =>
7747                [
7748                    "crypto",
7749                ],
7750            "crypto/sha/sha1-armv8.o" =>
7751                [
7752                    "crypto",
7753                ],
7754            "crypto/sha/sha1-mb-x86_64.o" =>
7755                [
7756                    ".",
7757                    "include",
7758                ],
7759            "crypto/sha/sha1-mips.o" =>
7760                [
7761                    "crypto",
7762                ],
7763            "crypto/sha/sha1-s390x.o" =>
7764                [
7765                    "crypto",
7766                ],
7767            "crypto/sha/sha1-sparcv9.o" =>
7768                [
7769                    "crypto",
7770                ],
7771            "crypto/sha/sha1-x86_64.o" =>
7772                [
7773                    ".",
7774                    "include",
7775                ],
7776            "crypto/sha/sha1_one.o" =>
7777                [
7778                    ".",
7779                    "include",
7780                ],
7781            "crypto/sha/sha1dgst.o" =>
7782                [
7783                    ".",
7784                    "include",
7785                ],
7786            "crypto/sha/sha256-armv4.o" =>
7787                [
7788                    "crypto",
7789                ],
7790            "crypto/sha/sha256-armv8.o" =>
7791                [
7792                    "crypto",
7793                ],
7794            "crypto/sha/sha256-mb-x86_64.o" =>
7795                [
7796                    ".",
7797                    "include",
7798                ],
7799            "crypto/sha/sha256-mips.o" =>
7800                [
7801                    "crypto",
7802                ],
7803            "crypto/sha/sha256-s390x.o" =>
7804                [
7805                    "crypto",
7806                ],
7807            "crypto/sha/sha256-sparcv9.o" =>
7808                [
7809                    "crypto",
7810                ],
7811            "crypto/sha/sha256-x86_64.o" =>
7812                [
7813                    ".",
7814                    "include",
7815                ],
7816            "crypto/sha/sha256.o" =>
7817                [
7818                    ".",
7819                    "include",
7820                ],
7821            "crypto/sha/sha512-armv4.o" =>
7822                [
7823                    "crypto",
7824                ],
7825            "crypto/sha/sha512-armv8.o" =>
7826                [
7827                    "crypto",
7828                ],
7829            "crypto/sha/sha512-mips.o" =>
7830                [
7831                    "crypto",
7832                ],
7833            "crypto/sha/sha512-s390x.o" =>
7834                [
7835                    "crypto",
7836                ],
7837            "crypto/sha/sha512-sparcv9.o" =>
7838                [
7839                    "crypto",
7840                ],
7841            "crypto/sha/sha512-x86_64.o" =>
7842                [
7843                    ".",
7844                    "include",
7845                ],
7846            "crypto/sha/sha512.o" =>
7847                [
7848                    ".",
7849                    "include",
7850                ],
7851            "crypto/siphash/siphash.o" =>
7852                [
7853                    ".",
7854                    "include",
7855                ],
7856            "crypto/siphash/siphash_ameth.o" =>
7857                [
7858                    ".",
7859                    "include",
7860                ],
7861            "crypto/siphash/siphash_pmeth.o" =>
7862                [
7863                    ".",
7864                    "include",
7865                ],
7866            "crypto/sm2/sm2_crypt.o" =>
7867                [
7868                    ".",
7869                    "include",
7870                ],
7871            "crypto/sm2/sm2_err.o" =>
7872                [
7873                    ".",
7874                    "include",
7875                ],
7876            "crypto/sm2/sm2_pmeth.o" =>
7877                [
7878                    ".",
7879                    "include",
7880                ],
7881            "crypto/sm2/sm2_sign.o" =>
7882                [
7883                    ".",
7884                    "include",
7885                ],
7886            "crypto/sm3/m_sm3.o" =>
7887                [
7888                    ".",
7889                    "include",
7890                ],
7891            "crypto/sm3/sm3.o" =>
7892                [
7893                    ".",
7894                    "include",
7895                ],
7896            "crypto/sm4/sm4.o" =>
7897                [
7898                    ".",
7899                    "include",
7900                ],
7901            "crypto/srp/srp_lib.o" =>
7902                [
7903                    ".",
7904                    "include",
7905                ],
7906            "crypto/srp/srp_vfy.o" =>
7907                [
7908                    ".",
7909                    "include",
7910                ],
7911            "crypto/stack/stack.o" =>
7912                [
7913                    ".",
7914                    "include",
7915                ],
7916            "crypto/store/loader_file.o" =>
7917                [
7918                    ".",
7919                    "include",
7920                ],
7921            "crypto/store/store_err.o" =>
7922                [
7923                    ".",
7924                    "include",
7925                ],
7926            "crypto/store/store_init.o" =>
7927                [
7928                    ".",
7929                    "include",
7930                ],
7931            "crypto/store/store_lib.o" =>
7932                [
7933                    ".",
7934                    "include",
7935                ],
7936            "crypto/store/store_register.o" =>
7937                [
7938                    ".",
7939                    "include",
7940                ],
7941            "crypto/store/store_strings.o" =>
7942                [
7943                    ".",
7944                    "include",
7945                ],
7946            "crypto/threads_none.o" =>
7947                [
7948                    ".",
7949                    "include",
7950                ],
7951            "crypto/threads_pthread.o" =>
7952                [
7953                    ".",
7954                    "include",
7955                ],
7956            "crypto/threads_win.o" =>
7957                [
7958                    ".",
7959                    "include",
7960                ],
7961            "crypto/ts/ts_asn1.o" =>
7962                [
7963                    ".",
7964                    "include",
7965                ],
7966            "crypto/ts/ts_conf.o" =>
7967                [
7968                    ".",
7969                    "include",
7970                ],
7971            "crypto/ts/ts_err.o" =>
7972                [
7973                    ".",
7974                    "include",
7975                ],
7976            "crypto/ts/ts_lib.o" =>
7977                [
7978                    ".",
7979                    "include",
7980                ],
7981            "crypto/ts/ts_req_print.o" =>
7982                [
7983                    ".",
7984                    "include",
7985                ],
7986            "crypto/ts/ts_req_utils.o" =>
7987                [
7988                    ".",
7989                    "include",
7990                ],
7991            "crypto/ts/ts_rsp_print.o" =>
7992                [
7993                    ".",
7994                    "include",
7995                ],
7996            "crypto/ts/ts_rsp_sign.o" =>
7997                [
7998                    ".",
7999                    "include",
8000                ],
8001            "crypto/ts/ts_rsp_utils.o" =>
8002                [
8003                    ".",
8004                    "include",
8005                ],
8006            "crypto/ts/ts_rsp_verify.o" =>
8007                [
8008                    ".",
8009                    "include",
8010                ],
8011            "crypto/ts/ts_verify_ctx.o" =>
8012                [
8013                    ".",
8014                    "include",
8015                ],
8016            "crypto/txt_db/txt_db.o" =>
8017                [
8018                    ".",
8019                    "include",
8020                ],
8021            "crypto/ui/ui_err.o" =>
8022                [
8023                    ".",
8024                    "include",
8025                ],
8026            "crypto/ui/ui_lib.o" =>
8027                [
8028                    ".",
8029                    "include",
8030                ],
8031            "crypto/ui/ui_null.o" =>
8032                [
8033                    ".",
8034                    "include",
8035                ],
8036            "crypto/ui/ui_openssl.o" =>
8037                [
8038                    ".",
8039                    "include",
8040                ],
8041            "crypto/ui/ui_util.o" =>
8042                [
8043                    ".",
8044                    "include",
8045                ],
8046            "crypto/uid.o" =>
8047                [
8048                    ".",
8049                    "include",
8050                ],
8051            "crypto/whrlpool/wp-x86_64.o" =>
8052                [
8053                    ".",
8054                    "include",
8055                ],
8056            "crypto/whrlpool/wp_dgst.o" =>
8057                [
8058                    ".",
8059                    "include",
8060                ],
8061            "crypto/x509/by_dir.o" =>
8062                [
8063                    ".",
8064                    "include",
8065                ],
8066            "crypto/x509/by_file.o" =>
8067                [
8068                    ".",
8069                    "include",
8070                ],
8071            "crypto/x509/t_crl.o" =>
8072                [
8073                    ".",
8074                    "include",
8075                ],
8076            "crypto/x509/t_req.o" =>
8077                [
8078                    ".",
8079                    "include",
8080                ],
8081            "crypto/x509/t_x509.o" =>
8082                [
8083                    ".",
8084                    "include",
8085                ],
8086            "crypto/x509/x509_att.o" =>
8087                [
8088                    ".",
8089                    "include",
8090                ],
8091            "crypto/x509/x509_cmp.o" =>
8092                [
8093                    ".",
8094                    "include",
8095                ],
8096            "crypto/x509/x509_d2.o" =>
8097                [
8098                    ".",
8099                    "include",
8100                ],
8101            "crypto/x509/x509_def.o" =>
8102                [
8103                    ".",
8104                    "include",
8105                ],
8106            "crypto/x509/x509_err.o" =>
8107                [
8108                    ".",
8109                    "include",
8110                ],
8111            "crypto/x509/x509_ext.o" =>
8112                [
8113                    ".",
8114                    "include",
8115                ],
8116            "crypto/x509/x509_lu.o" =>
8117                [
8118                    ".",
8119                    "include",
8120                ],
8121            "crypto/x509/x509_meth.o" =>
8122                [
8123                    ".",
8124                    "include",
8125                ],
8126            "crypto/x509/x509_obj.o" =>
8127                [
8128                    ".",
8129                    "include",
8130                ],
8131            "crypto/x509/x509_r2x.o" =>
8132                [
8133                    ".",
8134                    "include",
8135                ],
8136            "crypto/x509/x509_req.o" =>
8137                [
8138                    ".",
8139                    "include",
8140                ],
8141            "crypto/x509/x509_set.o" =>
8142                [
8143                    ".",
8144                    "include",
8145                ],
8146            "crypto/x509/x509_trs.o" =>
8147                [
8148                    ".",
8149                    "include",
8150                ],
8151            "crypto/x509/x509_txt.o" =>
8152                [
8153                    ".",
8154                    "include",
8155                ],
8156            "crypto/x509/x509_v3.o" =>
8157                [
8158                    ".",
8159                    "include",
8160                ],
8161            "crypto/x509/x509_vfy.o" =>
8162                [
8163                    ".",
8164                    "include",
8165                ],
8166            "crypto/x509/x509_vpm.o" =>
8167                [
8168                    ".",
8169                    "include",
8170                ],
8171            "crypto/x509/x509cset.o" =>
8172                [
8173                    ".",
8174                    "include",
8175                ],
8176            "crypto/x509/x509name.o" =>
8177                [
8178                    ".",
8179                    "include",
8180                ],
8181            "crypto/x509/x509rset.o" =>
8182                [
8183                    ".",
8184                    "include",
8185                ],
8186            "crypto/x509/x509spki.o" =>
8187                [
8188                    ".",
8189                    "include",
8190                ],
8191            "crypto/x509/x509type.o" =>
8192                [
8193                    ".",
8194                    "include",
8195                ],
8196            "crypto/x509/x_all.o" =>
8197                [
8198                    ".",
8199                    "include",
8200                ],
8201            "crypto/x509/x_attrib.o" =>
8202                [
8203                    ".",
8204                    "include",
8205                ],
8206            "crypto/x509/x_crl.o" =>
8207                [
8208                    ".",
8209                    "include",
8210                ],
8211            "crypto/x509/x_exten.o" =>
8212                [
8213                    ".",
8214                    "include",
8215                ],
8216            "crypto/x509/x_name.o" =>
8217                [
8218                    ".",
8219                    "include",
8220                ],
8221            "crypto/x509/x_pubkey.o" =>
8222                [
8223                    ".",
8224                    "include",
8225                ],
8226            "crypto/x509/x_req.o" =>
8227                [
8228                    ".",
8229                    "include",
8230                ],
8231            "crypto/x509/x_x509.o" =>
8232                [
8233                    ".",
8234                    "include",
8235                ],
8236            "crypto/x509/x_x509a.o" =>
8237                [
8238                    ".",
8239                    "include",
8240                ],
8241            "crypto/x509v3/pcy_cache.o" =>
8242                [
8243                    ".",
8244                    "include",
8245                ],
8246            "crypto/x509v3/pcy_data.o" =>
8247                [
8248                    ".",
8249                    "include",
8250                ],
8251            "crypto/x509v3/pcy_lib.o" =>
8252                [
8253                    ".",
8254                    "include",
8255                ],
8256            "crypto/x509v3/pcy_map.o" =>
8257                [
8258                    ".",
8259                    "include",
8260                ],
8261            "crypto/x509v3/pcy_node.o" =>
8262                [
8263                    ".",
8264                    "include",
8265                ],
8266            "crypto/x509v3/pcy_tree.o" =>
8267                [
8268                    ".",
8269                    "include",
8270                ],
8271            "crypto/x509v3/v3_addr.o" =>
8272                [
8273                    ".",
8274                    "include",
8275                ],
8276            "crypto/x509v3/v3_admis.o" =>
8277                [
8278                    ".",
8279                    "include",
8280                ],
8281            "crypto/x509v3/v3_akey.o" =>
8282                [
8283                    ".",
8284                    "include",
8285                ],
8286            "crypto/x509v3/v3_akeya.o" =>
8287                [
8288                    ".",
8289                    "include",
8290                ],
8291            "crypto/x509v3/v3_alt.o" =>
8292                [
8293                    ".",
8294                    "include",
8295                ],
8296            "crypto/x509v3/v3_asid.o" =>
8297                [
8298                    ".",
8299                    "include",
8300                ],
8301            "crypto/x509v3/v3_bcons.o" =>
8302                [
8303                    ".",
8304                    "include",
8305                ],
8306            "crypto/x509v3/v3_bitst.o" =>
8307                [
8308                    ".",
8309                    "include",
8310                ],
8311            "crypto/x509v3/v3_conf.o" =>
8312                [
8313                    ".",
8314                    "include",
8315                ],
8316            "crypto/x509v3/v3_cpols.o" =>
8317                [
8318                    ".",
8319                    "include",
8320                ],
8321            "crypto/x509v3/v3_crld.o" =>
8322                [
8323                    ".",
8324                    "include",
8325                ],
8326            "crypto/x509v3/v3_enum.o" =>
8327                [
8328                    ".",
8329                    "include",
8330                ],
8331            "crypto/x509v3/v3_extku.o" =>
8332                [
8333                    ".",
8334                    "include",
8335                ],
8336            "crypto/x509v3/v3_genn.o" =>
8337                [
8338                    ".",
8339                    "include",
8340                ],
8341            "crypto/x509v3/v3_ia5.o" =>
8342                [
8343                    ".",
8344                    "include",
8345                ],
8346            "crypto/x509v3/v3_info.o" =>
8347                [
8348                    ".",
8349                    "include",
8350                ],
8351            "crypto/x509v3/v3_int.o" =>
8352                [
8353                    ".",
8354                    "include",
8355                ],
8356            "crypto/x509v3/v3_lib.o" =>
8357                [
8358                    ".",
8359                    "include",
8360                ],
8361            "crypto/x509v3/v3_ncons.o" =>
8362                [
8363                    ".",
8364                    "include",
8365                ],
8366            "crypto/x509v3/v3_pci.o" =>
8367                [
8368                    ".",
8369                    "include",
8370                ],
8371            "crypto/x509v3/v3_pcia.o" =>
8372                [
8373                    ".",
8374                    "include",
8375                ],
8376            "crypto/x509v3/v3_pcons.o" =>
8377                [
8378                    ".",
8379                    "include",
8380                ],
8381            "crypto/x509v3/v3_pku.o" =>
8382                [
8383                    ".",
8384                    "include",
8385                ],
8386            "crypto/x509v3/v3_pmaps.o" =>
8387                [
8388                    ".",
8389                    "include",
8390                ],
8391            "crypto/x509v3/v3_prn.o" =>
8392                [
8393                    ".",
8394                    "include",
8395                ],
8396            "crypto/x509v3/v3_purp.o" =>
8397                [
8398                    ".",
8399                    "include",
8400                ],
8401            "crypto/x509v3/v3_skey.o" =>
8402                [
8403                    ".",
8404                    "include",
8405                ],
8406            "crypto/x509v3/v3_sxnet.o" =>
8407                [
8408                    ".",
8409                    "include",
8410                ],
8411            "crypto/x509v3/v3_tlsf.o" =>
8412                [
8413                    ".",
8414                    "include",
8415                ],
8416            "crypto/x509v3/v3_utl.o" =>
8417                [
8418                    ".",
8419                    "include",
8420                ],
8421            "crypto/x509v3/v3err.o" =>
8422                [
8423                    ".",
8424                    "include",
8425                ],
8426            "crypto/x86_64cpuid.o" =>
8427                [
8428                    ".",
8429                    "include",
8430                ],
8431            "engines/e_capi.o" =>
8432                [
8433                    ".",
8434                    "include",
8435                ],
8436            "engines/e_padlock-x86_64.o" =>
8437                [
8438                    ".",
8439                    "include",
8440                ],
8441            "engines/e_padlock.o" =>
8442                [
8443                    ".",
8444                    "include",
8445                ],
8446            "fuzz/asn1.o" =>
8447                [
8448                    "include",
8449                ],
8450            "fuzz/asn1parse.o" =>
8451                [
8452                    "include",
8453                ],
8454            "fuzz/bignum.o" =>
8455                [
8456                    "include",
8457                ],
8458            "fuzz/bndiv.o" =>
8459                [
8460                    "include",
8461                ],
8462            "fuzz/client.o" =>
8463                [
8464                    "include",
8465                ],
8466            "fuzz/cms.o" =>
8467                [
8468                    "include",
8469                ],
8470            "fuzz/conf.o" =>
8471                [
8472                    "include",
8473                ],
8474            "fuzz/crl.o" =>
8475                [
8476                    "include",
8477                ],
8478            "fuzz/ct.o" =>
8479                [
8480                    "include",
8481                ],
8482            "fuzz/server.o" =>
8483                [
8484                    "include",
8485                ],
8486            "fuzz/test-corpus.o" =>
8487                [
8488                    "include",
8489                ],
8490            "fuzz/x509.o" =>
8491                [
8492                    "include",
8493                ],
8494            "include/crypto/bn_conf.h" =>
8495                [
8496                    ".",
8497                ],
8498            "include/crypto/dso_conf.h" =>
8499                [
8500                    ".",
8501                ],
8502            "include/openssl/opensslconf.h" =>
8503                [
8504                    ".",
8505                ],
8506            "ssl/bio_ssl.o" =>
8507                [
8508                    ".",
8509                    "include",
8510                ],
8511            "ssl/d1_lib.o" =>
8512                [
8513                    ".",
8514                    "include",
8515                ],
8516            "ssl/d1_msg.o" =>
8517                [
8518                    ".",
8519                    "include",
8520                ],
8521            "ssl/d1_srtp.o" =>
8522                [
8523                    ".",
8524                    "include",
8525                ],
8526            "ssl/methods.o" =>
8527                [
8528                    ".",
8529                    "include",
8530                ],
8531            "ssl/packet.o" =>
8532                [
8533                    ".",
8534                    "include",
8535                ],
8536            "ssl/pqueue.o" =>
8537                [
8538                    ".",
8539                    "include",
8540                ],
8541            "ssl/record/dtls1_bitmap.o" =>
8542                [
8543                    ".",
8544                    "include",
8545                ],
8546            "ssl/record/rec_layer_d1.o" =>
8547                [
8548                    ".",
8549                    "include",
8550                ],
8551            "ssl/record/rec_layer_s3.o" =>
8552                [
8553                    ".",
8554                    "include",
8555                ],
8556            "ssl/record/ssl3_buffer.o" =>
8557                [
8558                    ".",
8559                    "include",
8560                ],
8561            "ssl/record/ssl3_record.o" =>
8562                [
8563                    ".",
8564                    "include",
8565                ],
8566            "ssl/record/ssl3_record_tls13.o" =>
8567                [
8568                    ".",
8569                    "include",
8570                ],
8571            "ssl/s3_cbc.o" =>
8572                [
8573                    ".",
8574                    "include",
8575                ],
8576            "ssl/s3_enc.o" =>
8577                [
8578                    ".",
8579                    "include",
8580                ],
8581            "ssl/s3_lib.o" =>
8582                [
8583                    ".",
8584                    "include",
8585                ],
8586            "ssl/s3_msg.o" =>
8587                [
8588                    ".",
8589                    "include",
8590                ],
8591            "ssl/ssl_asn1.o" =>
8592                [
8593                    ".",
8594                    "include",
8595                ],
8596            "ssl/ssl_cert.o" =>
8597                [
8598                    ".",
8599                    "include",
8600                ],
8601            "ssl/ssl_ciph.o" =>
8602                [
8603                    ".",
8604                    "include",
8605                ],
8606            "ssl/ssl_conf.o" =>
8607                [
8608                    ".",
8609                    "include",
8610                ],
8611            "ssl/ssl_err.o" =>
8612                [
8613                    ".",
8614                    "include",
8615                ],
8616            "ssl/ssl_init.o" =>
8617                [
8618                    ".",
8619                    "include",
8620                ],
8621            "ssl/ssl_lib.o" =>
8622                [
8623                    ".",
8624                    "include",
8625                ],
8626            "ssl/ssl_mcnf.o" =>
8627                [
8628                    ".",
8629                    "include",
8630                ],
8631            "ssl/ssl_rsa.o" =>
8632                [
8633                    ".",
8634                    "include",
8635                ],
8636            "ssl/ssl_sess.o" =>
8637                [
8638                    ".",
8639                    "include",
8640                ],
8641            "ssl/ssl_stat.o" =>
8642                [
8643                    ".",
8644                    "include",
8645                ],
8646            "ssl/ssl_txt.o" =>
8647                [
8648                    ".",
8649                    "include",
8650                ],
8651            "ssl/ssl_utst.o" =>
8652                [
8653                    ".",
8654                    "include",
8655                ],
8656            "ssl/statem/extensions.o" =>
8657                [
8658                    ".",
8659                    "include",
8660                ],
8661            "ssl/statem/extensions_clnt.o" =>
8662                [
8663                    ".",
8664                    "include",
8665                ],
8666            "ssl/statem/extensions_cust.o" =>
8667                [
8668                    ".",
8669                    "include",
8670                ],
8671            "ssl/statem/extensions_srvr.o" =>
8672                [
8673                    ".",
8674                    "include",
8675                ],
8676            "ssl/statem/statem.o" =>
8677                [
8678                    ".",
8679                    "include",
8680                ],
8681            "ssl/statem/statem_clnt.o" =>
8682                [
8683                    ".",
8684                    "include",
8685                ],
8686            "ssl/statem/statem_dtls.o" =>
8687                [
8688                    ".",
8689                    "include",
8690                ],
8691            "ssl/statem/statem_lib.o" =>
8692                [
8693                    ".",
8694                    "include",
8695                ],
8696            "ssl/statem/statem_srvr.o" =>
8697                [
8698                    ".",
8699                    "include",
8700                ],
8701            "ssl/t1_enc.o" =>
8702                [
8703                    ".",
8704                    "include",
8705                ],
8706            "ssl/t1_lib.o" =>
8707                [
8708                    ".",
8709                    "include",
8710                ],
8711            "ssl/t1_trce.o" =>
8712                [
8713                    ".",
8714                    "include",
8715                ],
8716            "ssl/tls13_enc.o" =>
8717                [
8718                    ".",
8719                    "include",
8720                ],
8721            "ssl/tls_srp.o" =>
8722                [
8723                    ".",
8724                    "include",
8725                ],
8726            "test/aborttest.o" =>
8727                [
8728                    "include",
8729                ],
8730            "test/afalgtest.o" =>
8731                [
8732                    "include",
8733                ],
8734            "test/asn1_decode_test.o" =>
8735                [
8736                    "include",
8737                ],
8738            "test/asn1_encode_test.o" =>
8739                [
8740                    "include",
8741                ],
8742            "test/asn1_internal_test.o" =>
8743                [
8744                    ".",
8745                    "include",
8746                ],
8747            "test/asn1_string_table_test.o" =>
8748                [
8749                    "include",
8750                ],
8751            "test/asn1_time_test.o" =>
8752                [
8753                    "include",
8754                ],
8755            "test/asynciotest.o" =>
8756                [
8757                    "include",
8758                ],
8759            "test/asynctest.o" =>
8760                [
8761                    "include",
8762                ],
8763            "test/bad_dtls_test.o" =>
8764                [
8765                    "include",
8766                ],
8767            "test/bftest.o" =>
8768                [
8769                    "include",
8770                ],
8771            "test/bio_callback_test.o" =>
8772                [
8773                    "include",
8774                ],
8775            "test/bio_enc_test.o" =>
8776                [
8777                    "include",
8778                ],
8779            "test/bio_memleak_test.o" =>
8780                [
8781                    "include",
8782                ],
8783            "test/bioprinttest.o" =>
8784                [
8785                    "include",
8786                ],
8787            "test/bntest.o" =>
8788                [
8789                    "include",
8790                ],
8791            "test/buildtest_aes.o" =>
8792                [
8793                    "include",
8794                ],
8795            "test/buildtest_asn1.o" =>
8796                [
8797                    "include",
8798                ],
8799            "test/buildtest_asn1t.o" =>
8800                [
8801                    "include",
8802                ],
8803            "test/buildtest_async.o" =>
8804                [
8805                    "include",
8806                ],
8807            "test/buildtest_bio.o" =>
8808                [
8809                    "include",
8810                ],
8811            "test/buildtest_blowfish.o" =>
8812                [
8813                    "include",
8814                ],
8815            "test/buildtest_bn.o" =>
8816                [
8817                    "include",
8818                ],
8819            "test/buildtest_buffer.o" =>
8820                [
8821                    "include",
8822                ],
8823            "test/buildtest_camellia.o" =>
8824                [
8825                    "include",
8826                ],
8827            "test/buildtest_cast.o" =>
8828                [
8829                    "include",
8830                ],
8831            "test/buildtest_cmac.o" =>
8832                [
8833                    "include",
8834                ],
8835            "test/buildtest_cms.o" =>
8836                [
8837                    "include",
8838                ],
8839            "test/buildtest_conf.o" =>
8840                [
8841                    "include",
8842                ],
8843            "test/buildtest_conf_api.o" =>
8844                [
8845                    "include",
8846                ],
8847            "test/buildtest_crypto.o" =>
8848                [
8849                    "include",
8850                ],
8851            "test/buildtest_ct.o" =>
8852                [
8853                    "include",
8854                ],
8855            "test/buildtest_des.o" =>
8856                [
8857                    "include",
8858                ],
8859            "test/buildtest_dh.o" =>
8860                [
8861                    "include",
8862                ],
8863            "test/buildtest_dsa.o" =>
8864                [
8865                    "include",
8866                ],
8867            "test/buildtest_dtls1.o" =>
8868                [
8869                    "include",
8870                ],
8871            "test/buildtest_e_os2.o" =>
8872                [
8873                    "include",
8874                ],
8875            "test/buildtest_ebcdic.o" =>
8876                [
8877                    "include",
8878                ],
8879            "test/buildtest_ec.o" =>
8880                [
8881                    "include",
8882                ],
8883            "test/buildtest_ecdh.o" =>
8884                [
8885                    "include",
8886                ],
8887            "test/buildtest_ecdsa.o" =>
8888                [
8889                    "include",
8890                ],
8891            "test/buildtest_engine.o" =>
8892                [
8893                    "include",
8894                ],
8895            "test/buildtest_evp.o" =>
8896                [
8897                    "include",
8898                ],
8899            "test/buildtest_hmac.o" =>
8900                [
8901                    "include",
8902                ],
8903            "test/buildtest_idea.o" =>
8904                [
8905                    "include",
8906                ],
8907            "test/buildtest_kdf.o" =>
8908                [
8909                    "include",
8910                ],
8911            "test/buildtest_lhash.o" =>
8912                [
8913                    "include",
8914                ],
8915            "test/buildtest_md4.o" =>
8916                [
8917                    "include",
8918                ],
8919            "test/buildtest_md5.o" =>
8920                [
8921                    "include",
8922                ],
8923            "test/buildtest_mdc2.o" =>
8924                [
8925                    "include",
8926                ],
8927            "test/buildtest_modes.o" =>
8928                [
8929                    "include",
8930                ],
8931            "test/buildtest_obj_mac.o" =>
8932                [
8933                    "include",
8934                ],
8935            "test/buildtest_objects.o" =>
8936                [
8937                    "include",
8938                ],
8939            "test/buildtest_ocsp.o" =>
8940                [
8941                    "include",
8942                ],
8943            "test/buildtest_opensslv.o" =>
8944                [
8945                    "include",
8946                ],
8947            "test/buildtest_ossl_typ.o" =>
8948                [
8949                    "include",
8950                ],
8951            "test/buildtest_pem.o" =>
8952                [
8953                    "include",
8954                ],
8955            "test/buildtest_pem2.o" =>
8956                [
8957                    "include",
8958                ],
8959            "test/buildtest_pkcs12.o" =>
8960                [
8961                    "include",
8962                ],
8963            "test/buildtest_pkcs7.o" =>
8964                [
8965                    "include",
8966                ],
8967            "test/buildtest_rand.o" =>
8968                [
8969                    "include",
8970                ],
8971            "test/buildtest_rand_drbg.o" =>
8972                [
8973                    "include",
8974                ],
8975            "test/buildtest_rc2.o" =>
8976                [
8977                    "include",
8978                ],
8979            "test/buildtest_rc4.o" =>
8980                [
8981                    "include",
8982                ],
8983            "test/buildtest_ripemd.o" =>
8984                [
8985                    "include",
8986                ],
8987            "test/buildtest_rsa.o" =>
8988                [
8989                    "include",
8990                ],
8991            "test/buildtest_safestack.o" =>
8992                [
8993                    "include",
8994                ],
8995            "test/buildtest_seed.o" =>
8996                [
8997                    "include",
8998                ],
8999            "test/buildtest_sha.o" =>
9000                [
9001                    "include",
9002                ],
9003            "test/buildtest_srp.o" =>
9004                [
9005                    "include",
9006                ],
9007            "test/buildtest_srtp.o" =>
9008                [
9009                    "include",
9010                ],
9011            "test/buildtest_ssl.o" =>
9012                [
9013                    "include",
9014                ],
9015            "test/buildtest_ssl2.o" =>
9016                [
9017                    "include",
9018                ],
9019            "test/buildtest_stack.o" =>
9020                [
9021                    "include",
9022                ],
9023            "test/buildtest_store.o" =>
9024                [
9025                    "include",
9026                ],
9027            "test/buildtest_symhacks.o" =>
9028                [
9029                    "include",
9030                ],
9031            "test/buildtest_tls1.o" =>
9032                [
9033                    "include",
9034                ],
9035            "test/buildtest_ts.o" =>
9036                [
9037                    "include",
9038                ],
9039            "test/buildtest_txt_db.o" =>
9040                [
9041                    "include",
9042                ],
9043            "test/buildtest_ui.o" =>
9044                [
9045                    "include",
9046                ],
9047            "test/buildtest_whrlpool.o" =>
9048                [
9049                    "include",
9050                ],
9051            "test/buildtest_x509.o" =>
9052                [
9053                    "include",
9054                ],
9055            "test/buildtest_x509_vfy.o" =>
9056                [
9057                    "include",
9058                ],
9059            "test/buildtest_x509v3.o" =>
9060                [
9061                    "include",
9062                ],
9063            "test/casttest.o" =>
9064                [
9065                    "include",
9066                ],
9067            "test/chacha_internal_test.o" =>
9068                [
9069                    ".",
9070                    "include",
9071                ],
9072            "test/cipher_overhead_test.o" =>
9073                [
9074                    ".",
9075                    "include",
9076                ],
9077            "test/cipherbytes_test.o" =>
9078                [
9079                    "include",
9080                ],
9081            "test/cipherlist_test.o" =>
9082                [
9083                    "include",
9084                ],
9085            "test/ciphername_test.o" =>
9086                [
9087                    "include",
9088                ],
9089            "test/clienthellotest.o" =>
9090                [
9091                    "include",
9092                ],
9093            "test/cmactest.o" =>
9094                [
9095                    "include",
9096                ],
9097            "test/cmsapitest.o" =>
9098                [
9099                    "include",
9100                ],
9101            "test/conf_include_test.o" =>
9102                [
9103                    "include",
9104                ],
9105            "test/constant_time_test.o" =>
9106                [
9107                    "include",
9108                ],
9109            "test/crltest.o" =>
9110                [
9111                    "include",
9112                ],
9113            "test/ct_test.o" =>
9114                [
9115                    "include",
9116                ],
9117            "test/ctype_internal_test.o" =>
9118                [
9119                    ".",
9120                    "include",
9121                ],
9122            "test/curve448_internal_test.o" =>
9123                [
9124                    ".",
9125                    "include",
9126                    "crypto/ec/curve448",
9127                ],
9128            "test/d2i_test.o" =>
9129                [
9130                    "include",
9131                ],
9132            "test/danetest.o" =>
9133                [
9134                    "include",
9135                ],
9136            "test/destest.o" =>
9137                [
9138                    "include",
9139                ],
9140            "test/dhtest.o" =>
9141                [
9142                    "include",
9143                ],
9144            "test/drbg_cavs_data.o" =>
9145                [
9146                    "include",
9147                    "test",
9148                    ".",
9149                ],
9150            "test/drbg_cavs_test.o" =>
9151                [
9152                    "include",
9153                    "test",
9154                    ".",
9155                ],
9156            "test/drbgtest.o" =>
9157                [
9158                    "include",
9159                ],
9160            "test/dsa_no_digest_size_test.o" =>
9161                [
9162                    "include",
9163                ],
9164            "test/dsatest.o" =>
9165                [
9166                    "include",
9167                ],
9168            "test/dtls_mtu_test.o" =>
9169                [
9170                    ".",
9171                    "include",
9172                ],
9173            "test/dtlstest.o" =>
9174                [
9175                    "include",
9176                ],
9177            "test/dtlsv1listentest.o" =>
9178                [
9179                    "include",
9180                ],
9181            "test/ec_internal_test.o" =>
9182                [
9183                    "include",
9184                    "crypto/ec",
9185                ],
9186            "test/ecdsatest.o" =>
9187                [
9188                    "include",
9189                ],
9190            "test/ecstresstest.o" =>
9191                [
9192                    "include",
9193                ],
9194            "test/ectest.o" =>
9195                [
9196                    "include",
9197                ],
9198            "test/enginetest.o" =>
9199                [
9200                    "include",
9201                ],
9202            "test/errtest.o" =>
9203                [
9204                    "include",
9205                ],
9206            "test/evp_extra_test.o" =>
9207                [
9208                    "include",
9209                ],
9210            "test/evp_test.o" =>
9211                [
9212                    "include",
9213                ],
9214            "test/exdatatest.o" =>
9215                [
9216                    "include",
9217                ],
9218            "test/exptest.o" =>
9219                [
9220                    "include",
9221                ],
9222            "test/fatalerrtest.o" =>
9223                [
9224                    "include",
9225                ],
9226            "test/gmdifftest.o" =>
9227                [
9228                    "include",
9229                ],
9230            "test/gosttest.o" =>
9231                [
9232                    "include",
9233                    ".",
9234                ],
9235            "test/handshake_helper.o" =>
9236                [
9237                    ".",
9238                    "include",
9239                ],
9240            "test/hmactest.o" =>
9241                [
9242                    "include",
9243                ],
9244            "test/ideatest.o" =>
9245                [
9246                    "include",
9247                ],
9248            "test/igetest.o" =>
9249                [
9250                    "include",
9251                ],
9252            "test/lhash_test.o" =>
9253                [
9254                    "include",
9255                ],
9256            "test/md2test.o" =>
9257                [
9258                    "include",
9259                ],
9260            "test/mdc2_internal_test.o" =>
9261                [
9262                    ".",
9263                    "include",
9264                ],
9265            "test/mdc2test.o" =>
9266                [
9267                    "include",
9268                ],
9269            "test/memleaktest.o" =>
9270                [
9271                    "include",
9272                ],
9273            "test/modes_internal_test.o" =>
9274                [
9275                    ".",
9276                    "include",
9277                ],
9278            "test/ocspapitest.o" =>
9279                [
9280                    "include",
9281                ],
9282            "test/packettest.o" =>
9283                [
9284                    "include",
9285                ],
9286            "test/pbelutest.o" =>
9287                [
9288                    "include",
9289                ],
9290            "test/pemtest.o" =>
9291                [
9292                    "include",
9293                ],
9294            "test/pkey_meth_kdf_test.o" =>
9295                [
9296                    "include",
9297                ],
9298            "test/pkey_meth_test.o" =>
9299                [
9300                    "include",
9301                ],
9302            "test/poly1305_internal_test.o" =>
9303                [
9304                    ".",
9305                    "include",
9306                ],
9307            "test/rc2test.o" =>
9308                [
9309                    "include",
9310                ],
9311            "test/rc4test.o" =>
9312                [
9313                    "include",
9314                ],
9315            "test/rc5test.o" =>
9316                [
9317                    "include",
9318                ],
9319            "test/rdrand_sanitytest.o" =>
9320                [
9321                    "include",
9322                ],
9323            "test/recordlentest.o" =>
9324                [
9325                    "include",
9326                ],
9327            "test/rsa_complex.o" =>
9328                [
9329                    "include",
9330                ],
9331            "test/rsa_mp_test.o" =>
9332                [
9333                    "include",
9334                ],
9335            "test/rsa_test.o" =>
9336                [
9337                    "include",
9338                ],
9339            "test/sanitytest.o" =>
9340                [
9341                    "include",
9342                ],
9343            "test/secmemtest.o" =>
9344                [
9345                    "include",
9346                ],
9347            "test/servername_test.o" =>
9348                [
9349                    "include",
9350                ],
9351            "test/siphash_internal_test.o" =>
9352                [
9353                    ".",
9354                    "include",
9355                ],
9356            "test/sm2_internal_test.o" =>
9357                [
9358                    "include",
9359                ],
9360            "test/sm4_internal_test.o" =>
9361                [
9362                    ".",
9363                    "include",
9364                ],
9365            "test/srptest.o" =>
9366                [
9367                    "include",
9368                ],
9369            "test/ssl_cert_table_internal_test.o" =>
9370                [
9371                    ".",
9372                    "include",
9373                ],
9374            "test/ssl_ctx_test.o" =>
9375                [
9376                    "include",
9377                ],
9378            "test/ssl_test.o" =>
9379                [
9380                    "include",
9381                ],
9382            "test/ssl_test_ctx.o" =>
9383                [
9384                    "include",
9385                ],
9386            "test/ssl_test_ctx_test.o" =>
9387                [
9388                    "include",
9389                ],
9390            "test/sslapitest.o" =>
9391                [
9392                    "include",
9393                    ".",
9394                ],
9395            "test/sslbuffertest.o" =>
9396                [
9397                    "include",
9398                ],
9399            "test/sslcorrupttest.o" =>
9400                [
9401                    "include",
9402                ],
9403            "test/ssltest_old.o" =>
9404                [
9405                    ".",
9406                    "include",
9407                ],
9408            "test/ssltestlib.o" =>
9409                [
9410                    ".",
9411                    "include",
9412                ],
9413            "test/stack_test.o" =>
9414                [
9415                    "include",
9416                ],
9417            "test/sysdefaulttest.o" =>
9418                [
9419                    "include",
9420                ],
9421            "test/test_test.o" =>
9422                [
9423                    "include",
9424                ],
9425            "test/testutil/basic_output.o" =>
9426                [
9427                    "include",
9428                ],
9429            "test/testutil/cb.o" =>
9430                [
9431                    "include",
9432                ],
9433            "test/testutil/driver.o" =>
9434                [
9435                    "include",
9436                ],
9437            "test/testutil/format_output.o" =>
9438                [
9439                    "include",
9440                ],
9441            "test/testutil/main.o" =>
9442                [
9443                    "include",
9444                ],
9445            "test/testutil/output_helpers.o" =>
9446                [
9447                    "include",
9448                ],
9449            "test/testutil/random.o" =>
9450                [
9451                    "include",
9452                ],
9453            "test/testutil/stanza.o" =>
9454                [
9455                    "include",
9456                ],
9457            "test/testutil/tap_bio.o" =>
9458                [
9459                    "include",
9460                ],
9461            "test/testutil/test_cleanup.o" =>
9462                [
9463                    "include",
9464                ],
9465            "test/testutil/tests.o" =>
9466                [
9467                    "include",
9468                ],
9469            "test/testutil/testutil_init.o" =>
9470                [
9471                    "include",
9472                ],
9473            "test/threadstest.o" =>
9474                [
9475                    "include",
9476                ],
9477            "test/time_offset_test.o" =>
9478                [
9479                    "include",
9480                ],
9481            "test/tls13ccstest.o" =>
9482                [
9483                    "include",
9484                ],
9485            "test/tls13encryptiontest.o" =>
9486                [
9487                    ".",
9488                    "include",
9489                ],
9490            "test/uitest.o" =>
9491                [
9492                    ".",
9493                    "include",
9494                    "apps",
9495                ],
9496            "test/v3ext.o" =>
9497                [
9498                    "include",
9499                ],
9500            "test/v3nametest.o" =>
9501                [
9502                    "include",
9503                ],
9504            "test/verify_extra_test.o" =>
9505                [
9506                    "include",
9507                ],
9508            "test/versions.o" =>
9509                [
9510                    "include",
9511                ],
9512            "test/wpackettest.o" =>
9513                [
9514                    "include",
9515                ],
9516            "test/x509_check_cert_pkey_test.o" =>
9517                [
9518                    "include",
9519                ],
9520            "test/x509_dup_cert_test.o" =>
9521                [
9522                    "include",
9523                ],
9524            "test/x509_internal_test.o" =>
9525                [
9526                    ".",
9527                    "include",
9528                ],
9529            "test/x509_time_test.o" =>
9530                [
9531                    "include",
9532                ],
9533            "test/x509aux.o" =>
9534                [
9535                    "include",
9536                ],
9537        },
9538    "install" =>
9539        {
9540            "libraries" =>
9541                [
9542                    "libcrypto",
9543                    "libssl",
9544                ],
9545            "programs" =>
9546                [
9547                    "apps/openssl",
9548                ],
9549            "scripts" =>
9550                [
9551                    "apps/CA.pl",
9552                    "apps/tsget.pl",
9553                    "tools/c_rehash",
9554                ],
9555        },
9556    "ldadd" =>
9557        {
9558        },
9559    "libraries" =>
9560        [
9561            "apps/libapps.a",
9562            "libcrypto",
9563            "libssl",
9564            "test/libtestutil.a",
9565        ],
9566    "overrides" =>
9567        [
9568        ],
9569    "programs" =>
9570        [
9571            "apps/openssl",
9572            "fuzz/asn1-test",
9573            "fuzz/asn1parse-test",
9574            "fuzz/bignum-test",
9575            "fuzz/bndiv-test",
9576            "fuzz/client-test",
9577            "fuzz/cms-test",
9578            "fuzz/conf-test",
9579            "fuzz/crl-test",
9580            "fuzz/ct-test",
9581            "fuzz/server-test",
9582            "fuzz/x509-test",
9583            "test/aborttest",
9584            "test/afalgtest",
9585            "test/asn1_decode_test",
9586            "test/asn1_encode_test",
9587            "test/asn1_internal_test",
9588            "test/asn1_string_table_test",
9589            "test/asn1_time_test",
9590            "test/asynciotest",
9591            "test/asynctest",
9592            "test/bad_dtls_test",
9593            "test/bftest",
9594            "test/bio_callback_test",
9595            "test/bio_enc_test",
9596            "test/bio_memleak_test",
9597            "test/bioprinttest",
9598            "test/bntest",
9599            "test/buildtest_c_aes",
9600            "test/buildtest_c_asn1",
9601            "test/buildtest_c_asn1t",
9602            "test/buildtest_c_async",
9603            "test/buildtest_c_bio",
9604            "test/buildtest_c_blowfish",
9605            "test/buildtest_c_bn",
9606            "test/buildtest_c_buffer",
9607            "test/buildtest_c_camellia",
9608            "test/buildtest_c_cast",
9609            "test/buildtest_c_cmac",
9610            "test/buildtest_c_cms",
9611            "test/buildtest_c_conf",
9612            "test/buildtest_c_conf_api",
9613            "test/buildtest_c_crypto",
9614            "test/buildtest_c_ct",
9615            "test/buildtest_c_des",
9616            "test/buildtest_c_dh",
9617            "test/buildtest_c_dsa",
9618            "test/buildtest_c_dtls1",
9619            "test/buildtest_c_e_os2",
9620            "test/buildtest_c_ebcdic",
9621            "test/buildtest_c_ec",
9622            "test/buildtest_c_ecdh",
9623            "test/buildtest_c_ecdsa",
9624            "test/buildtest_c_engine",
9625            "test/buildtest_c_evp",
9626            "test/buildtest_c_hmac",
9627            "test/buildtest_c_idea",
9628            "test/buildtest_c_kdf",
9629            "test/buildtest_c_lhash",
9630            "test/buildtest_c_md4",
9631            "test/buildtest_c_md5",
9632            "test/buildtest_c_mdc2",
9633            "test/buildtest_c_modes",
9634            "test/buildtest_c_obj_mac",
9635            "test/buildtest_c_objects",
9636            "test/buildtest_c_ocsp",
9637            "test/buildtest_c_opensslv",
9638            "test/buildtest_c_ossl_typ",
9639            "test/buildtest_c_pem",
9640            "test/buildtest_c_pem2",
9641            "test/buildtest_c_pkcs12",
9642            "test/buildtest_c_pkcs7",
9643            "test/buildtest_c_rand",
9644            "test/buildtest_c_rand_drbg",
9645            "test/buildtest_c_rc2",
9646            "test/buildtest_c_rc4",
9647            "test/buildtest_c_ripemd",
9648            "test/buildtest_c_rsa",
9649            "test/buildtest_c_safestack",
9650            "test/buildtest_c_seed",
9651            "test/buildtest_c_sha",
9652            "test/buildtest_c_srp",
9653            "test/buildtest_c_srtp",
9654            "test/buildtest_c_ssl",
9655            "test/buildtest_c_ssl2",
9656            "test/buildtest_c_stack",
9657            "test/buildtest_c_store",
9658            "test/buildtest_c_symhacks",
9659            "test/buildtest_c_tls1",
9660            "test/buildtest_c_ts",
9661            "test/buildtest_c_txt_db",
9662            "test/buildtest_c_ui",
9663            "test/buildtest_c_whrlpool",
9664            "test/buildtest_c_x509",
9665            "test/buildtest_c_x509_vfy",
9666            "test/buildtest_c_x509v3",
9667            "test/casttest",
9668            "test/chacha_internal_test",
9669            "test/cipher_overhead_test",
9670            "test/cipherbytes_test",
9671            "test/cipherlist_test",
9672            "test/ciphername_test",
9673            "test/clienthellotest",
9674            "test/cmactest",
9675            "test/cmsapitest",
9676            "test/conf_include_test",
9677            "test/constant_time_test",
9678            "test/crltest",
9679            "test/ct_test",
9680            "test/ctype_internal_test",
9681            "test/curve448_internal_test",
9682            "test/d2i_test",
9683            "test/danetest",
9684            "test/destest",
9685            "test/dhtest",
9686            "test/drbg_cavs_test",
9687            "test/drbgtest",
9688            "test/dsa_no_digest_size_test",
9689            "test/dsatest",
9690            "test/dtls_mtu_test",
9691            "test/dtlstest",
9692            "test/dtlsv1listentest",
9693            "test/ec_internal_test",
9694            "test/ecdsatest",
9695            "test/ecstresstest",
9696            "test/ectest",
9697            "test/enginetest",
9698            "test/errtest",
9699            "test/evp_extra_test",
9700            "test/evp_test",
9701            "test/exdatatest",
9702            "test/exptest",
9703            "test/fatalerrtest",
9704            "test/gmdifftest",
9705            "test/gosttest",
9706            "test/hmactest",
9707            "test/ideatest",
9708            "test/igetest",
9709            "test/lhash_test",
9710            "test/md2test",
9711            "test/mdc2_internal_test",
9712            "test/mdc2test",
9713            "test/memleaktest",
9714            "test/modes_internal_test",
9715            "test/ocspapitest",
9716            "test/packettest",
9717            "test/pbelutest",
9718            "test/pemtest",
9719            "test/pkey_meth_kdf_test",
9720            "test/pkey_meth_test",
9721            "test/poly1305_internal_test",
9722            "test/rc2test",
9723            "test/rc4test",
9724            "test/rc5test",
9725            "test/rdrand_sanitytest",
9726            "test/recordlentest",
9727            "test/rsa_complex",
9728            "test/rsa_mp_test",
9729            "test/rsa_test",
9730            "test/sanitytest",
9731            "test/secmemtest",
9732            "test/servername_test",
9733            "test/siphash_internal_test",
9734            "test/sm2_internal_test",
9735            "test/sm4_internal_test",
9736            "test/srptest",
9737            "test/ssl_cert_table_internal_test",
9738            "test/ssl_ctx_test",
9739            "test/ssl_test",
9740            "test/ssl_test_ctx_test",
9741            "test/sslapitest",
9742            "test/sslbuffertest",
9743            "test/sslcorrupttest",
9744            "test/ssltest_old",
9745            "test/stack_test",
9746            "test/sysdefaulttest",
9747            "test/test_test",
9748            "test/threadstest",
9749            "test/time_offset_test",
9750            "test/tls13ccstest",
9751            "test/tls13encryptiontest",
9752            "test/uitest",
9753            "test/v3ext",
9754            "test/v3nametest",
9755            "test/verify_extra_test",
9756            "test/versions",
9757            "test/wpackettest",
9758            "test/x509_check_cert_pkey_test",
9759            "test/x509_dup_cert_test",
9760            "test/x509_internal_test",
9761            "test/x509_time_test",
9762            "test/x509aux",
9763        ],
9764    "rawlines" =>
9765        [
9766            "##### SHA assembler implementations",
9767            "",
9768            "# GNU make \"catch all\"",
9769            "crypto/sha/sha1-%.S:	crypto/sha/asm/sha1-%.pl",
9770            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9771            "crypto/sha/sha256-%.S:	crypto/sha/asm/sha512-%.pl",
9772            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9773            "crypto/sha/sha512-%.S:	crypto/sha/asm/sha512-%.pl",
9774            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9775            "crypto/poly1305/poly1305-%.S:	crypto/poly1305/asm/poly1305-%.pl",
9776            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9777            "##### AES assembler implementations",
9778            "",
9779            "# GNU make \"catch all\"",
9780            "crypto/aes/aes-%.S:	crypto/aes/asm/aes-%.pl",
9781            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9782            "crypto/aes/bsaes-%.S:	crypto/aes/asm/bsaes-%.pl",
9783            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9784            "",
9785            "# GNU make \"catch all\"",
9786            "crypto/rc4/rc4-%.s:	crypto/rc4/asm/rc4-%.pl",
9787            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9788            "##### CHACHA assembler implementations",
9789            "",
9790            "crypto/chacha/chacha-%.S:	crypto/chacha/asm/chacha-%.pl",
9791            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9792            "# GNU make \"catch all\"",
9793            "crypto/modes/ghash-%.S:	crypto/modes/asm/ghash-%.pl",
9794            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9795            "crypto/ec/ecp_nistz256-%.S:	crypto/ec/asm/ecp_nistz256-%.pl",
9796            "	CC=\"\$(CC)\" \$(PERL) \$< \$(PERLASM_SCHEME) \$\@",
9797        ],
9798    "rename" =>
9799        {
9800        },
9801    "scripts" =>
9802        [
9803            "apps/CA.pl",
9804            "apps/tsget.pl",
9805            "tools/c_rehash",
9806            "util/shlib_wrap.sh",
9807        ],
9808    "shared_sources" =>
9809        {
9810        },
9811    "sources" =>
9812        {
9813            "apps/CA.pl" =>
9814                [
9815                    "apps/CA.pl.in",
9816                ],
9817            "apps/app_rand.o" =>
9818                [
9819                    "apps/app_rand.c",
9820                ],
9821            "apps/apps.o" =>
9822                [
9823                    "apps/apps.c",
9824                ],
9825            "apps/asn1pars.o" =>
9826                [
9827                    "apps/asn1pars.c",
9828                ],
9829            "apps/bf_prefix.o" =>
9830                [
9831                    "apps/bf_prefix.c",
9832                ],
9833            "apps/ca.o" =>
9834                [
9835                    "apps/ca.c",
9836                ],
9837            "apps/ciphers.o" =>
9838                [
9839                    "apps/ciphers.c",
9840                ],
9841            "apps/cms.o" =>
9842                [
9843                    "apps/cms.c",
9844                ],
9845            "apps/crl.o" =>
9846                [
9847                    "apps/crl.c",
9848                ],
9849            "apps/crl2p7.o" =>
9850                [
9851                    "apps/crl2p7.c",
9852                ],
9853            "apps/dgst.o" =>
9854                [
9855                    "apps/dgst.c",
9856                ],
9857            "apps/dhparam.o" =>
9858                [
9859                    "apps/dhparam.c",
9860                ],
9861            "apps/dsa.o" =>
9862                [
9863                    "apps/dsa.c",
9864                ],
9865            "apps/dsaparam.o" =>
9866                [
9867                    "apps/dsaparam.c",
9868                ],
9869            "apps/ec.o" =>
9870                [
9871                    "apps/ec.c",
9872                ],
9873            "apps/ecparam.o" =>
9874                [
9875                    "apps/ecparam.c",
9876                ],
9877            "apps/enc.o" =>
9878                [
9879                    "apps/enc.c",
9880                ],
9881            "apps/engine.o" =>
9882                [
9883                    "apps/engine.c",
9884                ],
9885            "apps/errstr.o" =>
9886                [
9887                    "apps/errstr.c",
9888                ],
9889            "apps/gendsa.o" =>
9890                [
9891                    "apps/gendsa.c",
9892                ],
9893            "apps/genpkey.o" =>
9894                [
9895                    "apps/genpkey.c",
9896                ],
9897            "apps/genrsa.o" =>
9898                [
9899                    "apps/genrsa.c",
9900                ],
9901            "apps/libapps.a" =>
9902                [
9903                    "apps/app_rand.o",
9904                    "apps/apps.o",
9905                    "apps/bf_prefix.o",
9906                    "apps/opt.o",
9907                    "apps/s_cb.o",
9908                    "apps/s_socket.o",
9909                ],
9910            "apps/nseq.o" =>
9911                [
9912                    "apps/nseq.c",
9913                ],
9914            "apps/ocsp.o" =>
9915                [
9916                    "apps/ocsp.c",
9917                ],
9918            "apps/openssl" =>
9919                [
9920                    "apps/asn1pars.o",
9921                    "apps/ca.o",
9922                    "apps/ciphers.o",
9923                    "apps/cms.o",
9924                    "apps/crl.o",
9925                    "apps/crl2p7.o",
9926                    "apps/dgst.o",
9927                    "apps/dhparam.o",
9928                    "apps/dsa.o",
9929                    "apps/dsaparam.o",
9930                    "apps/ec.o",
9931                    "apps/ecparam.o",
9932                    "apps/enc.o",
9933                    "apps/engine.o",
9934                    "apps/errstr.o",
9935                    "apps/gendsa.o",
9936                    "apps/genpkey.o",
9937                    "apps/genrsa.o",
9938                    "apps/nseq.o",
9939                    "apps/ocsp.o",
9940                    "apps/openssl.o",
9941                    "apps/passwd.o",
9942                    "apps/pkcs12.o",
9943                    "apps/pkcs7.o",
9944                    "apps/pkcs8.o",
9945                    "apps/pkey.o",
9946                    "apps/pkeyparam.o",
9947                    "apps/pkeyutl.o",
9948                    "apps/prime.o",
9949                    "apps/rand.o",
9950                    "apps/rehash.o",
9951                    "apps/req.o",
9952                    "apps/rsa.o",
9953                    "apps/rsautl.o",
9954                    "apps/s_client.o",
9955                    "apps/s_server.o",
9956                    "apps/s_time.o",
9957                    "apps/sess_id.o",
9958                    "apps/smime.o",
9959                    "apps/speed.o",
9960                    "apps/spkac.o",
9961                    "apps/srp.o",
9962                    "apps/storeutl.o",
9963                    "apps/ts.o",
9964                    "apps/verify.o",
9965                    "apps/version.o",
9966                    "apps/x509.o",
9967                ],
9968            "apps/openssl.o" =>
9969                [
9970                    "apps/openssl.c",
9971                ],
9972            "apps/opt.o" =>
9973                [
9974                    "apps/opt.c",
9975                ],
9976            "apps/passwd.o" =>
9977                [
9978                    "apps/passwd.c",
9979                ],
9980            "apps/pkcs12.o" =>
9981                [
9982                    "apps/pkcs12.c",
9983                ],
9984            "apps/pkcs7.o" =>
9985                [
9986                    "apps/pkcs7.c",
9987                ],
9988            "apps/pkcs8.o" =>
9989                [
9990                    "apps/pkcs8.c",
9991                ],
9992            "apps/pkey.o" =>
9993                [
9994                    "apps/pkey.c",
9995                ],
9996            "apps/pkeyparam.o" =>
9997                [
9998                    "apps/pkeyparam.c",
9999                ],
10000            "apps/pkeyutl.o" =>
10001                [
10002                    "apps/pkeyutl.c",
10003                ],
10004            "apps/prime.o" =>
10005                [
10006                    "apps/prime.c",
10007                ],
10008            "apps/rand.o" =>
10009                [
10010                    "apps/rand.c",
10011                ],
10012            "apps/rehash.o" =>
10013                [
10014                    "apps/rehash.c",
10015                ],
10016            "apps/req.o" =>
10017                [
10018                    "apps/req.c",
10019                ],
10020            "apps/rsa.o" =>
10021                [
10022                    "apps/rsa.c",
10023                ],
10024            "apps/rsautl.o" =>
10025                [
10026                    "apps/rsautl.c",
10027                ],
10028            "apps/s_cb.o" =>
10029                [
10030                    "apps/s_cb.c",
10031                ],
10032            "apps/s_client.o" =>
10033                [
10034                    "apps/s_client.c",
10035                ],
10036            "apps/s_server.o" =>
10037                [
10038                    "apps/s_server.c",
10039                ],
10040            "apps/s_socket.o" =>
10041                [
10042                    "apps/s_socket.c",
10043                ],
10044            "apps/s_time.o" =>
10045                [
10046                    "apps/s_time.c",
10047                ],
10048            "apps/sess_id.o" =>
10049                [
10050                    "apps/sess_id.c",
10051                ],
10052            "apps/smime.o" =>
10053                [
10054                    "apps/smime.c",
10055                ],
10056            "apps/speed.o" =>
10057                [
10058                    "apps/speed.c",
10059                ],
10060            "apps/spkac.o" =>
10061                [
10062                    "apps/spkac.c",
10063                ],
10064            "apps/srp.o" =>
10065                [
10066                    "apps/srp.c",
10067                ],
10068            "apps/storeutl.o" =>
10069                [
10070                    "apps/storeutl.c",
10071                ],
10072            "apps/ts.o" =>
10073                [
10074                    "apps/ts.c",
10075                ],
10076            "apps/tsget.pl" =>
10077                [
10078                    "apps/tsget.in",
10079                ],
10080            "apps/verify.o" =>
10081                [
10082                    "apps/verify.c",
10083                ],
10084            "apps/version.o" =>
10085                [
10086                    "apps/version.c",
10087                ],
10088            "apps/x509.o" =>
10089                [
10090                    "apps/x509.c",
10091                ],
10092            "crypto/aes/aes_cbc.o" =>
10093                [
10094                    "crypto/aes/aes_cbc.c",
10095                ],
10096            "crypto/aes/aes_cfb.o" =>
10097                [
10098                    "crypto/aes/aes_cfb.c",
10099                ],
10100            "crypto/aes/aes_core.o" =>
10101                [
10102                    "crypto/aes/aes_core.c",
10103                ],
10104            "crypto/aes/aes_ecb.o" =>
10105                [
10106                    "crypto/aes/aes_ecb.c",
10107                ],
10108            "crypto/aes/aes_ige.o" =>
10109                [
10110                    "crypto/aes/aes_ige.c",
10111                ],
10112            "crypto/aes/aes_misc.o" =>
10113                [
10114                    "crypto/aes/aes_misc.c",
10115                ],
10116            "crypto/aes/aes_ofb.o" =>
10117                [
10118                    "crypto/aes/aes_ofb.c",
10119                ],
10120            "crypto/aes/aes_wrap.o" =>
10121                [
10122                    "crypto/aes/aes_wrap.c",
10123                ],
10124            "crypto/aes/aesni-mb-x86_64.o" =>
10125                [
10126                    "crypto/aes/aesni-mb-x86_64.s",
10127                ],
10128            "crypto/aes/aesni-sha1-x86_64.o" =>
10129                [
10130                    "crypto/aes/aesni-sha1-x86_64.s",
10131                ],
10132            "crypto/aes/aesni-sha256-x86_64.o" =>
10133                [
10134                    "crypto/aes/aesni-sha256-x86_64.s",
10135                ],
10136            "crypto/aes/aesni-x86_64.o" =>
10137                [
10138                    "crypto/aes/aesni-x86_64.s",
10139                ],
10140            "crypto/aes/vpaes-x86_64.o" =>
10141                [
10142                    "crypto/aes/vpaes-x86_64.s",
10143                ],
10144            "crypto/aria/aria.o" =>
10145                [
10146                    "crypto/aria/aria.c",
10147                ],
10148            "crypto/asn1/a_bitstr.o" =>
10149                [
10150                    "crypto/asn1/a_bitstr.c",
10151                ],
10152            "crypto/asn1/a_d2i_fp.o" =>
10153                [
10154                    "crypto/asn1/a_d2i_fp.c",
10155                ],
10156            "crypto/asn1/a_digest.o" =>
10157                [
10158                    "crypto/asn1/a_digest.c",
10159                ],
10160            "crypto/asn1/a_dup.o" =>
10161                [
10162                    "crypto/asn1/a_dup.c",
10163                ],
10164            "crypto/asn1/a_gentm.o" =>
10165                [
10166                    "crypto/asn1/a_gentm.c",
10167                ],
10168            "crypto/asn1/a_i2d_fp.o" =>
10169                [
10170                    "crypto/asn1/a_i2d_fp.c",
10171                ],
10172            "crypto/asn1/a_int.o" =>
10173                [
10174                    "crypto/asn1/a_int.c",
10175                ],
10176            "crypto/asn1/a_mbstr.o" =>
10177                [
10178                    "crypto/asn1/a_mbstr.c",
10179                ],
10180            "crypto/asn1/a_object.o" =>
10181                [
10182                    "crypto/asn1/a_object.c",
10183                ],
10184            "crypto/asn1/a_octet.o" =>
10185                [
10186                    "crypto/asn1/a_octet.c",
10187                ],
10188            "crypto/asn1/a_print.o" =>
10189                [
10190                    "crypto/asn1/a_print.c",
10191                ],
10192            "crypto/asn1/a_sign.o" =>
10193                [
10194                    "crypto/asn1/a_sign.c",
10195                ],
10196            "crypto/asn1/a_strex.o" =>
10197                [
10198                    "crypto/asn1/a_strex.c",
10199                ],
10200            "crypto/asn1/a_strnid.o" =>
10201                [
10202                    "crypto/asn1/a_strnid.c",
10203                ],
10204            "crypto/asn1/a_time.o" =>
10205                [
10206                    "crypto/asn1/a_time.c",
10207                ],
10208            "crypto/asn1/a_type.o" =>
10209                [
10210                    "crypto/asn1/a_type.c",
10211                ],
10212            "crypto/asn1/a_utctm.o" =>
10213                [
10214                    "crypto/asn1/a_utctm.c",
10215                ],
10216            "crypto/asn1/a_utf8.o" =>
10217                [
10218                    "crypto/asn1/a_utf8.c",
10219                ],
10220            "crypto/asn1/a_verify.o" =>
10221                [
10222                    "crypto/asn1/a_verify.c",
10223                ],
10224            "crypto/asn1/ameth_lib.o" =>
10225                [
10226                    "crypto/asn1/ameth_lib.c",
10227                ],
10228            "crypto/asn1/asn1_err.o" =>
10229                [
10230                    "crypto/asn1/asn1_err.c",
10231                ],
10232            "crypto/asn1/asn1_gen.o" =>
10233                [
10234                    "crypto/asn1/asn1_gen.c",
10235                ],
10236            "crypto/asn1/asn1_item_list.o" =>
10237                [
10238                    "crypto/asn1/asn1_item_list.c",
10239                ],
10240            "crypto/asn1/asn1_lib.o" =>
10241                [
10242                    "crypto/asn1/asn1_lib.c",
10243                ],
10244            "crypto/asn1/asn1_par.o" =>
10245                [
10246                    "crypto/asn1/asn1_par.c",
10247                ],
10248            "crypto/asn1/asn_mime.o" =>
10249                [
10250                    "crypto/asn1/asn_mime.c",
10251                ],
10252            "crypto/asn1/asn_moid.o" =>
10253                [
10254                    "crypto/asn1/asn_moid.c",
10255                ],
10256            "crypto/asn1/asn_mstbl.o" =>
10257                [
10258                    "crypto/asn1/asn_mstbl.c",
10259                ],
10260            "crypto/asn1/asn_pack.o" =>
10261                [
10262                    "crypto/asn1/asn_pack.c",
10263                ],
10264            "crypto/asn1/bio_asn1.o" =>
10265                [
10266                    "crypto/asn1/bio_asn1.c",
10267                ],
10268            "crypto/asn1/bio_ndef.o" =>
10269                [
10270                    "crypto/asn1/bio_ndef.c",
10271                ],
10272            "crypto/asn1/d2i_pr.o" =>
10273                [
10274                    "crypto/asn1/d2i_pr.c",
10275                ],
10276            "crypto/asn1/d2i_pu.o" =>
10277                [
10278                    "crypto/asn1/d2i_pu.c",
10279                ],
10280            "crypto/asn1/evp_asn1.o" =>
10281                [
10282                    "crypto/asn1/evp_asn1.c",
10283                ],
10284            "crypto/asn1/f_int.o" =>
10285                [
10286                    "crypto/asn1/f_int.c",
10287                ],
10288            "crypto/asn1/f_string.o" =>
10289                [
10290                    "crypto/asn1/f_string.c",
10291                ],
10292            "crypto/asn1/i2d_pr.o" =>
10293                [
10294                    "crypto/asn1/i2d_pr.c",
10295                ],
10296            "crypto/asn1/i2d_pu.o" =>
10297                [
10298                    "crypto/asn1/i2d_pu.c",
10299                ],
10300            "crypto/asn1/n_pkey.o" =>
10301                [
10302                    "crypto/asn1/n_pkey.c",
10303                ],
10304            "crypto/asn1/nsseq.o" =>
10305                [
10306                    "crypto/asn1/nsseq.c",
10307                ],
10308            "crypto/asn1/p5_pbe.o" =>
10309                [
10310                    "crypto/asn1/p5_pbe.c",
10311                ],
10312            "crypto/asn1/p5_pbev2.o" =>
10313                [
10314                    "crypto/asn1/p5_pbev2.c",
10315                ],
10316            "crypto/asn1/p5_scrypt.o" =>
10317                [
10318                    "crypto/asn1/p5_scrypt.c",
10319                ],
10320            "crypto/asn1/p8_pkey.o" =>
10321                [
10322                    "crypto/asn1/p8_pkey.c",
10323                ],
10324            "crypto/asn1/t_bitst.o" =>
10325                [
10326                    "crypto/asn1/t_bitst.c",
10327                ],
10328            "crypto/asn1/t_pkey.o" =>
10329                [
10330                    "crypto/asn1/t_pkey.c",
10331                ],
10332            "crypto/asn1/t_spki.o" =>
10333                [
10334                    "crypto/asn1/t_spki.c",
10335                ],
10336            "crypto/asn1/tasn_dec.o" =>
10337                [
10338                    "crypto/asn1/tasn_dec.c",
10339                ],
10340            "crypto/asn1/tasn_enc.o" =>
10341                [
10342                    "crypto/asn1/tasn_enc.c",
10343                ],
10344            "crypto/asn1/tasn_fre.o" =>
10345                [
10346                    "crypto/asn1/tasn_fre.c",
10347                ],
10348            "crypto/asn1/tasn_new.o" =>
10349                [
10350                    "crypto/asn1/tasn_new.c",
10351                ],
10352            "crypto/asn1/tasn_prn.o" =>
10353                [
10354                    "crypto/asn1/tasn_prn.c",
10355                ],
10356            "crypto/asn1/tasn_scn.o" =>
10357                [
10358                    "crypto/asn1/tasn_scn.c",
10359                ],
10360            "crypto/asn1/tasn_typ.o" =>
10361                [
10362                    "crypto/asn1/tasn_typ.c",
10363                ],
10364            "crypto/asn1/tasn_utl.o" =>
10365                [
10366                    "crypto/asn1/tasn_utl.c",
10367                ],
10368            "crypto/asn1/x_algor.o" =>
10369                [
10370                    "crypto/asn1/x_algor.c",
10371                ],
10372            "crypto/asn1/x_bignum.o" =>
10373                [
10374                    "crypto/asn1/x_bignum.c",
10375                ],
10376            "crypto/asn1/x_info.o" =>
10377                [
10378                    "crypto/asn1/x_info.c",
10379                ],
10380            "crypto/asn1/x_int64.o" =>
10381                [
10382                    "crypto/asn1/x_int64.c",
10383                ],
10384            "crypto/asn1/x_long.o" =>
10385                [
10386                    "crypto/asn1/x_long.c",
10387                ],
10388            "crypto/asn1/x_pkey.o" =>
10389                [
10390                    "crypto/asn1/x_pkey.c",
10391                ],
10392            "crypto/asn1/x_sig.o" =>
10393                [
10394                    "crypto/asn1/x_sig.c",
10395                ],
10396            "crypto/asn1/x_spki.o" =>
10397                [
10398                    "crypto/asn1/x_spki.c",
10399                ],
10400            "crypto/asn1/x_val.o" =>
10401                [
10402                    "crypto/asn1/x_val.c",
10403                ],
10404            "crypto/async/arch/async_null.o" =>
10405                [
10406                    "crypto/async/arch/async_null.c",
10407                ],
10408            "crypto/async/arch/async_posix.o" =>
10409                [
10410                    "crypto/async/arch/async_posix.c",
10411                ],
10412            "crypto/async/arch/async_win.o" =>
10413                [
10414                    "crypto/async/arch/async_win.c",
10415                ],
10416            "crypto/async/async.o" =>
10417                [
10418                    "crypto/async/async.c",
10419                ],
10420            "crypto/async/async_err.o" =>
10421                [
10422                    "crypto/async/async_err.c",
10423                ],
10424            "crypto/async/async_wait.o" =>
10425                [
10426                    "crypto/async/async_wait.c",
10427                ],
10428            "crypto/bf/bf_cfb64.o" =>
10429                [
10430                    "crypto/bf/bf_cfb64.c",
10431                ],
10432            "crypto/bf/bf_ecb.o" =>
10433                [
10434                    "crypto/bf/bf_ecb.c",
10435                ],
10436            "crypto/bf/bf_enc.o" =>
10437                [
10438                    "crypto/bf/bf_enc.c",
10439                ],
10440            "crypto/bf/bf_ofb64.o" =>
10441                [
10442                    "crypto/bf/bf_ofb64.c",
10443                ],
10444            "crypto/bf/bf_skey.o" =>
10445                [
10446                    "crypto/bf/bf_skey.c",
10447                ],
10448            "crypto/bio/b_addr.o" =>
10449                [
10450                    "crypto/bio/b_addr.c",
10451                ],
10452            "crypto/bio/b_dump.o" =>
10453                [
10454                    "crypto/bio/b_dump.c",
10455                ],
10456            "crypto/bio/b_print.o" =>
10457                [
10458                    "crypto/bio/b_print.c",
10459                ],
10460            "crypto/bio/b_sock.o" =>
10461                [
10462                    "crypto/bio/b_sock.c",
10463                ],
10464            "crypto/bio/b_sock2.o" =>
10465                [
10466                    "crypto/bio/b_sock2.c",
10467                ],
10468            "crypto/bio/bf_buff.o" =>
10469                [
10470                    "crypto/bio/bf_buff.c",
10471                ],
10472            "crypto/bio/bf_lbuf.o" =>
10473                [
10474                    "crypto/bio/bf_lbuf.c",
10475                ],
10476            "crypto/bio/bf_nbio.o" =>
10477                [
10478                    "crypto/bio/bf_nbio.c",
10479                ],
10480            "crypto/bio/bf_null.o" =>
10481                [
10482                    "crypto/bio/bf_null.c",
10483                ],
10484            "crypto/bio/bio_cb.o" =>
10485                [
10486                    "crypto/bio/bio_cb.c",
10487                ],
10488            "crypto/bio/bio_err.o" =>
10489                [
10490                    "crypto/bio/bio_err.c",
10491                ],
10492            "crypto/bio/bio_lib.o" =>
10493                [
10494                    "crypto/bio/bio_lib.c",
10495                ],
10496            "crypto/bio/bio_meth.o" =>
10497                [
10498                    "crypto/bio/bio_meth.c",
10499                ],
10500            "crypto/bio/bss_acpt.o" =>
10501                [
10502                    "crypto/bio/bss_acpt.c",
10503                ],
10504            "crypto/bio/bss_bio.o" =>
10505                [
10506                    "crypto/bio/bss_bio.c",
10507                ],
10508            "crypto/bio/bss_conn.o" =>
10509                [
10510                    "crypto/bio/bss_conn.c",
10511                ],
10512            "crypto/bio/bss_dgram.o" =>
10513                [
10514                    "crypto/bio/bss_dgram.c",
10515                ],
10516            "crypto/bio/bss_fd.o" =>
10517                [
10518                    "crypto/bio/bss_fd.c",
10519                ],
10520            "crypto/bio/bss_file.o" =>
10521                [
10522                    "crypto/bio/bss_file.c",
10523                ],
10524            "crypto/bio/bss_log.o" =>
10525                [
10526                    "crypto/bio/bss_log.c",
10527                ],
10528            "crypto/bio/bss_mem.o" =>
10529                [
10530                    "crypto/bio/bss_mem.c",
10531                ],
10532            "crypto/bio/bss_null.o" =>
10533                [
10534                    "crypto/bio/bss_null.c",
10535                ],
10536            "crypto/bio/bss_sock.o" =>
10537                [
10538                    "crypto/bio/bss_sock.c",
10539                ],
10540            "crypto/blake2/blake2b.o" =>
10541                [
10542                    "crypto/blake2/blake2b.c",
10543                ],
10544            "crypto/blake2/blake2s.o" =>
10545                [
10546                    "crypto/blake2/blake2s.c",
10547                ],
10548            "crypto/blake2/m_blake2b.o" =>
10549                [
10550                    "crypto/blake2/m_blake2b.c",
10551                ],
10552            "crypto/blake2/m_blake2s.o" =>
10553                [
10554                    "crypto/blake2/m_blake2s.c",
10555                ],
10556            "crypto/bn/asm/x86_64-gcc.o" =>
10557                [
10558                    "crypto/bn/asm/x86_64-gcc.c",
10559                ],
10560            "crypto/bn/bn_add.o" =>
10561                [
10562                    "crypto/bn/bn_add.c",
10563                ],
10564            "crypto/bn/bn_blind.o" =>
10565                [
10566                    "crypto/bn/bn_blind.c",
10567                ],
10568            "crypto/bn/bn_const.o" =>
10569                [
10570                    "crypto/bn/bn_const.c",
10571                ],
10572            "crypto/bn/bn_ctx.o" =>
10573                [
10574                    "crypto/bn/bn_ctx.c",
10575                ],
10576            "crypto/bn/bn_depr.o" =>
10577                [
10578                    "crypto/bn/bn_depr.c",
10579                ],
10580            "crypto/bn/bn_dh.o" =>
10581                [
10582                    "crypto/bn/bn_dh.c",
10583                ],
10584            "crypto/bn/bn_div.o" =>
10585                [
10586                    "crypto/bn/bn_div.c",
10587                ],
10588            "crypto/bn/bn_err.o" =>
10589                [
10590                    "crypto/bn/bn_err.c",
10591                ],
10592            "crypto/bn/bn_exp.o" =>
10593                [
10594                    "crypto/bn/bn_exp.c",
10595                ],
10596            "crypto/bn/bn_exp2.o" =>
10597                [
10598                    "crypto/bn/bn_exp2.c",
10599                ],
10600            "crypto/bn/bn_gcd.o" =>
10601                [
10602                    "crypto/bn/bn_gcd.c",
10603                ],
10604            "crypto/bn/bn_gf2m.o" =>
10605                [
10606                    "crypto/bn/bn_gf2m.c",
10607                ],
10608            "crypto/bn/bn_intern.o" =>
10609                [
10610                    "crypto/bn/bn_intern.c",
10611                ],
10612            "crypto/bn/bn_kron.o" =>
10613                [
10614                    "crypto/bn/bn_kron.c",
10615                ],
10616            "crypto/bn/bn_lib.o" =>
10617                [
10618                    "crypto/bn/bn_lib.c",
10619                ],
10620            "crypto/bn/bn_mod.o" =>
10621                [
10622                    "crypto/bn/bn_mod.c",
10623                ],
10624            "crypto/bn/bn_mont.o" =>
10625                [
10626                    "crypto/bn/bn_mont.c",
10627                ],
10628            "crypto/bn/bn_mpi.o" =>
10629                [
10630                    "crypto/bn/bn_mpi.c",
10631                ],
10632            "crypto/bn/bn_mul.o" =>
10633                [
10634                    "crypto/bn/bn_mul.c",
10635                ],
10636            "crypto/bn/bn_nist.o" =>
10637                [
10638                    "crypto/bn/bn_nist.c",
10639                ],
10640            "crypto/bn/bn_prime.o" =>
10641                [
10642                    "crypto/bn/bn_prime.c",
10643                ],
10644            "crypto/bn/bn_print.o" =>
10645                [
10646                    "crypto/bn/bn_print.c",
10647                ],
10648            "crypto/bn/bn_rand.o" =>
10649                [
10650                    "crypto/bn/bn_rand.c",
10651                ],
10652            "crypto/bn/bn_recp.o" =>
10653                [
10654                    "crypto/bn/bn_recp.c",
10655                ],
10656            "crypto/bn/bn_shift.o" =>
10657                [
10658                    "crypto/bn/bn_shift.c",
10659                ],
10660            "crypto/bn/bn_sqr.o" =>
10661                [
10662                    "crypto/bn/bn_sqr.c",
10663                ],
10664            "crypto/bn/bn_sqrt.o" =>
10665                [
10666                    "crypto/bn/bn_sqrt.c",
10667                ],
10668            "crypto/bn/bn_srp.o" =>
10669                [
10670                    "crypto/bn/bn_srp.c",
10671                ],
10672            "crypto/bn/bn_word.o" =>
10673                [
10674                    "crypto/bn/bn_word.c",
10675                ],
10676            "crypto/bn/bn_x931p.o" =>
10677                [
10678                    "crypto/bn/bn_x931p.c",
10679                ],
10680            "crypto/bn/rsaz-avx2.o" =>
10681                [
10682                    "crypto/bn/rsaz-avx2.s",
10683                ],
10684            "crypto/bn/rsaz-x86_64.o" =>
10685                [
10686                    "crypto/bn/rsaz-x86_64.s",
10687                ],
10688            "crypto/bn/rsaz_exp.o" =>
10689                [
10690                    "crypto/bn/rsaz_exp.c",
10691                ],
10692            "crypto/bn/x86_64-gf2m.o" =>
10693                [
10694                    "crypto/bn/x86_64-gf2m.s",
10695                ],
10696            "crypto/bn/x86_64-mont.o" =>
10697                [
10698                    "crypto/bn/x86_64-mont.s",
10699                ],
10700            "crypto/bn/x86_64-mont5.o" =>
10701                [
10702                    "crypto/bn/x86_64-mont5.s",
10703                ],
10704            "crypto/buffer/buf_err.o" =>
10705                [
10706                    "crypto/buffer/buf_err.c",
10707                ],
10708            "crypto/buffer/buffer.o" =>
10709                [
10710                    "crypto/buffer/buffer.c",
10711                ],
10712            "crypto/camellia/cmll-x86_64.o" =>
10713                [
10714                    "crypto/camellia/cmll-x86_64.s",
10715                ],
10716            "crypto/camellia/cmll_cfb.o" =>
10717                [
10718                    "crypto/camellia/cmll_cfb.c",
10719                ],
10720            "crypto/camellia/cmll_ctr.o" =>
10721                [
10722                    "crypto/camellia/cmll_ctr.c",
10723                ],
10724            "crypto/camellia/cmll_ecb.o" =>
10725                [
10726                    "crypto/camellia/cmll_ecb.c",
10727                ],
10728            "crypto/camellia/cmll_misc.o" =>
10729                [
10730                    "crypto/camellia/cmll_misc.c",
10731                ],
10732            "crypto/camellia/cmll_ofb.o" =>
10733                [
10734                    "crypto/camellia/cmll_ofb.c",
10735                ],
10736            "crypto/cast/c_cfb64.o" =>
10737                [
10738                    "crypto/cast/c_cfb64.c",
10739                ],
10740            "crypto/cast/c_ecb.o" =>
10741                [
10742                    "crypto/cast/c_ecb.c",
10743                ],
10744            "crypto/cast/c_enc.o" =>
10745                [
10746                    "crypto/cast/c_enc.c",
10747                ],
10748            "crypto/cast/c_ofb64.o" =>
10749                [
10750                    "crypto/cast/c_ofb64.c",
10751                ],
10752            "crypto/cast/c_skey.o" =>
10753                [
10754                    "crypto/cast/c_skey.c",
10755                ],
10756            "crypto/chacha/chacha-x86_64.o" =>
10757                [
10758                    "crypto/chacha/chacha-x86_64.s",
10759                ],
10760            "crypto/cmac/cm_ameth.o" =>
10761                [
10762                    "crypto/cmac/cm_ameth.c",
10763                ],
10764            "crypto/cmac/cm_pmeth.o" =>
10765                [
10766                    "crypto/cmac/cm_pmeth.c",
10767                ],
10768            "crypto/cmac/cmac.o" =>
10769                [
10770                    "crypto/cmac/cmac.c",
10771                ],
10772            "crypto/cms/cms_asn1.o" =>
10773                [
10774                    "crypto/cms/cms_asn1.c",
10775                ],
10776            "crypto/cms/cms_att.o" =>
10777                [
10778                    "crypto/cms/cms_att.c",
10779                ],
10780            "crypto/cms/cms_cd.o" =>
10781                [
10782                    "crypto/cms/cms_cd.c",
10783                ],
10784            "crypto/cms/cms_dd.o" =>
10785                [
10786                    "crypto/cms/cms_dd.c",
10787                ],
10788            "crypto/cms/cms_enc.o" =>
10789                [
10790                    "crypto/cms/cms_enc.c",
10791                ],
10792            "crypto/cms/cms_env.o" =>
10793                [
10794                    "crypto/cms/cms_env.c",
10795                ],
10796            "crypto/cms/cms_err.o" =>
10797                [
10798                    "crypto/cms/cms_err.c",
10799                ],
10800            "crypto/cms/cms_ess.o" =>
10801                [
10802                    "crypto/cms/cms_ess.c",
10803                ],
10804            "crypto/cms/cms_io.o" =>
10805                [
10806                    "crypto/cms/cms_io.c",
10807                ],
10808            "crypto/cms/cms_kari.o" =>
10809                [
10810                    "crypto/cms/cms_kari.c",
10811                ],
10812            "crypto/cms/cms_lib.o" =>
10813                [
10814                    "crypto/cms/cms_lib.c",
10815                ],
10816            "crypto/cms/cms_pwri.o" =>
10817                [
10818                    "crypto/cms/cms_pwri.c",
10819                ],
10820            "crypto/cms/cms_sd.o" =>
10821                [
10822                    "crypto/cms/cms_sd.c",
10823                ],
10824            "crypto/cms/cms_smime.o" =>
10825                [
10826                    "crypto/cms/cms_smime.c",
10827                ],
10828            "crypto/conf/conf_api.o" =>
10829                [
10830                    "crypto/conf/conf_api.c",
10831                ],
10832            "crypto/conf/conf_def.o" =>
10833                [
10834                    "crypto/conf/conf_def.c",
10835                ],
10836            "crypto/conf/conf_err.o" =>
10837                [
10838                    "crypto/conf/conf_err.c",
10839                ],
10840            "crypto/conf/conf_lib.o" =>
10841                [
10842                    "crypto/conf/conf_lib.c",
10843                ],
10844            "crypto/conf/conf_mall.o" =>
10845                [
10846                    "crypto/conf/conf_mall.c",
10847                ],
10848            "crypto/conf/conf_mod.o" =>
10849                [
10850                    "crypto/conf/conf_mod.c",
10851                ],
10852            "crypto/conf/conf_sap.o" =>
10853                [
10854                    "crypto/conf/conf_sap.c",
10855                ],
10856            "crypto/conf/conf_ssl.o" =>
10857                [
10858                    "crypto/conf/conf_ssl.c",
10859                ],
10860            "crypto/cpt_err.o" =>
10861                [
10862                    "crypto/cpt_err.c",
10863                ],
10864            "crypto/cryptlib.o" =>
10865                [
10866                    "crypto/cryptlib.c",
10867                ],
10868            "crypto/ct/ct_b64.o" =>
10869                [
10870                    "crypto/ct/ct_b64.c",
10871                ],
10872            "crypto/ct/ct_err.o" =>
10873                [
10874                    "crypto/ct/ct_err.c",
10875                ],
10876            "crypto/ct/ct_log.o" =>
10877                [
10878                    "crypto/ct/ct_log.c",
10879                ],
10880            "crypto/ct/ct_oct.o" =>
10881                [
10882                    "crypto/ct/ct_oct.c",
10883                ],
10884            "crypto/ct/ct_policy.o" =>
10885                [
10886                    "crypto/ct/ct_policy.c",
10887                ],
10888            "crypto/ct/ct_prn.o" =>
10889                [
10890                    "crypto/ct/ct_prn.c",
10891                ],
10892            "crypto/ct/ct_sct.o" =>
10893                [
10894                    "crypto/ct/ct_sct.c",
10895                ],
10896            "crypto/ct/ct_sct_ctx.o" =>
10897                [
10898                    "crypto/ct/ct_sct_ctx.c",
10899                ],
10900            "crypto/ct/ct_vfy.o" =>
10901                [
10902                    "crypto/ct/ct_vfy.c",
10903                ],
10904            "crypto/ct/ct_x509v3.o" =>
10905                [
10906                    "crypto/ct/ct_x509v3.c",
10907                ],
10908            "crypto/ctype.o" =>
10909                [
10910                    "crypto/ctype.c",
10911                ],
10912            "crypto/cversion.o" =>
10913                [
10914                    "crypto/cversion.c",
10915                ],
10916            "crypto/des/cbc_cksm.o" =>
10917                [
10918                    "crypto/des/cbc_cksm.c",
10919                ],
10920            "crypto/des/cbc_enc.o" =>
10921                [
10922                    "crypto/des/cbc_enc.c",
10923                ],
10924            "crypto/des/cfb64ede.o" =>
10925                [
10926                    "crypto/des/cfb64ede.c",
10927                ],
10928            "crypto/des/cfb64enc.o" =>
10929                [
10930                    "crypto/des/cfb64enc.c",
10931                ],
10932            "crypto/des/cfb_enc.o" =>
10933                [
10934                    "crypto/des/cfb_enc.c",
10935                ],
10936            "crypto/des/des_enc.o" =>
10937                [
10938                    "crypto/des/des_enc.c",
10939                ],
10940            "crypto/des/ecb3_enc.o" =>
10941                [
10942                    "crypto/des/ecb3_enc.c",
10943                ],
10944            "crypto/des/ecb_enc.o" =>
10945                [
10946                    "crypto/des/ecb_enc.c",
10947                ],
10948            "crypto/des/fcrypt.o" =>
10949                [
10950                    "crypto/des/fcrypt.c",
10951                ],
10952            "crypto/des/fcrypt_b.o" =>
10953                [
10954                    "crypto/des/fcrypt_b.c",
10955                ],
10956            "crypto/des/ofb64ede.o" =>
10957                [
10958                    "crypto/des/ofb64ede.c",
10959                ],
10960            "crypto/des/ofb64enc.o" =>
10961                [
10962                    "crypto/des/ofb64enc.c",
10963                ],
10964            "crypto/des/ofb_enc.o" =>
10965                [
10966                    "crypto/des/ofb_enc.c",
10967                ],
10968            "crypto/des/pcbc_enc.o" =>
10969                [
10970                    "crypto/des/pcbc_enc.c",
10971                ],
10972            "crypto/des/qud_cksm.o" =>
10973                [
10974                    "crypto/des/qud_cksm.c",
10975                ],
10976            "crypto/des/rand_key.o" =>
10977                [
10978                    "crypto/des/rand_key.c",
10979                ],
10980            "crypto/des/set_key.o" =>
10981                [
10982                    "crypto/des/set_key.c",
10983                ],
10984            "crypto/des/str2key.o" =>
10985                [
10986                    "crypto/des/str2key.c",
10987                ],
10988            "crypto/des/xcbc_enc.o" =>
10989                [
10990                    "crypto/des/xcbc_enc.c",
10991                ],
10992            "crypto/dh/dh_ameth.o" =>
10993                [
10994                    "crypto/dh/dh_ameth.c",
10995                ],
10996            "crypto/dh/dh_asn1.o" =>
10997                [
10998                    "crypto/dh/dh_asn1.c",
10999                ],
11000            "crypto/dh/dh_check.o" =>
11001                [
11002                    "crypto/dh/dh_check.c",
11003                ],
11004            "crypto/dh/dh_depr.o" =>
11005                [
11006                    "crypto/dh/dh_depr.c",
11007                ],
11008            "crypto/dh/dh_err.o" =>
11009                [
11010                    "crypto/dh/dh_err.c",
11011                ],
11012            "crypto/dh/dh_gen.o" =>
11013                [
11014                    "crypto/dh/dh_gen.c",
11015                ],
11016            "crypto/dh/dh_kdf.o" =>
11017                [
11018                    "crypto/dh/dh_kdf.c",
11019                ],
11020            "crypto/dh/dh_key.o" =>
11021                [
11022                    "crypto/dh/dh_key.c",
11023                ],
11024            "crypto/dh/dh_lib.o" =>
11025                [
11026                    "crypto/dh/dh_lib.c",
11027                ],
11028            "crypto/dh/dh_meth.o" =>
11029                [
11030                    "crypto/dh/dh_meth.c",
11031                ],
11032            "crypto/dh/dh_pmeth.o" =>
11033                [
11034                    "crypto/dh/dh_pmeth.c",
11035                ],
11036            "crypto/dh/dh_prn.o" =>
11037                [
11038                    "crypto/dh/dh_prn.c",
11039                ],
11040            "crypto/dh/dh_rfc5114.o" =>
11041                [
11042                    "crypto/dh/dh_rfc5114.c",
11043                ],
11044            "crypto/dh/dh_rfc7919.o" =>
11045                [
11046                    "crypto/dh/dh_rfc7919.c",
11047                ],
11048            "crypto/dsa/dsa_ameth.o" =>
11049                [
11050                    "crypto/dsa/dsa_ameth.c",
11051                ],
11052            "crypto/dsa/dsa_asn1.o" =>
11053                [
11054                    "crypto/dsa/dsa_asn1.c",
11055                ],
11056            "crypto/dsa/dsa_depr.o" =>
11057                [
11058                    "crypto/dsa/dsa_depr.c",
11059                ],
11060            "crypto/dsa/dsa_err.o" =>
11061                [
11062                    "crypto/dsa/dsa_err.c",
11063                ],
11064            "crypto/dsa/dsa_gen.o" =>
11065                [
11066                    "crypto/dsa/dsa_gen.c",
11067                ],
11068            "crypto/dsa/dsa_key.o" =>
11069                [
11070                    "crypto/dsa/dsa_key.c",
11071                ],
11072            "crypto/dsa/dsa_lib.o" =>
11073                [
11074                    "crypto/dsa/dsa_lib.c",
11075                ],
11076            "crypto/dsa/dsa_meth.o" =>
11077                [
11078                    "crypto/dsa/dsa_meth.c",
11079                ],
11080            "crypto/dsa/dsa_ossl.o" =>
11081                [
11082                    "crypto/dsa/dsa_ossl.c",
11083                ],
11084            "crypto/dsa/dsa_pmeth.o" =>
11085                [
11086                    "crypto/dsa/dsa_pmeth.c",
11087                ],
11088            "crypto/dsa/dsa_prn.o" =>
11089                [
11090                    "crypto/dsa/dsa_prn.c",
11091                ],
11092            "crypto/dsa/dsa_sign.o" =>
11093                [
11094                    "crypto/dsa/dsa_sign.c",
11095                ],
11096            "crypto/dsa/dsa_vrf.o" =>
11097                [
11098                    "crypto/dsa/dsa_vrf.c",
11099                ],
11100            "crypto/dso/dso_dl.o" =>
11101                [
11102                    "crypto/dso/dso_dl.c",
11103                ],
11104            "crypto/dso/dso_dlfcn.o" =>
11105                [
11106                    "crypto/dso/dso_dlfcn.c",
11107                ],
11108            "crypto/dso/dso_err.o" =>
11109                [
11110                    "crypto/dso/dso_err.c",
11111                ],
11112            "crypto/dso/dso_lib.o" =>
11113                [
11114                    "crypto/dso/dso_lib.c",
11115                ],
11116            "crypto/dso/dso_openssl.o" =>
11117                [
11118                    "crypto/dso/dso_openssl.c",
11119                ],
11120            "crypto/dso/dso_vms.o" =>
11121                [
11122                    "crypto/dso/dso_vms.c",
11123                ],
11124            "crypto/dso/dso_win32.o" =>
11125                [
11126                    "crypto/dso/dso_win32.c",
11127                ],
11128            "crypto/ebcdic.o" =>
11129                [
11130                    "crypto/ebcdic.c",
11131                ],
11132            "crypto/ec/curve25519.o" =>
11133                [
11134                    "crypto/ec/curve25519.c",
11135                ],
11136            "crypto/ec/curve448/arch_32/f_impl.o" =>
11137                [
11138                    "crypto/ec/curve448/arch_32/f_impl.c",
11139                ],
11140            "crypto/ec/curve448/curve448.o" =>
11141                [
11142                    "crypto/ec/curve448/curve448.c",
11143                ],
11144            "crypto/ec/curve448/curve448_tables.o" =>
11145                [
11146                    "crypto/ec/curve448/curve448_tables.c",
11147                ],
11148            "crypto/ec/curve448/eddsa.o" =>
11149                [
11150                    "crypto/ec/curve448/eddsa.c",
11151                ],
11152            "crypto/ec/curve448/f_generic.o" =>
11153                [
11154                    "crypto/ec/curve448/f_generic.c",
11155                ],
11156            "crypto/ec/curve448/scalar.o" =>
11157                [
11158                    "crypto/ec/curve448/scalar.c",
11159                ],
11160            "crypto/ec/ec2_oct.o" =>
11161                [
11162                    "crypto/ec/ec2_oct.c",
11163                ],
11164            "crypto/ec/ec2_smpl.o" =>
11165                [
11166                    "crypto/ec/ec2_smpl.c",
11167                ],
11168            "crypto/ec/ec_ameth.o" =>
11169                [
11170                    "crypto/ec/ec_ameth.c",
11171                ],
11172            "crypto/ec/ec_asn1.o" =>
11173                [
11174                    "crypto/ec/ec_asn1.c",
11175                ],
11176            "crypto/ec/ec_check.o" =>
11177                [
11178                    "crypto/ec/ec_check.c",
11179                ],
11180            "crypto/ec/ec_curve.o" =>
11181                [
11182                    "crypto/ec/ec_curve.c",
11183                ],
11184            "crypto/ec/ec_cvt.o" =>
11185                [
11186                    "crypto/ec/ec_cvt.c",
11187                ],
11188            "crypto/ec/ec_err.o" =>
11189                [
11190                    "crypto/ec/ec_err.c",
11191                ],
11192            "crypto/ec/ec_key.o" =>
11193                [
11194                    "crypto/ec/ec_key.c",
11195                ],
11196            "crypto/ec/ec_kmeth.o" =>
11197                [
11198                    "crypto/ec/ec_kmeth.c",
11199                ],
11200            "crypto/ec/ec_lib.o" =>
11201                [
11202                    "crypto/ec/ec_lib.c",
11203                ],
11204            "crypto/ec/ec_mult.o" =>
11205                [
11206                    "crypto/ec/ec_mult.c",
11207                ],
11208            "crypto/ec/ec_oct.o" =>
11209                [
11210                    "crypto/ec/ec_oct.c",
11211                ],
11212            "crypto/ec/ec_pmeth.o" =>
11213                [
11214                    "crypto/ec/ec_pmeth.c",
11215                ],
11216            "crypto/ec/ec_print.o" =>
11217                [
11218                    "crypto/ec/ec_print.c",
11219                ],
11220            "crypto/ec/ecdh_kdf.o" =>
11221                [
11222                    "crypto/ec/ecdh_kdf.c",
11223                ],
11224            "crypto/ec/ecdh_ossl.o" =>
11225                [
11226                    "crypto/ec/ecdh_ossl.c",
11227                ],
11228            "crypto/ec/ecdsa_ossl.o" =>
11229                [
11230                    "crypto/ec/ecdsa_ossl.c",
11231                ],
11232            "crypto/ec/ecdsa_sign.o" =>
11233                [
11234                    "crypto/ec/ecdsa_sign.c",
11235                ],
11236            "crypto/ec/ecdsa_vrf.o" =>
11237                [
11238                    "crypto/ec/ecdsa_vrf.c",
11239                ],
11240            "crypto/ec/eck_prn.o" =>
11241                [
11242                    "crypto/ec/eck_prn.c",
11243                ],
11244            "crypto/ec/ecp_mont.o" =>
11245                [
11246                    "crypto/ec/ecp_mont.c",
11247                ],
11248            "crypto/ec/ecp_nist.o" =>
11249                [
11250                    "crypto/ec/ecp_nist.c",
11251                ],
11252            "crypto/ec/ecp_nistp224.o" =>
11253                [
11254                    "crypto/ec/ecp_nistp224.c",
11255                ],
11256            "crypto/ec/ecp_nistp256.o" =>
11257                [
11258                    "crypto/ec/ecp_nistp256.c",
11259                ],
11260            "crypto/ec/ecp_nistp521.o" =>
11261                [
11262                    "crypto/ec/ecp_nistp521.c",
11263                ],
11264            "crypto/ec/ecp_nistputil.o" =>
11265                [
11266                    "crypto/ec/ecp_nistputil.c",
11267                ],
11268            "crypto/ec/ecp_nistz256-x86_64.o" =>
11269                [
11270                    "crypto/ec/ecp_nistz256-x86_64.s",
11271                ],
11272            "crypto/ec/ecp_nistz256.o" =>
11273                [
11274                    "crypto/ec/ecp_nistz256.c",
11275                ],
11276            "crypto/ec/ecp_oct.o" =>
11277                [
11278                    "crypto/ec/ecp_oct.c",
11279                ],
11280            "crypto/ec/ecp_smpl.o" =>
11281                [
11282                    "crypto/ec/ecp_smpl.c",
11283                ],
11284            "crypto/ec/ecx_meth.o" =>
11285                [
11286                    "crypto/ec/ecx_meth.c",
11287                ],
11288            "crypto/ec/x25519-x86_64.o" =>
11289                [
11290                    "crypto/ec/x25519-x86_64.s",
11291                ],
11292            "crypto/engine/eng_all.o" =>
11293                [
11294                    "crypto/engine/eng_all.c",
11295                ],
11296            "crypto/engine/eng_cnf.o" =>
11297                [
11298                    "crypto/engine/eng_cnf.c",
11299                ],
11300            "crypto/engine/eng_ctrl.o" =>
11301                [
11302                    "crypto/engine/eng_ctrl.c",
11303                ],
11304            "crypto/engine/eng_devcrypto.o" =>
11305                [
11306                    "crypto/engine/eng_devcrypto.c",
11307                ],
11308            "crypto/engine/eng_dyn.o" =>
11309                [
11310                    "crypto/engine/eng_dyn.c",
11311                ],
11312            "crypto/engine/eng_err.o" =>
11313                [
11314                    "crypto/engine/eng_err.c",
11315                ],
11316            "crypto/engine/eng_fat.o" =>
11317                [
11318                    "crypto/engine/eng_fat.c",
11319                ],
11320            "crypto/engine/eng_init.o" =>
11321                [
11322                    "crypto/engine/eng_init.c",
11323                ],
11324            "crypto/engine/eng_lib.o" =>
11325                [
11326                    "crypto/engine/eng_lib.c",
11327                ],
11328            "crypto/engine/eng_list.o" =>
11329                [
11330                    "crypto/engine/eng_list.c",
11331                ],
11332            "crypto/engine/eng_openssl.o" =>
11333                [
11334                    "crypto/engine/eng_openssl.c",
11335                ],
11336            "crypto/engine/eng_pkey.o" =>
11337                [
11338                    "crypto/engine/eng_pkey.c",
11339                ],
11340            "crypto/engine/eng_rdrand.o" =>
11341                [
11342                    "crypto/engine/eng_rdrand.c",
11343                ],
11344            "crypto/engine/eng_table.o" =>
11345                [
11346                    "crypto/engine/eng_table.c",
11347                ],
11348            "crypto/engine/tb_asnmth.o" =>
11349                [
11350                    "crypto/engine/tb_asnmth.c",
11351                ],
11352            "crypto/engine/tb_cipher.o" =>
11353                [
11354                    "crypto/engine/tb_cipher.c",
11355                ],
11356            "crypto/engine/tb_dh.o" =>
11357                [
11358                    "crypto/engine/tb_dh.c",
11359                ],
11360            "crypto/engine/tb_digest.o" =>
11361                [
11362                    "crypto/engine/tb_digest.c",
11363                ],
11364            "crypto/engine/tb_dsa.o" =>
11365                [
11366                    "crypto/engine/tb_dsa.c",
11367                ],
11368            "crypto/engine/tb_eckey.o" =>
11369                [
11370                    "crypto/engine/tb_eckey.c",
11371                ],
11372            "crypto/engine/tb_pkmeth.o" =>
11373                [
11374                    "crypto/engine/tb_pkmeth.c",
11375                ],
11376            "crypto/engine/tb_rand.o" =>
11377                [
11378                    "crypto/engine/tb_rand.c",
11379                ],
11380            "crypto/engine/tb_rsa.o" =>
11381                [
11382                    "crypto/engine/tb_rsa.c",
11383                ],
11384            "crypto/err/err.o" =>
11385                [
11386                    "crypto/err/err.c",
11387                ],
11388            "crypto/err/err_all.o" =>
11389                [
11390                    "crypto/err/err_all.c",
11391                ],
11392            "crypto/err/err_prn.o" =>
11393                [
11394                    "crypto/err/err_prn.c",
11395                ],
11396            "crypto/evp/bio_b64.o" =>
11397                [
11398                    "crypto/evp/bio_b64.c",
11399                ],
11400            "crypto/evp/bio_enc.o" =>
11401                [
11402                    "crypto/evp/bio_enc.c",
11403                ],
11404            "crypto/evp/bio_md.o" =>
11405                [
11406                    "crypto/evp/bio_md.c",
11407                ],
11408            "crypto/evp/bio_ok.o" =>
11409                [
11410                    "crypto/evp/bio_ok.c",
11411                ],
11412            "crypto/evp/c_allc.o" =>
11413                [
11414                    "crypto/evp/c_allc.c",
11415                ],
11416            "crypto/evp/c_alld.o" =>
11417                [
11418                    "crypto/evp/c_alld.c",
11419                ],
11420            "crypto/evp/cmeth_lib.o" =>
11421                [
11422                    "crypto/evp/cmeth_lib.c",
11423                ],
11424            "crypto/evp/digest.o" =>
11425                [
11426                    "crypto/evp/digest.c",
11427                ],
11428            "crypto/evp/e_aes.o" =>
11429                [
11430                    "crypto/evp/e_aes.c",
11431                ],
11432            "crypto/evp/e_aes_cbc_hmac_sha1.o" =>
11433                [
11434                    "crypto/evp/e_aes_cbc_hmac_sha1.c",
11435                ],
11436            "crypto/evp/e_aes_cbc_hmac_sha256.o" =>
11437                [
11438                    "crypto/evp/e_aes_cbc_hmac_sha256.c",
11439                ],
11440            "crypto/evp/e_aria.o" =>
11441                [
11442                    "crypto/evp/e_aria.c",
11443                ],
11444            "crypto/evp/e_bf.o" =>
11445                [
11446                    "crypto/evp/e_bf.c",
11447                ],
11448            "crypto/evp/e_camellia.o" =>
11449                [
11450                    "crypto/evp/e_camellia.c",
11451                ],
11452            "crypto/evp/e_cast.o" =>
11453                [
11454                    "crypto/evp/e_cast.c",
11455                ],
11456            "crypto/evp/e_chacha20_poly1305.o" =>
11457                [
11458                    "crypto/evp/e_chacha20_poly1305.c",
11459                ],
11460            "crypto/evp/e_des.o" =>
11461                [
11462                    "crypto/evp/e_des.c",
11463                ],
11464            "crypto/evp/e_des3.o" =>
11465                [
11466                    "crypto/evp/e_des3.c",
11467                ],
11468            "crypto/evp/e_idea.o" =>
11469                [
11470                    "crypto/evp/e_idea.c",
11471                ],
11472            "crypto/evp/e_null.o" =>
11473                [
11474                    "crypto/evp/e_null.c",
11475                ],
11476            "crypto/evp/e_old.o" =>
11477                [
11478                    "crypto/evp/e_old.c",
11479                ],
11480            "crypto/evp/e_rc2.o" =>
11481                [
11482                    "crypto/evp/e_rc2.c",
11483                ],
11484            "crypto/evp/e_rc4.o" =>
11485                [
11486                    "crypto/evp/e_rc4.c",
11487                ],
11488            "crypto/evp/e_rc4_hmac_md5.o" =>
11489                [
11490                    "crypto/evp/e_rc4_hmac_md5.c",
11491                ],
11492            "crypto/evp/e_rc5.o" =>
11493                [
11494                    "crypto/evp/e_rc5.c",
11495                ],
11496            "crypto/evp/e_seed.o" =>
11497                [
11498                    "crypto/evp/e_seed.c",
11499                ],
11500            "crypto/evp/e_sm4.o" =>
11501                [
11502                    "crypto/evp/e_sm4.c",
11503                ],
11504            "crypto/evp/e_xcbc_d.o" =>
11505                [
11506                    "crypto/evp/e_xcbc_d.c",
11507                ],
11508            "crypto/evp/encode.o" =>
11509                [
11510                    "crypto/evp/encode.c",
11511                ],
11512            "crypto/evp/evp_cnf.o" =>
11513                [
11514                    "crypto/evp/evp_cnf.c",
11515                ],
11516            "crypto/evp/evp_enc.o" =>
11517                [
11518                    "crypto/evp/evp_enc.c",
11519                ],
11520            "crypto/evp/evp_err.o" =>
11521                [
11522                    "crypto/evp/evp_err.c",
11523                ],
11524            "crypto/evp/evp_key.o" =>
11525                [
11526                    "crypto/evp/evp_key.c",
11527                ],
11528            "crypto/evp/evp_lib.o" =>
11529                [
11530                    "crypto/evp/evp_lib.c",
11531                ],
11532            "crypto/evp/evp_pbe.o" =>
11533                [
11534                    "crypto/evp/evp_pbe.c",
11535                ],
11536            "crypto/evp/evp_pkey.o" =>
11537                [
11538                    "crypto/evp/evp_pkey.c",
11539                ],
11540            "crypto/evp/m_md2.o" =>
11541                [
11542                    "crypto/evp/m_md2.c",
11543                ],
11544            "crypto/evp/m_md4.o" =>
11545                [
11546                    "crypto/evp/m_md4.c",
11547                ],
11548            "crypto/evp/m_md5.o" =>
11549                [
11550                    "crypto/evp/m_md5.c",
11551                ],
11552            "crypto/evp/m_md5_sha1.o" =>
11553                [
11554                    "crypto/evp/m_md5_sha1.c",
11555                ],
11556            "crypto/evp/m_mdc2.o" =>
11557                [
11558                    "crypto/evp/m_mdc2.c",
11559                ],
11560            "crypto/evp/m_null.o" =>
11561                [
11562                    "crypto/evp/m_null.c",
11563                ],
11564            "crypto/evp/m_ripemd.o" =>
11565                [
11566                    "crypto/evp/m_ripemd.c",
11567                ],
11568            "crypto/evp/m_sha1.o" =>
11569                [
11570                    "crypto/evp/m_sha1.c",
11571                ],
11572            "crypto/evp/m_sha3.o" =>
11573                [
11574                    "crypto/evp/m_sha3.c",
11575                ],
11576            "crypto/evp/m_sigver.o" =>
11577                [
11578                    "crypto/evp/m_sigver.c",
11579                ],
11580            "crypto/evp/m_wp.o" =>
11581                [
11582                    "crypto/evp/m_wp.c",
11583                ],
11584            "crypto/evp/names.o" =>
11585                [
11586                    "crypto/evp/names.c",
11587                ],
11588            "crypto/evp/p5_crpt.o" =>
11589                [
11590                    "crypto/evp/p5_crpt.c",
11591                ],
11592            "crypto/evp/p5_crpt2.o" =>
11593                [
11594                    "crypto/evp/p5_crpt2.c",
11595                ],
11596            "crypto/evp/p_dec.o" =>
11597                [
11598                    "crypto/evp/p_dec.c",
11599                ],
11600            "crypto/evp/p_enc.o" =>
11601                [
11602                    "crypto/evp/p_enc.c",
11603                ],
11604            "crypto/evp/p_lib.o" =>
11605                [
11606                    "crypto/evp/p_lib.c",
11607                ],
11608            "crypto/evp/p_open.o" =>
11609                [
11610                    "crypto/evp/p_open.c",
11611                ],
11612            "crypto/evp/p_seal.o" =>
11613                [
11614                    "crypto/evp/p_seal.c",
11615                ],
11616            "crypto/evp/p_sign.o" =>
11617                [
11618                    "crypto/evp/p_sign.c",
11619                ],
11620            "crypto/evp/p_verify.o" =>
11621                [
11622                    "crypto/evp/p_verify.c",
11623                ],
11624            "crypto/evp/pbe_scrypt.o" =>
11625                [
11626                    "crypto/evp/pbe_scrypt.c",
11627                ],
11628            "crypto/evp/pmeth_fn.o" =>
11629                [
11630                    "crypto/evp/pmeth_fn.c",
11631                ],
11632            "crypto/evp/pmeth_gn.o" =>
11633                [
11634                    "crypto/evp/pmeth_gn.c",
11635                ],
11636            "crypto/evp/pmeth_lib.o" =>
11637                [
11638                    "crypto/evp/pmeth_lib.c",
11639                ],
11640            "crypto/ex_data.o" =>
11641                [
11642                    "crypto/ex_data.c",
11643                ],
11644            "crypto/getenv.o" =>
11645                [
11646                    "crypto/getenv.c",
11647                ],
11648            "crypto/hmac/hm_ameth.o" =>
11649                [
11650                    "crypto/hmac/hm_ameth.c",
11651                ],
11652            "crypto/hmac/hm_pmeth.o" =>
11653                [
11654                    "crypto/hmac/hm_pmeth.c",
11655                ],
11656            "crypto/hmac/hmac.o" =>
11657                [
11658                    "crypto/hmac/hmac.c",
11659                ],
11660            "crypto/idea/i_cbc.o" =>
11661                [
11662                    "crypto/idea/i_cbc.c",
11663                ],
11664            "crypto/idea/i_cfb64.o" =>
11665                [
11666                    "crypto/idea/i_cfb64.c",
11667                ],
11668            "crypto/idea/i_ecb.o" =>
11669                [
11670                    "crypto/idea/i_ecb.c",
11671                ],
11672            "crypto/idea/i_ofb64.o" =>
11673                [
11674                    "crypto/idea/i_ofb64.c",
11675                ],
11676            "crypto/idea/i_skey.o" =>
11677                [
11678                    "crypto/idea/i_skey.c",
11679                ],
11680            "crypto/init.o" =>
11681                [
11682                    "crypto/init.c",
11683                ],
11684            "crypto/kdf/hkdf.o" =>
11685                [
11686                    "crypto/kdf/hkdf.c",
11687                ],
11688            "crypto/kdf/kdf_err.o" =>
11689                [
11690                    "crypto/kdf/kdf_err.c",
11691                ],
11692            "crypto/kdf/scrypt.o" =>
11693                [
11694                    "crypto/kdf/scrypt.c",
11695                ],
11696            "crypto/kdf/tls1_prf.o" =>
11697                [
11698                    "crypto/kdf/tls1_prf.c",
11699                ],
11700            "crypto/lhash/lh_stats.o" =>
11701                [
11702                    "crypto/lhash/lh_stats.c",
11703                ],
11704            "crypto/lhash/lhash.o" =>
11705                [
11706                    "crypto/lhash/lhash.c",
11707                ],
11708            "crypto/md4/md4_dgst.o" =>
11709                [
11710                    "crypto/md4/md4_dgst.c",
11711                ],
11712            "crypto/md4/md4_one.o" =>
11713                [
11714                    "crypto/md4/md4_one.c",
11715                ],
11716            "crypto/md5/md5-x86_64.o" =>
11717                [
11718                    "crypto/md5/md5-x86_64.s",
11719                ],
11720            "crypto/md5/md5_dgst.o" =>
11721                [
11722                    "crypto/md5/md5_dgst.c",
11723                ],
11724            "crypto/md5/md5_one.o" =>
11725                [
11726                    "crypto/md5/md5_one.c",
11727                ],
11728            "crypto/mdc2/mdc2_one.o" =>
11729                [
11730                    "crypto/mdc2/mdc2_one.c",
11731                ],
11732            "crypto/mdc2/mdc2dgst.o" =>
11733                [
11734                    "crypto/mdc2/mdc2dgst.c",
11735                ],
11736            "crypto/mem.o" =>
11737                [
11738                    "crypto/mem.c",
11739                ],
11740            "crypto/mem_dbg.o" =>
11741                [
11742                    "crypto/mem_dbg.c",
11743                ],
11744            "crypto/mem_sec.o" =>
11745                [
11746                    "crypto/mem_sec.c",
11747                ],
11748            "crypto/modes/aesni-gcm-x86_64.o" =>
11749                [
11750                    "crypto/modes/aesni-gcm-x86_64.s",
11751                ],
11752            "crypto/modes/cbc128.o" =>
11753                [
11754                    "crypto/modes/cbc128.c",
11755                ],
11756            "crypto/modes/ccm128.o" =>
11757                [
11758                    "crypto/modes/ccm128.c",
11759                ],
11760            "crypto/modes/cfb128.o" =>
11761                [
11762                    "crypto/modes/cfb128.c",
11763                ],
11764            "crypto/modes/ctr128.o" =>
11765                [
11766                    "crypto/modes/ctr128.c",
11767                ],
11768            "crypto/modes/cts128.o" =>
11769                [
11770                    "crypto/modes/cts128.c",
11771                ],
11772            "crypto/modes/gcm128.o" =>
11773                [
11774                    "crypto/modes/gcm128.c",
11775                ],
11776            "crypto/modes/ghash-x86_64.o" =>
11777                [
11778                    "crypto/modes/ghash-x86_64.s",
11779                ],
11780            "crypto/modes/ocb128.o" =>
11781                [
11782                    "crypto/modes/ocb128.c",
11783                ],
11784            "crypto/modes/ofb128.o" =>
11785                [
11786                    "crypto/modes/ofb128.c",
11787                ],
11788            "crypto/modes/wrap128.o" =>
11789                [
11790                    "crypto/modes/wrap128.c",
11791                ],
11792            "crypto/modes/xts128.o" =>
11793                [
11794                    "crypto/modes/xts128.c",
11795                ],
11796            "crypto/o_dir.o" =>
11797                [
11798                    "crypto/o_dir.c",
11799                ],
11800            "crypto/o_fips.o" =>
11801                [
11802                    "crypto/o_fips.c",
11803                ],
11804            "crypto/o_fopen.o" =>
11805                [
11806                    "crypto/o_fopen.c",
11807                ],
11808            "crypto/o_init.o" =>
11809                [
11810                    "crypto/o_init.c",
11811                ],
11812            "crypto/o_str.o" =>
11813                [
11814                    "crypto/o_str.c",
11815                ],
11816            "crypto/o_time.o" =>
11817                [
11818                    "crypto/o_time.c",
11819                ],
11820            "crypto/objects/o_names.o" =>
11821                [
11822                    "crypto/objects/o_names.c",
11823                ],
11824            "crypto/objects/obj_dat.o" =>
11825                [
11826                    "crypto/objects/obj_dat.c",
11827                ],
11828            "crypto/objects/obj_err.o" =>
11829                [
11830                    "crypto/objects/obj_err.c",
11831                ],
11832            "crypto/objects/obj_lib.o" =>
11833                [
11834                    "crypto/objects/obj_lib.c",
11835                ],
11836            "crypto/objects/obj_xref.o" =>
11837                [
11838                    "crypto/objects/obj_xref.c",
11839                ],
11840            "crypto/ocsp/ocsp_asn.o" =>
11841                [
11842                    "crypto/ocsp/ocsp_asn.c",
11843                ],
11844            "crypto/ocsp/ocsp_cl.o" =>
11845                [
11846                    "crypto/ocsp/ocsp_cl.c",
11847                ],
11848            "crypto/ocsp/ocsp_err.o" =>
11849                [
11850                    "crypto/ocsp/ocsp_err.c",
11851                ],
11852            "crypto/ocsp/ocsp_ext.o" =>
11853                [
11854                    "crypto/ocsp/ocsp_ext.c",
11855                ],
11856            "crypto/ocsp/ocsp_ht.o" =>
11857                [
11858                    "crypto/ocsp/ocsp_ht.c",
11859                ],
11860            "crypto/ocsp/ocsp_lib.o" =>
11861                [
11862                    "crypto/ocsp/ocsp_lib.c",
11863                ],
11864            "crypto/ocsp/ocsp_prn.o" =>
11865                [
11866                    "crypto/ocsp/ocsp_prn.c",
11867                ],
11868            "crypto/ocsp/ocsp_srv.o" =>
11869                [
11870                    "crypto/ocsp/ocsp_srv.c",
11871                ],
11872            "crypto/ocsp/ocsp_vfy.o" =>
11873                [
11874                    "crypto/ocsp/ocsp_vfy.c",
11875                ],
11876            "crypto/ocsp/v3_ocsp.o" =>
11877                [
11878                    "crypto/ocsp/v3_ocsp.c",
11879                ],
11880            "crypto/pem/pem_all.o" =>
11881                [
11882                    "crypto/pem/pem_all.c",
11883                ],
11884            "crypto/pem/pem_err.o" =>
11885                [
11886                    "crypto/pem/pem_err.c",
11887                ],
11888            "crypto/pem/pem_info.o" =>
11889                [
11890                    "crypto/pem/pem_info.c",
11891                ],
11892            "crypto/pem/pem_lib.o" =>
11893                [
11894                    "crypto/pem/pem_lib.c",
11895                ],
11896            "crypto/pem/pem_oth.o" =>
11897                [
11898                    "crypto/pem/pem_oth.c",
11899                ],
11900            "crypto/pem/pem_pk8.o" =>
11901                [
11902                    "crypto/pem/pem_pk8.c",
11903                ],
11904            "crypto/pem/pem_pkey.o" =>
11905                [
11906                    "crypto/pem/pem_pkey.c",
11907                ],
11908            "crypto/pem/pem_sign.o" =>
11909                [
11910                    "crypto/pem/pem_sign.c",
11911                ],
11912            "crypto/pem/pem_x509.o" =>
11913                [
11914                    "crypto/pem/pem_x509.c",
11915                ],
11916            "crypto/pem/pem_xaux.o" =>
11917                [
11918                    "crypto/pem/pem_xaux.c",
11919                ],
11920            "crypto/pem/pvkfmt.o" =>
11921                [
11922                    "crypto/pem/pvkfmt.c",
11923                ],
11924            "crypto/pkcs12/p12_add.o" =>
11925                [
11926                    "crypto/pkcs12/p12_add.c",
11927                ],
11928            "crypto/pkcs12/p12_asn.o" =>
11929                [
11930                    "crypto/pkcs12/p12_asn.c",
11931                ],
11932            "crypto/pkcs12/p12_attr.o" =>
11933                [
11934                    "crypto/pkcs12/p12_attr.c",
11935                ],
11936            "crypto/pkcs12/p12_crpt.o" =>
11937                [
11938                    "crypto/pkcs12/p12_crpt.c",
11939                ],
11940            "crypto/pkcs12/p12_crt.o" =>
11941                [
11942                    "crypto/pkcs12/p12_crt.c",
11943                ],
11944            "crypto/pkcs12/p12_decr.o" =>
11945                [
11946                    "crypto/pkcs12/p12_decr.c",
11947                ],
11948            "crypto/pkcs12/p12_init.o" =>
11949                [
11950                    "crypto/pkcs12/p12_init.c",
11951                ],
11952            "crypto/pkcs12/p12_key.o" =>
11953                [
11954                    "crypto/pkcs12/p12_key.c",
11955                ],
11956            "crypto/pkcs12/p12_kiss.o" =>
11957                [
11958                    "crypto/pkcs12/p12_kiss.c",
11959                ],
11960            "crypto/pkcs12/p12_mutl.o" =>
11961                [
11962                    "crypto/pkcs12/p12_mutl.c",
11963                ],
11964            "crypto/pkcs12/p12_npas.o" =>
11965                [
11966                    "crypto/pkcs12/p12_npas.c",
11967                ],
11968            "crypto/pkcs12/p12_p8d.o" =>
11969                [
11970                    "crypto/pkcs12/p12_p8d.c",
11971                ],
11972            "crypto/pkcs12/p12_p8e.o" =>
11973                [
11974                    "crypto/pkcs12/p12_p8e.c",
11975                ],
11976            "crypto/pkcs12/p12_sbag.o" =>
11977                [
11978                    "crypto/pkcs12/p12_sbag.c",
11979                ],
11980            "crypto/pkcs12/p12_utl.o" =>
11981                [
11982                    "crypto/pkcs12/p12_utl.c",
11983                ],
11984            "crypto/pkcs12/pk12err.o" =>
11985                [
11986                    "crypto/pkcs12/pk12err.c",
11987                ],
11988            "crypto/pkcs7/bio_pk7.o" =>
11989                [
11990                    "crypto/pkcs7/bio_pk7.c",
11991                ],
11992            "crypto/pkcs7/pk7_asn1.o" =>
11993                [
11994                    "crypto/pkcs7/pk7_asn1.c",
11995                ],
11996            "crypto/pkcs7/pk7_attr.o" =>
11997                [
11998                    "crypto/pkcs7/pk7_attr.c",
11999                ],
12000            "crypto/pkcs7/pk7_doit.o" =>
12001                [
12002                    "crypto/pkcs7/pk7_doit.c",
12003                ],
12004            "crypto/pkcs7/pk7_lib.o" =>
12005                [
12006                    "crypto/pkcs7/pk7_lib.c",
12007                ],
12008            "crypto/pkcs7/pk7_mime.o" =>
12009                [
12010                    "crypto/pkcs7/pk7_mime.c",
12011                ],
12012            "crypto/pkcs7/pk7_smime.o" =>
12013                [
12014                    "crypto/pkcs7/pk7_smime.c",
12015                ],
12016            "crypto/pkcs7/pkcs7err.o" =>
12017                [
12018                    "crypto/pkcs7/pkcs7err.c",
12019                ],
12020            "crypto/poly1305/poly1305-x86_64.o" =>
12021                [
12022                    "crypto/poly1305/poly1305-x86_64.s",
12023                ],
12024            "crypto/poly1305/poly1305.o" =>
12025                [
12026                    "crypto/poly1305/poly1305.c",
12027                ],
12028            "crypto/poly1305/poly1305_ameth.o" =>
12029                [
12030                    "crypto/poly1305/poly1305_ameth.c",
12031                ],
12032            "crypto/poly1305/poly1305_pmeth.o" =>
12033                [
12034                    "crypto/poly1305/poly1305_pmeth.c",
12035                ],
12036            "crypto/rand/drbg_ctr.o" =>
12037                [
12038                    "crypto/rand/drbg_ctr.c",
12039                ],
12040            "crypto/rand/drbg_lib.o" =>
12041                [
12042                    "crypto/rand/drbg_lib.c",
12043                ],
12044            "crypto/rand/rand_egd.o" =>
12045                [
12046                    "crypto/rand/rand_egd.c",
12047                ],
12048            "crypto/rand/rand_err.o" =>
12049                [
12050                    "crypto/rand/rand_err.c",
12051                ],
12052            "crypto/rand/rand_lib.o" =>
12053                [
12054                    "crypto/rand/rand_lib.c",
12055                ],
12056            "crypto/rand/rand_unix.o" =>
12057                [
12058                    "crypto/rand/rand_unix.c",
12059                ],
12060            "crypto/rand/rand_vms.o" =>
12061                [
12062                    "crypto/rand/rand_vms.c",
12063                ],
12064            "crypto/rand/rand_win.o" =>
12065                [
12066                    "crypto/rand/rand_win.c",
12067                ],
12068            "crypto/rand/randfile.o" =>
12069                [
12070                    "crypto/rand/randfile.c",
12071                ],
12072            "crypto/rc2/rc2_cbc.o" =>
12073                [
12074                    "crypto/rc2/rc2_cbc.c",
12075                ],
12076            "crypto/rc2/rc2_ecb.o" =>
12077                [
12078                    "crypto/rc2/rc2_ecb.c",
12079                ],
12080            "crypto/rc2/rc2_skey.o" =>
12081                [
12082                    "crypto/rc2/rc2_skey.c",
12083                ],
12084            "crypto/rc2/rc2cfb64.o" =>
12085                [
12086                    "crypto/rc2/rc2cfb64.c",
12087                ],
12088            "crypto/rc2/rc2ofb64.o" =>
12089                [
12090                    "crypto/rc2/rc2ofb64.c",
12091                ],
12092            "crypto/rc4/rc4-md5-x86_64.o" =>
12093                [
12094                    "crypto/rc4/rc4-md5-x86_64.s",
12095                ],
12096            "crypto/rc4/rc4-x86_64.o" =>
12097                [
12098                    "crypto/rc4/rc4-x86_64.s",
12099                ],
12100            "crypto/ripemd/rmd_dgst.o" =>
12101                [
12102                    "crypto/ripemd/rmd_dgst.c",
12103                ],
12104            "crypto/ripemd/rmd_one.o" =>
12105                [
12106                    "crypto/ripemd/rmd_one.c",
12107                ],
12108            "crypto/rsa/rsa_ameth.o" =>
12109                [
12110                    "crypto/rsa/rsa_ameth.c",
12111                ],
12112            "crypto/rsa/rsa_asn1.o" =>
12113                [
12114                    "crypto/rsa/rsa_asn1.c",
12115                ],
12116            "crypto/rsa/rsa_chk.o" =>
12117                [
12118                    "crypto/rsa/rsa_chk.c",
12119                ],
12120            "crypto/rsa/rsa_crpt.o" =>
12121                [
12122                    "crypto/rsa/rsa_crpt.c",
12123                ],
12124            "crypto/rsa/rsa_depr.o" =>
12125                [
12126                    "crypto/rsa/rsa_depr.c",
12127                ],
12128            "crypto/rsa/rsa_err.o" =>
12129                [
12130                    "crypto/rsa/rsa_err.c",
12131                ],
12132            "crypto/rsa/rsa_gen.o" =>
12133                [
12134                    "crypto/rsa/rsa_gen.c",
12135                ],
12136            "crypto/rsa/rsa_lib.o" =>
12137                [
12138                    "crypto/rsa/rsa_lib.c",
12139                ],
12140            "crypto/rsa/rsa_meth.o" =>
12141                [
12142                    "crypto/rsa/rsa_meth.c",
12143                ],
12144            "crypto/rsa/rsa_mp.o" =>
12145                [
12146                    "crypto/rsa/rsa_mp.c",
12147                ],
12148            "crypto/rsa/rsa_none.o" =>
12149                [
12150                    "crypto/rsa/rsa_none.c",
12151                ],
12152            "crypto/rsa/rsa_oaep.o" =>
12153                [
12154                    "crypto/rsa/rsa_oaep.c",
12155                ],
12156            "crypto/rsa/rsa_ossl.o" =>
12157                [
12158                    "crypto/rsa/rsa_ossl.c",
12159                ],
12160            "crypto/rsa/rsa_pk1.o" =>
12161                [
12162                    "crypto/rsa/rsa_pk1.c",
12163                ],
12164            "crypto/rsa/rsa_pmeth.o" =>
12165                [
12166                    "crypto/rsa/rsa_pmeth.c",
12167                ],
12168            "crypto/rsa/rsa_prn.o" =>
12169                [
12170                    "crypto/rsa/rsa_prn.c",
12171                ],
12172            "crypto/rsa/rsa_pss.o" =>
12173                [
12174                    "crypto/rsa/rsa_pss.c",
12175                ],
12176            "crypto/rsa/rsa_saos.o" =>
12177                [
12178                    "crypto/rsa/rsa_saos.c",
12179                ],
12180            "crypto/rsa/rsa_sign.o" =>
12181                [
12182                    "crypto/rsa/rsa_sign.c",
12183                ],
12184            "crypto/rsa/rsa_ssl.o" =>
12185                [
12186                    "crypto/rsa/rsa_ssl.c",
12187                ],
12188            "crypto/rsa/rsa_x931.o" =>
12189                [
12190                    "crypto/rsa/rsa_x931.c",
12191                ],
12192            "crypto/rsa/rsa_x931g.o" =>
12193                [
12194                    "crypto/rsa/rsa_x931g.c",
12195                ],
12196            "crypto/seed/seed.o" =>
12197                [
12198                    "crypto/seed/seed.c",
12199                ],
12200            "crypto/seed/seed_cbc.o" =>
12201                [
12202                    "crypto/seed/seed_cbc.c",
12203                ],
12204            "crypto/seed/seed_cfb.o" =>
12205                [
12206                    "crypto/seed/seed_cfb.c",
12207                ],
12208            "crypto/seed/seed_ecb.o" =>
12209                [
12210                    "crypto/seed/seed_ecb.c",
12211                ],
12212            "crypto/seed/seed_ofb.o" =>
12213                [
12214                    "crypto/seed/seed_ofb.c",
12215                ],
12216            "crypto/sha/keccak1600-x86_64.o" =>
12217                [
12218                    "crypto/sha/keccak1600-x86_64.s",
12219                ],
12220            "crypto/sha/sha1-mb-x86_64.o" =>
12221                [
12222                    "crypto/sha/sha1-mb-x86_64.s",
12223                ],
12224            "crypto/sha/sha1-x86_64.o" =>
12225                [
12226                    "crypto/sha/sha1-x86_64.s",
12227                ],
12228            "crypto/sha/sha1_one.o" =>
12229                [
12230                    "crypto/sha/sha1_one.c",
12231                ],
12232            "crypto/sha/sha1dgst.o" =>
12233                [
12234                    "crypto/sha/sha1dgst.c",
12235                ],
12236            "crypto/sha/sha256-mb-x86_64.o" =>
12237                [
12238                    "crypto/sha/sha256-mb-x86_64.s",
12239                ],
12240            "crypto/sha/sha256-x86_64.o" =>
12241                [
12242                    "crypto/sha/sha256-x86_64.s",
12243                ],
12244            "crypto/sha/sha256.o" =>
12245                [
12246                    "crypto/sha/sha256.c",
12247                ],
12248            "crypto/sha/sha512-x86_64.o" =>
12249                [
12250                    "crypto/sha/sha512-x86_64.s",
12251                ],
12252            "crypto/sha/sha512.o" =>
12253                [
12254                    "crypto/sha/sha512.c",
12255                ],
12256            "crypto/siphash/siphash.o" =>
12257                [
12258                    "crypto/siphash/siphash.c",
12259                ],
12260            "crypto/siphash/siphash_ameth.o" =>
12261                [
12262                    "crypto/siphash/siphash_ameth.c",
12263                ],
12264            "crypto/siphash/siphash_pmeth.o" =>
12265                [
12266                    "crypto/siphash/siphash_pmeth.c",
12267                ],
12268            "crypto/sm2/sm2_crypt.o" =>
12269                [
12270                    "crypto/sm2/sm2_crypt.c",
12271                ],
12272            "crypto/sm2/sm2_err.o" =>
12273                [
12274                    "crypto/sm2/sm2_err.c",
12275                ],
12276            "crypto/sm2/sm2_pmeth.o" =>
12277                [
12278                    "crypto/sm2/sm2_pmeth.c",
12279                ],
12280            "crypto/sm2/sm2_sign.o" =>
12281                [
12282                    "crypto/sm2/sm2_sign.c",
12283                ],
12284            "crypto/sm3/m_sm3.o" =>
12285                [
12286                    "crypto/sm3/m_sm3.c",
12287                ],
12288            "crypto/sm3/sm3.o" =>
12289                [
12290                    "crypto/sm3/sm3.c",
12291                ],
12292            "crypto/sm4/sm4.o" =>
12293                [
12294                    "crypto/sm4/sm4.c",
12295                ],
12296            "crypto/srp/srp_lib.o" =>
12297                [
12298                    "crypto/srp/srp_lib.c",
12299                ],
12300            "crypto/srp/srp_vfy.o" =>
12301                [
12302                    "crypto/srp/srp_vfy.c",
12303                ],
12304            "crypto/stack/stack.o" =>
12305                [
12306                    "crypto/stack/stack.c",
12307                ],
12308            "crypto/store/loader_file.o" =>
12309                [
12310                    "crypto/store/loader_file.c",
12311                ],
12312            "crypto/store/store_err.o" =>
12313                [
12314                    "crypto/store/store_err.c",
12315                ],
12316            "crypto/store/store_init.o" =>
12317                [
12318                    "crypto/store/store_init.c",
12319                ],
12320            "crypto/store/store_lib.o" =>
12321                [
12322                    "crypto/store/store_lib.c",
12323                ],
12324            "crypto/store/store_register.o" =>
12325                [
12326                    "crypto/store/store_register.c",
12327                ],
12328            "crypto/store/store_strings.o" =>
12329                [
12330                    "crypto/store/store_strings.c",
12331                ],
12332            "crypto/threads_none.o" =>
12333                [
12334                    "crypto/threads_none.c",
12335                ],
12336            "crypto/threads_pthread.o" =>
12337                [
12338                    "crypto/threads_pthread.c",
12339                ],
12340            "crypto/threads_win.o" =>
12341                [
12342                    "crypto/threads_win.c",
12343                ],
12344            "crypto/ts/ts_asn1.o" =>
12345                [
12346                    "crypto/ts/ts_asn1.c",
12347                ],
12348            "crypto/ts/ts_conf.o" =>
12349                [
12350                    "crypto/ts/ts_conf.c",
12351                ],
12352            "crypto/ts/ts_err.o" =>
12353                [
12354                    "crypto/ts/ts_err.c",
12355                ],
12356            "crypto/ts/ts_lib.o" =>
12357                [
12358                    "crypto/ts/ts_lib.c",
12359                ],
12360            "crypto/ts/ts_req_print.o" =>
12361                [
12362                    "crypto/ts/ts_req_print.c",
12363                ],
12364            "crypto/ts/ts_req_utils.o" =>
12365                [
12366                    "crypto/ts/ts_req_utils.c",
12367                ],
12368            "crypto/ts/ts_rsp_print.o" =>
12369                [
12370                    "crypto/ts/ts_rsp_print.c",
12371                ],
12372            "crypto/ts/ts_rsp_sign.o" =>
12373                [
12374                    "crypto/ts/ts_rsp_sign.c",
12375                ],
12376            "crypto/ts/ts_rsp_utils.o" =>
12377                [
12378                    "crypto/ts/ts_rsp_utils.c",
12379                ],
12380            "crypto/ts/ts_rsp_verify.o" =>
12381                [
12382                    "crypto/ts/ts_rsp_verify.c",
12383                ],
12384            "crypto/ts/ts_verify_ctx.o" =>
12385                [
12386                    "crypto/ts/ts_verify_ctx.c",
12387                ],
12388            "crypto/txt_db/txt_db.o" =>
12389                [
12390                    "crypto/txt_db/txt_db.c",
12391                ],
12392            "crypto/ui/ui_err.o" =>
12393                [
12394                    "crypto/ui/ui_err.c",
12395                ],
12396            "crypto/ui/ui_lib.o" =>
12397                [
12398                    "crypto/ui/ui_lib.c",
12399                ],
12400            "crypto/ui/ui_null.o" =>
12401                [
12402                    "crypto/ui/ui_null.c",
12403                ],
12404            "crypto/ui/ui_openssl.o" =>
12405                [
12406                    "crypto/ui/ui_openssl.c",
12407                ],
12408            "crypto/ui/ui_util.o" =>
12409                [
12410                    "crypto/ui/ui_util.c",
12411                ],
12412            "crypto/uid.o" =>
12413                [
12414                    "crypto/uid.c",
12415                ],
12416            "crypto/whrlpool/wp-x86_64.o" =>
12417                [
12418                    "crypto/whrlpool/wp-x86_64.s",
12419                ],
12420            "crypto/whrlpool/wp_dgst.o" =>
12421                [
12422                    "crypto/whrlpool/wp_dgst.c",
12423                ],
12424            "crypto/x509/by_dir.o" =>
12425                [
12426                    "crypto/x509/by_dir.c",
12427                ],
12428            "crypto/x509/by_file.o" =>
12429                [
12430                    "crypto/x509/by_file.c",
12431                ],
12432            "crypto/x509/t_crl.o" =>
12433                [
12434                    "crypto/x509/t_crl.c",
12435                ],
12436            "crypto/x509/t_req.o" =>
12437                [
12438                    "crypto/x509/t_req.c",
12439                ],
12440            "crypto/x509/t_x509.o" =>
12441                [
12442                    "crypto/x509/t_x509.c",
12443                ],
12444            "crypto/x509/x509_att.o" =>
12445                [
12446                    "crypto/x509/x509_att.c",
12447                ],
12448            "crypto/x509/x509_cmp.o" =>
12449                [
12450                    "crypto/x509/x509_cmp.c",
12451                ],
12452            "crypto/x509/x509_d2.o" =>
12453                [
12454                    "crypto/x509/x509_d2.c",
12455                ],
12456            "crypto/x509/x509_def.o" =>
12457                [
12458                    "crypto/x509/x509_def.c",
12459                ],
12460            "crypto/x509/x509_err.o" =>
12461                [
12462                    "crypto/x509/x509_err.c",
12463                ],
12464            "crypto/x509/x509_ext.o" =>
12465                [
12466                    "crypto/x509/x509_ext.c",
12467                ],
12468            "crypto/x509/x509_lu.o" =>
12469                [
12470                    "crypto/x509/x509_lu.c",
12471                ],
12472            "crypto/x509/x509_meth.o" =>
12473                [
12474                    "crypto/x509/x509_meth.c",
12475                ],
12476            "crypto/x509/x509_obj.o" =>
12477                [
12478                    "crypto/x509/x509_obj.c",
12479                ],
12480            "crypto/x509/x509_r2x.o" =>
12481                [
12482                    "crypto/x509/x509_r2x.c",
12483                ],
12484            "crypto/x509/x509_req.o" =>
12485                [
12486                    "crypto/x509/x509_req.c",
12487                ],
12488            "crypto/x509/x509_set.o" =>
12489                [
12490                    "crypto/x509/x509_set.c",
12491                ],
12492            "crypto/x509/x509_trs.o" =>
12493                [
12494                    "crypto/x509/x509_trs.c",
12495                ],
12496            "crypto/x509/x509_txt.o" =>
12497                [
12498                    "crypto/x509/x509_txt.c",
12499                ],
12500            "crypto/x509/x509_v3.o" =>
12501                [
12502                    "crypto/x509/x509_v3.c",
12503                ],
12504            "crypto/x509/x509_vfy.o" =>
12505                [
12506                    "crypto/x509/x509_vfy.c",
12507                ],
12508            "crypto/x509/x509_vpm.o" =>
12509                [
12510                    "crypto/x509/x509_vpm.c",
12511                ],
12512            "crypto/x509/x509cset.o" =>
12513                [
12514                    "crypto/x509/x509cset.c",
12515                ],
12516            "crypto/x509/x509name.o" =>
12517                [
12518                    "crypto/x509/x509name.c",
12519                ],
12520            "crypto/x509/x509rset.o" =>
12521                [
12522                    "crypto/x509/x509rset.c",
12523                ],
12524            "crypto/x509/x509spki.o" =>
12525                [
12526                    "crypto/x509/x509spki.c",
12527                ],
12528            "crypto/x509/x509type.o" =>
12529                [
12530                    "crypto/x509/x509type.c",
12531                ],
12532            "crypto/x509/x_all.o" =>
12533                [
12534                    "crypto/x509/x_all.c",
12535                ],
12536            "crypto/x509/x_attrib.o" =>
12537                [
12538                    "crypto/x509/x_attrib.c",
12539                ],
12540            "crypto/x509/x_crl.o" =>
12541                [
12542                    "crypto/x509/x_crl.c",
12543                ],
12544            "crypto/x509/x_exten.o" =>
12545                [
12546                    "crypto/x509/x_exten.c",
12547                ],
12548            "crypto/x509/x_name.o" =>
12549                [
12550                    "crypto/x509/x_name.c",
12551                ],
12552            "crypto/x509/x_pubkey.o" =>
12553                [
12554                    "crypto/x509/x_pubkey.c",
12555                ],
12556            "crypto/x509/x_req.o" =>
12557                [
12558                    "crypto/x509/x_req.c",
12559                ],
12560            "crypto/x509/x_x509.o" =>
12561                [
12562                    "crypto/x509/x_x509.c",
12563                ],
12564            "crypto/x509/x_x509a.o" =>
12565                [
12566                    "crypto/x509/x_x509a.c",
12567                ],
12568            "crypto/x509v3/pcy_cache.o" =>
12569                [
12570                    "crypto/x509v3/pcy_cache.c",
12571                ],
12572            "crypto/x509v3/pcy_data.o" =>
12573                [
12574                    "crypto/x509v3/pcy_data.c",
12575                ],
12576            "crypto/x509v3/pcy_lib.o" =>
12577                [
12578                    "crypto/x509v3/pcy_lib.c",
12579                ],
12580            "crypto/x509v3/pcy_map.o" =>
12581                [
12582                    "crypto/x509v3/pcy_map.c",
12583                ],
12584            "crypto/x509v3/pcy_node.o" =>
12585                [
12586                    "crypto/x509v3/pcy_node.c",
12587                ],
12588            "crypto/x509v3/pcy_tree.o" =>
12589                [
12590                    "crypto/x509v3/pcy_tree.c",
12591                ],
12592            "crypto/x509v3/v3_addr.o" =>
12593                [
12594                    "crypto/x509v3/v3_addr.c",
12595                ],
12596            "crypto/x509v3/v3_admis.o" =>
12597                [
12598                    "crypto/x509v3/v3_admis.c",
12599                ],
12600            "crypto/x509v3/v3_akey.o" =>
12601                [
12602                    "crypto/x509v3/v3_akey.c",
12603                ],
12604            "crypto/x509v3/v3_akeya.o" =>
12605                [
12606                    "crypto/x509v3/v3_akeya.c",
12607                ],
12608            "crypto/x509v3/v3_alt.o" =>
12609                [
12610                    "crypto/x509v3/v3_alt.c",
12611                ],
12612            "crypto/x509v3/v3_asid.o" =>
12613                [
12614                    "crypto/x509v3/v3_asid.c",
12615                ],
12616            "crypto/x509v3/v3_bcons.o" =>
12617                [
12618                    "crypto/x509v3/v3_bcons.c",
12619                ],
12620            "crypto/x509v3/v3_bitst.o" =>
12621                [
12622                    "crypto/x509v3/v3_bitst.c",
12623                ],
12624            "crypto/x509v3/v3_conf.o" =>
12625                [
12626                    "crypto/x509v3/v3_conf.c",
12627                ],
12628            "crypto/x509v3/v3_cpols.o" =>
12629                [
12630                    "crypto/x509v3/v3_cpols.c",
12631                ],
12632            "crypto/x509v3/v3_crld.o" =>
12633                [
12634                    "crypto/x509v3/v3_crld.c",
12635                ],
12636            "crypto/x509v3/v3_enum.o" =>
12637                [
12638                    "crypto/x509v3/v3_enum.c",
12639                ],
12640            "crypto/x509v3/v3_extku.o" =>
12641                [
12642                    "crypto/x509v3/v3_extku.c",
12643                ],
12644            "crypto/x509v3/v3_genn.o" =>
12645                [
12646                    "crypto/x509v3/v3_genn.c",
12647                ],
12648            "crypto/x509v3/v3_ia5.o" =>
12649                [
12650                    "crypto/x509v3/v3_ia5.c",
12651                ],
12652            "crypto/x509v3/v3_info.o" =>
12653                [
12654                    "crypto/x509v3/v3_info.c",
12655                ],
12656            "crypto/x509v3/v3_int.o" =>
12657                [
12658                    "crypto/x509v3/v3_int.c",
12659                ],
12660            "crypto/x509v3/v3_lib.o" =>
12661                [
12662                    "crypto/x509v3/v3_lib.c",
12663                ],
12664            "crypto/x509v3/v3_ncons.o" =>
12665                [
12666                    "crypto/x509v3/v3_ncons.c",
12667                ],
12668            "crypto/x509v3/v3_pci.o" =>
12669                [
12670                    "crypto/x509v3/v3_pci.c",
12671                ],
12672            "crypto/x509v3/v3_pcia.o" =>
12673                [
12674                    "crypto/x509v3/v3_pcia.c",
12675                ],
12676            "crypto/x509v3/v3_pcons.o" =>
12677                [
12678                    "crypto/x509v3/v3_pcons.c",
12679                ],
12680            "crypto/x509v3/v3_pku.o" =>
12681                [
12682                    "crypto/x509v3/v3_pku.c",
12683                ],
12684            "crypto/x509v3/v3_pmaps.o" =>
12685                [
12686                    "crypto/x509v3/v3_pmaps.c",
12687                ],
12688            "crypto/x509v3/v3_prn.o" =>
12689                [
12690                    "crypto/x509v3/v3_prn.c",
12691                ],
12692            "crypto/x509v3/v3_purp.o" =>
12693                [
12694                    "crypto/x509v3/v3_purp.c",
12695                ],
12696            "crypto/x509v3/v3_skey.o" =>
12697                [
12698                    "crypto/x509v3/v3_skey.c",
12699                ],
12700            "crypto/x509v3/v3_sxnet.o" =>
12701                [
12702                    "crypto/x509v3/v3_sxnet.c",
12703                ],
12704            "crypto/x509v3/v3_tlsf.o" =>
12705                [
12706                    "crypto/x509v3/v3_tlsf.c",
12707                ],
12708            "crypto/x509v3/v3_utl.o" =>
12709                [
12710                    "crypto/x509v3/v3_utl.c",
12711                ],
12712            "crypto/x509v3/v3err.o" =>
12713                [
12714                    "crypto/x509v3/v3err.c",
12715                ],
12716            "crypto/x86_64cpuid.o" =>
12717                [
12718                    "crypto/x86_64cpuid.s",
12719                ],
12720            "engines/e_capi.o" =>
12721                [
12722                    "engines/e_capi.c",
12723                ],
12724            "engines/e_padlock-x86_64.o" =>
12725                [
12726                    "engines/e_padlock-x86_64.s",
12727                ],
12728            "engines/e_padlock.o" =>
12729                [
12730                    "engines/e_padlock.c",
12731                ],
12732            "fuzz/asn1-test" =>
12733                [
12734                    "fuzz/asn1.o",
12735                    "fuzz/test-corpus.o",
12736                ],
12737            "fuzz/asn1.o" =>
12738                [
12739                    "fuzz/asn1.c",
12740                ],
12741            "fuzz/asn1parse-test" =>
12742                [
12743                    "fuzz/asn1parse.o",
12744                    "fuzz/test-corpus.o",
12745                ],
12746            "fuzz/asn1parse.o" =>
12747                [
12748                    "fuzz/asn1parse.c",
12749                ],
12750            "fuzz/bignum-test" =>
12751                [
12752                    "fuzz/bignum.o",
12753                    "fuzz/test-corpus.o",
12754                ],
12755            "fuzz/bignum.o" =>
12756                [
12757                    "fuzz/bignum.c",
12758                ],
12759            "fuzz/bndiv-test" =>
12760                [
12761                    "fuzz/bndiv.o",
12762                    "fuzz/test-corpus.o",
12763                ],
12764            "fuzz/bndiv.o" =>
12765                [
12766                    "fuzz/bndiv.c",
12767                ],
12768            "fuzz/client-test" =>
12769                [
12770                    "fuzz/client.o",
12771                    "fuzz/test-corpus.o",
12772                ],
12773            "fuzz/client.o" =>
12774                [
12775                    "fuzz/client.c",
12776                ],
12777            "fuzz/cms-test" =>
12778                [
12779                    "fuzz/cms.o",
12780                    "fuzz/test-corpus.o",
12781                ],
12782            "fuzz/cms.o" =>
12783                [
12784                    "fuzz/cms.c",
12785                ],
12786            "fuzz/conf-test" =>
12787                [
12788                    "fuzz/conf.o",
12789                    "fuzz/test-corpus.o",
12790                ],
12791            "fuzz/conf.o" =>
12792                [
12793                    "fuzz/conf.c",
12794                ],
12795            "fuzz/crl-test" =>
12796                [
12797                    "fuzz/crl.o",
12798                    "fuzz/test-corpus.o",
12799                ],
12800            "fuzz/crl.o" =>
12801                [
12802                    "fuzz/crl.c",
12803                ],
12804            "fuzz/ct-test" =>
12805                [
12806                    "fuzz/ct.o",
12807                    "fuzz/test-corpus.o",
12808                ],
12809            "fuzz/ct.o" =>
12810                [
12811                    "fuzz/ct.c",
12812                ],
12813            "fuzz/server-test" =>
12814                [
12815                    "fuzz/server.o",
12816                    "fuzz/test-corpus.o",
12817                ],
12818            "fuzz/server.o" =>
12819                [
12820                    "fuzz/server.c",
12821                ],
12822            "fuzz/test-corpus.o" =>
12823                [
12824                    "fuzz/test-corpus.c",
12825                ],
12826            "fuzz/x509-test" =>
12827                [
12828                    "fuzz/test-corpus.o",
12829                    "fuzz/x509.o",
12830                ],
12831            "fuzz/x509.o" =>
12832                [
12833                    "fuzz/x509.c",
12834                ],
12835            "libcrypto" =>
12836                [
12837                    "crypto/aes/aes_cbc.o",
12838                    "crypto/aes/aes_cfb.o",
12839                    "crypto/aes/aes_core.o",
12840                    "crypto/aes/aes_ecb.o",
12841                    "crypto/aes/aes_ige.o",
12842                    "crypto/aes/aes_misc.o",
12843                    "crypto/aes/aes_ofb.o",
12844                    "crypto/aes/aes_wrap.o",
12845                    "crypto/aes/aesni-mb-x86_64.o",
12846                    "crypto/aes/aesni-sha1-x86_64.o",
12847                    "crypto/aes/aesni-sha256-x86_64.o",
12848                    "crypto/aes/aesni-x86_64.o",
12849                    "crypto/aes/vpaes-x86_64.o",
12850                    "crypto/aria/aria.o",
12851                    "crypto/asn1/a_bitstr.o",
12852                    "crypto/asn1/a_d2i_fp.o",
12853                    "crypto/asn1/a_digest.o",
12854                    "crypto/asn1/a_dup.o",
12855                    "crypto/asn1/a_gentm.o",
12856                    "crypto/asn1/a_i2d_fp.o",
12857                    "crypto/asn1/a_int.o",
12858                    "crypto/asn1/a_mbstr.o",
12859                    "crypto/asn1/a_object.o",
12860                    "crypto/asn1/a_octet.o",
12861                    "crypto/asn1/a_print.o",
12862                    "crypto/asn1/a_sign.o",
12863                    "crypto/asn1/a_strex.o",
12864                    "crypto/asn1/a_strnid.o",
12865                    "crypto/asn1/a_time.o",
12866                    "crypto/asn1/a_type.o",
12867                    "crypto/asn1/a_utctm.o",
12868                    "crypto/asn1/a_utf8.o",
12869                    "crypto/asn1/a_verify.o",
12870                    "crypto/asn1/ameth_lib.o",
12871                    "crypto/asn1/asn1_err.o",
12872                    "crypto/asn1/asn1_gen.o",
12873                    "crypto/asn1/asn1_item_list.o",
12874                    "crypto/asn1/asn1_lib.o",
12875                    "crypto/asn1/asn1_par.o",
12876                    "crypto/asn1/asn_mime.o",
12877                    "crypto/asn1/asn_moid.o",
12878                    "crypto/asn1/asn_mstbl.o",
12879                    "crypto/asn1/asn_pack.o",
12880                    "crypto/asn1/bio_asn1.o",
12881                    "crypto/asn1/bio_ndef.o",
12882                    "crypto/asn1/d2i_pr.o",
12883                    "crypto/asn1/d2i_pu.o",
12884                    "crypto/asn1/evp_asn1.o",
12885                    "crypto/asn1/f_int.o",
12886                    "crypto/asn1/f_string.o",
12887                    "crypto/asn1/i2d_pr.o",
12888                    "crypto/asn1/i2d_pu.o",
12889                    "crypto/asn1/n_pkey.o",
12890                    "crypto/asn1/nsseq.o",
12891                    "crypto/asn1/p5_pbe.o",
12892                    "crypto/asn1/p5_pbev2.o",
12893                    "crypto/asn1/p5_scrypt.o",
12894                    "crypto/asn1/p8_pkey.o",
12895                    "crypto/asn1/t_bitst.o",
12896                    "crypto/asn1/t_pkey.o",
12897                    "crypto/asn1/t_spki.o",
12898                    "crypto/asn1/tasn_dec.o",
12899                    "crypto/asn1/tasn_enc.o",
12900                    "crypto/asn1/tasn_fre.o",
12901                    "crypto/asn1/tasn_new.o",
12902                    "crypto/asn1/tasn_prn.o",
12903                    "crypto/asn1/tasn_scn.o",
12904                    "crypto/asn1/tasn_typ.o",
12905                    "crypto/asn1/tasn_utl.o",
12906                    "crypto/asn1/x_algor.o",
12907                    "crypto/asn1/x_bignum.o",
12908                    "crypto/asn1/x_info.o",
12909                    "crypto/asn1/x_int64.o",
12910                    "crypto/asn1/x_long.o",
12911                    "crypto/asn1/x_pkey.o",
12912                    "crypto/asn1/x_sig.o",
12913                    "crypto/asn1/x_spki.o",
12914                    "crypto/asn1/x_val.o",
12915                    "crypto/async/arch/async_null.o",
12916                    "crypto/async/arch/async_posix.o",
12917                    "crypto/async/arch/async_win.o",
12918                    "crypto/async/async.o",
12919                    "crypto/async/async_err.o",
12920                    "crypto/async/async_wait.o",
12921                    "crypto/bf/bf_cfb64.o",
12922                    "crypto/bf/bf_ecb.o",
12923                    "crypto/bf/bf_enc.o",
12924                    "crypto/bf/bf_ofb64.o",
12925                    "crypto/bf/bf_skey.o",
12926                    "crypto/bio/b_addr.o",
12927                    "crypto/bio/b_dump.o",
12928                    "crypto/bio/b_print.o",
12929                    "crypto/bio/b_sock.o",
12930                    "crypto/bio/b_sock2.o",
12931                    "crypto/bio/bf_buff.o",
12932                    "crypto/bio/bf_lbuf.o",
12933                    "crypto/bio/bf_nbio.o",
12934                    "crypto/bio/bf_null.o",
12935                    "crypto/bio/bio_cb.o",
12936                    "crypto/bio/bio_err.o",
12937                    "crypto/bio/bio_lib.o",
12938                    "crypto/bio/bio_meth.o",
12939                    "crypto/bio/bss_acpt.o",
12940                    "crypto/bio/bss_bio.o",
12941                    "crypto/bio/bss_conn.o",
12942                    "crypto/bio/bss_dgram.o",
12943                    "crypto/bio/bss_fd.o",
12944                    "crypto/bio/bss_file.o",
12945                    "crypto/bio/bss_log.o",
12946                    "crypto/bio/bss_mem.o",
12947                    "crypto/bio/bss_null.o",
12948                    "crypto/bio/bss_sock.o",
12949                    "crypto/blake2/blake2b.o",
12950                    "crypto/blake2/blake2s.o",
12951                    "crypto/blake2/m_blake2b.o",
12952                    "crypto/blake2/m_blake2s.o",
12953                    "crypto/bn/asm/x86_64-gcc.o",
12954                    "crypto/bn/bn_add.o",
12955                    "crypto/bn/bn_blind.o",
12956                    "crypto/bn/bn_const.o",
12957                    "crypto/bn/bn_ctx.o",
12958                    "crypto/bn/bn_depr.o",
12959                    "crypto/bn/bn_dh.o",
12960                    "crypto/bn/bn_div.o",
12961                    "crypto/bn/bn_err.o",
12962                    "crypto/bn/bn_exp.o",
12963                    "crypto/bn/bn_exp2.o",
12964                    "crypto/bn/bn_gcd.o",
12965                    "crypto/bn/bn_gf2m.o",
12966                    "crypto/bn/bn_intern.o",
12967                    "crypto/bn/bn_kron.o",
12968                    "crypto/bn/bn_lib.o",
12969                    "crypto/bn/bn_mod.o",
12970                    "crypto/bn/bn_mont.o",
12971                    "crypto/bn/bn_mpi.o",
12972                    "crypto/bn/bn_mul.o",
12973                    "crypto/bn/bn_nist.o",
12974                    "crypto/bn/bn_prime.o",
12975                    "crypto/bn/bn_print.o",
12976                    "crypto/bn/bn_rand.o",
12977                    "crypto/bn/bn_recp.o",
12978                    "crypto/bn/bn_shift.o",
12979                    "crypto/bn/bn_sqr.o",
12980                    "crypto/bn/bn_sqrt.o",
12981                    "crypto/bn/bn_srp.o",
12982                    "crypto/bn/bn_word.o",
12983                    "crypto/bn/bn_x931p.o",
12984                    "crypto/bn/rsaz-avx2.o",
12985                    "crypto/bn/rsaz-x86_64.o",
12986                    "crypto/bn/rsaz_exp.o",
12987                    "crypto/bn/x86_64-gf2m.o",
12988                    "crypto/bn/x86_64-mont.o",
12989                    "crypto/bn/x86_64-mont5.o",
12990                    "crypto/buffer/buf_err.o",
12991                    "crypto/buffer/buffer.o",
12992                    "crypto/camellia/cmll-x86_64.o",
12993                    "crypto/camellia/cmll_cfb.o",
12994                    "crypto/camellia/cmll_ctr.o",
12995                    "crypto/camellia/cmll_ecb.o",
12996                    "crypto/camellia/cmll_misc.o",
12997                    "crypto/camellia/cmll_ofb.o",
12998                    "crypto/cast/c_cfb64.o",
12999                    "crypto/cast/c_ecb.o",
13000                    "crypto/cast/c_enc.o",
13001                    "crypto/cast/c_ofb64.o",
13002                    "crypto/cast/c_skey.o",
13003                    "crypto/chacha/chacha-x86_64.o",
13004                    "crypto/cmac/cm_ameth.o",
13005                    "crypto/cmac/cm_pmeth.o",
13006                    "crypto/cmac/cmac.o",
13007                    "crypto/cms/cms_asn1.o",
13008                    "crypto/cms/cms_att.o",
13009                    "crypto/cms/cms_cd.o",
13010                    "crypto/cms/cms_dd.o",
13011                    "crypto/cms/cms_enc.o",
13012                    "crypto/cms/cms_env.o",
13013                    "crypto/cms/cms_err.o",
13014                    "crypto/cms/cms_ess.o",
13015                    "crypto/cms/cms_io.o",
13016                    "crypto/cms/cms_kari.o",
13017                    "crypto/cms/cms_lib.o",
13018                    "crypto/cms/cms_pwri.o",
13019                    "crypto/cms/cms_sd.o",
13020                    "crypto/cms/cms_smime.o",
13021                    "crypto/conf/conf_api.o",
13022                    "crypto/conf/conf_def.o",
13023                    "crypto/conf/conf_err.o",
13024                    "crypto/conf/conf_lib.o",
13025                    "crypto/conf/conf_mall.o",
13026                    "crypto/conf/conf_mod.o",
13027                    "crypto/conf/conf_sap.o",
13028                    "crypto/conf/conf_ssl.o",
13029                    "crypto/cpt_err.o",
13030                    "crypto/cryptlib.o",
13031                    "crypto/ct/ct_b64.o",
13032                    "crypto/ct/ct_err.o",
13033                    "crypto/ct/ct_log.o",
13034                    "crypto/ct/ct_oct.o",
13035                    "crypto/ct/ct_policy.o",
13036                    "crypto/ct/ct_prn.o",
13037                    "crypto/ct/ct_sct.o",
13038                    "crypto/ct/ct_sct_ctx.o",
13039                    "crypto/ct/ct_vfy.o",
13040                    "crypto/ct/ct_x509v3.o",
13041                    "crypto/ctype.o",
13042                    "crypto/cversion.o",
13043                    "crypto/des/cbc_cksm.o",
13044                    "crypto/des/cbc_enc.o",
13045                    "crypto/des/cfb64ede.o",
13046                    "crypto/des/cfb64enc.o",
13047                    "crypto/des/cfb_enc.o",
13048                    "crypto/des/des_enc.o",
13049                    "crypto/des/ecb3_enc.o",
13050                    "crypto/des/ecb_enc.o",
13051                    "crypto/des/fcrypt.o",
13052                    "crypto/des/fcrypt_b.o",
13053                    "crypto/des/ofb64ede.o",
13054                    "crypto/des/ofb64enc.o",
13055                    "crypto/des/ofb_enc.o",
13056                    "crypto/des/pcbc_enc.o",
13057                    "crypto/des/qud_cksm.o",
13058                    "crypto/des/rand_key.o",
13059                    "crypto/des/set_key.o",
13060                    "crypto/des/str2key.o",
13061                    "crypto/des/xcbc_enc.o",
13062                    "crypto/dh/dh_ameth.o",
13063                    "crypto/dh/dh_asn1.o",
13064                    "crypto/dh/dh_check.o",
13065                    "crypto/dh/dh_depr.o",
13066                    "crypto/dh/dh_err.o",
13067                    "crypto/dh/dh_gen.o",
13068                    "crypto/dh/dh_kdf.o",
13069                    "crypto/dh/dh_key.o",
13070                    "crypto/dh/dh_lib.o",
13071                    "crypto/dh/dh_meth.o",
13072                    "crypto/dh/dh_pmeth.o",
13073                    "crypto/dh/dh_prn.o",
13074                    "crypto/dh/dh_rfc5114.o",
13075                    "crypto/dh/dh_rfc7919.o",
13076                    "crypto/dsa/dsa_ameth.o",
13077                    "crypto/dsa/dsa_asn1.o",
13078                    "crypto/dsa/dsa_depr.o",
13079                    "crypto/dsa/dsa_err.o",
13080                    "crypto/dsa/dsa_gen.o",
13081                    "crypto/dsa/dsa_key.o",
13082                    "crypto/dsa/dsa_lib.o",
13083                    "crypto/dsa/dsa_meth.o",
13084                    "crypto/dsa/dsa_ossl.o",
13085                    "crypto/dsa/dsa_pmeth.o",
13086                    "crypto/dsa/dsa_prn.o",
13087                    "crypto/dsa/dsa_sign.o",
13088                    "crypto/dsa/dsa_vrf.o",
13089                    "crypto/dso/dso_dl.o",
13090                    "crypto/dso/dso_dlfcn.o",
13091                    "crypto/dso/dso_err.o",
13092                    "crypto/dso/dso_lib.o",
13093                    "crypto/dso/dso_openssl.o",
13094                    "crypto/dso/dso_vms.o",
13095                    "crypto/dso/dso_win32.o",
13096                    "crypto/ebcdic.o",
13097                    "crypto/ec/curve25519.o",
13098                    "crypto/ec/curve448/arch_32/f_impl.o",
13099                    "crypto/ec/curve448/curve448.o",
13100                    "crypto/ec/curve448/curve448_tables.o",
13101                    "crypto/ec/curve448/eddsa.o",
13102                    "crypto/ec/curve448/f_generic.o",
13103                    "crypto/ec/curve448/scalar.o",
13104                    "crypto/ec/ec2_oct.o",
13105                    "crypto/ec/ec2_smpl.o",
13106                    "crypto/ec/ec_ameth.o",
13107                    "crypto/ec/ec_asn1.o",
13108                    "crypto/ec/ec_check.o",
13109                    "crypto/ec/ec_curve.o",
13110                    "crypto/ec/ec_cvt.o",
13111                    "crypto/ec/ec_err.o",
13112                    "crypto/ec/ec_key.o",
13113                    "crypto/ec/ec_kmeth.o",
13114                    "crypto/ec/ec_lib.o",
13115                    "crypto/ec/ec_mult.o",
13116                    "crypto/ec/ec_oct.o",
13117                    "crypto/ec/ec_pmeth.o",
13118                    "crypto/ec/ec_print.o",
13119                    "crypto/ec/ecdh_kdf.o",
13120                    "crypto/ec/ecdh_ossl.o",
13121                    "crypto/ec/ecdsa_ossl.o",
13122                    "crypto/ec/ecdsa_sign.o",
13123                    "crypto/ec/ecdsa_vrf.o",
13124                    "crypto/ec/eck_prn.o",
13125                    "crypto/ec/ecp_mont.o",
13126                    "crypto/ec/ecp_nist.o",
13127                    "crypto/ec/ecp_nistp224.o",
13128                    "crypto/ec/ecp_nistp256.o",
13129                    "crypto/ec/ecp_nistp521.o",
13130                    "crypto/ec/ecp_nistputil.o",
13131                    "crypto/ec/ecp_nistz256-x86_64.o",
13132                    "crypto/ec/ecp_nistz256.o",
13133                    "crypto/ec/ecp_oct.o",
13134                    "crypto/ec/ecp_smpl.o",
13135                    "crypto/ec/ecx_meth.o",
13136                    "crypto/ec/x25519-x86_64.o",
13137                    "crypto/engine/eng_all.o",
13138                    "crypto/engine/eng_cnf.o",
13139                    "crypto/engine/eng_ctrl.o",
13140                    "crypto/engine/eng_devcrypto.o",
13141                    "crypto/engine/eng_dyn.o",
13142                    "crypto/engine/eng_err.o",
13143                    "crypto/engine/eng_fat.o",
13144                    "crypto/engine/eng_init.o",
13145                    "crypto/engine/eng_lib.o",
13146                    "crypto/engine/eng_list.o",
13147                    "crypto/engine/eng_openssl.o",
13148                    "crypto/engine/eng_pkey.o",
13149                    "crypto/engine/eng_rdrand.o",
13150                    "crypto/engine/eng_table.o",
13151                    "crypto/engine/tb_asnmth.o",
13152                    "crypto/engine/tb_cipher.o",
13153                    "crypto/engine/tb_dh.o",
13154                    "crypto/engine/tb_digest.o",
13155                    "crypto/engine/tb_dsa.o",
13156                    "crypto/engine/tb_eckey.o",
13157                    "crypto/engine/tb_pkmeth.o",
13158                    "crypto/engine/tb_rand.o",
13159                    "crypto/engine/tb_rsa.o",
13160                    "crypto/err/err.o",
13161                    "crypto/err/err_all.o",
13162                    "crypto/err/err_prn.o",
13163                    "crypto/evp/bio_b64.o",
13164                    "crypto/evp/bio_enc.o",
13165                    "crypto/evp/bio_md.o",
13166                    "crypto/evp/bio_ok.o",
13167                    "crypto/evp/c_allc.o",
13168                    "crypto/evp/c_alld.o",
13169                    "crypto/evp/cmeth_lib.o",
13170                    "crypto/evp/digest.o",
13171                    "crypto/evp/e_aes.o",
13172                    "crypto/evp/e_aes_cbc_hmac_sha1.o",
13173                    "crypto/evp/e_aes_cbc_hmac_sha256.o",
13174                    "crypto/evp/e_aria.o",
13175                    "crypto/evp/e_bf.o",
13176                    "crypto/evp/e_camellia.o",
13177                    "crypto/evp/e_cast.o",
13178                    "crypto/evp/e_chacha20_poly1305.o",
13179                    "crypto/evp/e_des.o",
13180                    "crypto/evp/e_des3.o",
13181                    "crypto/evp/e_idea.o",
13182                    "crypto/evp/e_null.o",
13183                    "crypto/evp/e_old.o",
13184                    "crypto/evp/e_rc2.o",
13185                    "crypto/evp/e_rc4.o",
13186                    "crypto/evp/e_rc4_hmac_md5.o",
13187                    "crypto/evp/e_rc5.o",
13188                    "crypto/evp/e_seed.o",
13189                    "crypto/evp/e_sm4.o",
13190                    "crypto/evp/e_xcbc_d.o",
13191                    "crypto/evp/encode.o",
13192                    "crypto/evp/evp_cnf.o",
13193                    "crypto/evp/evp_enc.o",
13194                    "crypto/evp/evp_err.o",
13195                    "crypto/evp/evp_key.o",
13196                    "crypto/evp/evp_lib.o",
13197                    "crypto/evp/evp_pbe.o",
13198                    "crypto/evp/evp_pkey.o",
13199                    "crypto/evp/m_md2.o",
13200                    "crypto/evp/m_md4.o",
13201                    "crypto/evp/m_md5.o",
13202                    "crypto/evp/m_md5_sha1.o",
13203                    "crypto/evp/m_mdc2.o",
13204                    "crypto/evp/m_null.o",
13205                    "crypto/evp/m_ripemd.o",
13206                    "crypto/evp/m_sha1.o",
13207                    "crypto/evp/m_sha3.o",
13208                    "crypto/evp/m_sigver.o",
13209                    "crypto/evp/m_wp.o",
13210                    "crypto/evp/names.o",
13211                    "crypto/evp/p5_crpt.o",
13212                    "crypto/evp/p5_crpt2.o",
13213                    "crypto/evp/p_dec.o",
13214                    "crypto/evp/p_enc.o",
13215                    "crypto/evp/p_lib.o",
13216                    "crypto/evp/p_open.o",
13217                    "crypto/evp/p_seal.o",
13218                    "crypto/evp/p_sign.o",
13219                    "crypto/evp/p_verify.o",
13220                    "crypto/evp/pbe_scrypt.o",
13221                    "crypto/evp/pmeth_fn.o",
13222                    "crypto/evp/pmeth_gn.o",
13223                    "crypto/evp/pmeth_lib.o",
13224                    "crypto/ex_data.o",
13225                    "crypto/getenv.o",
13226                    "crypto/hmac/hm_ameth.o",
13227                    "crypto/hmac/hm_pmeth.o",
13228                    "crypto/hmac/hmac.o",
13229                    "crypto/idea/i_cbc.o",
13230                    "crypto/idea/i_cfb64.o",
13231                    "crypto/idea/i_ecb.o",
13232                    "crypto/idea/i_ofb64.o",
13233                    "crypto/idea/i_skey.o",
13234                    "crypto/init.o",
13235                    "crypto/kdf/hkdf.o",
13236                    "crypto/kdf/kdf_err.o",
13237                    "crypto/kdf/scrypt.o",
13238                    "crypto/kdf/tls1_prf.o",
13239                    "crypto/lhash/lh_stats.o",
13240                    "crypto/lhash/lhash.o",
13241                    "crypto/md4/md4_dgst.o",
13242                    "crypto/md4/md4_one.o",
13243                    "crypto/md5/md5-x86_64.o",
13244                    "crypto/md5/md5_dgst.o",
13245                    "crypto/md5/md5_one.o",
13246                    "crypto/mdc2/mdc2_one.o",
13247                    "crypto/mdc2/mdc2dgst.o",
13248                    "crypto/mem.o",
13249                    "crypto/mem_dbg.o",
13250                    "crypto/mem_sec.o",
13251                    "crypto/modes/aesni-gcm-x86_64.o",
13252                    "crypto/modes/cbc128.o",
13253                    "crypto/modes/ccm128.o",
13254                    "crypto/modes/cfb128.o",
13255                    "crypto/modes/ctr128.o",
13256                    "crypto/modes/cts128.o",
13257                    "crypto/modes/gcm128.o",
13258                    "crypto/modes/ghash-x86_64.o",
13259                    "crypto/modes/ocb128.o",
13260                    "crypto/modes/ofb128.o",
13261                    "crypto/modes/wrap128.o",
13262                    "crypto/modes/xts128.o",
13263                    "crypto/o_dir.o",
13264                    "crypto/o_fips.o",
13265                    "crypto/o_fopen.o",
13266                    "crypto/o_init.o",
13267                    "crypto/o_str.o",
13268                    "crypto/o_time.o",
13269                    "crypto/objects/o_names.o",
13270                    "crypto/objects/obj_dat.o",
13271                    "crypto/objects/obj_err.o",
13272                    "crypto/objects/obj_lib.o",
13273                    "crypto/objects/obj_xref.o",
13274                    "crypto/ocsp/ocsp_asn.o",
13275                    "crypto/ocsp/ocsp_cl.o",
13276                    "crypto/ocsp/ocsp_err.o",
13277                    "crypto/ocsp/ocsp_ext.o",
13278                    "crypto/ocsp/ocsp_ht.o",
13279                    "crypto/ocsp/ocsp_lib.o",
13280                    "crypto/ocsp/ocsp_prn.o",
13281                    "crypto/ocsp/ocsp_srv.o",
13282                    "crypto/ocsp/ocsp_vfy.o",
13283                    "crypto/ocsp/v3_ocsp.o",
13284                    "crypto/pem/pem_all.o",
13285                    "crypto/pem/pem_err.o",
13286                    "crypto/pem/pem_info.o",
13287                    "crypto/pem/pem_lib.o",
13288                    "crypto/pem/pem_oth.o",
13289                    "crypto/pem/pem_pk8.o",
13290                    "crypto/pem/pem_pkey.o",
13291                    "crypto/pem/pem_sign.o",
13292                    "crypto/pem/pem_x509.o",
13293                    "crypto/pem/pem_xaux.o",
13294                    "crypto/pem/pvkfmt.o",
13295                    "crypto/pkcs12/p12_add.o",
13296                    "crypto/pkcs12/p12_asn.o",
13297                    "crypto/pkcs12/p12_attr.o",
13298                    "crypto/pkcs12/p12_crpt.o",
13299                    "crypto/pkcs12/p12_crt.o",
13300                    "crypto/pkcs12/p12_decr.o",
13301                    "crypto/pkcs12/p12_init.o",
13302                    "crypto/pkcs12/p12_key.o",
13303                    "crypto/pkcs12/p12_kiss.o",
13304                    "crypto/pkcs12/p12_mutl.o",
13305                    "crypto/pkcs12/p12_npas.o",
13306                    "crypto/pkcs12/p12_p8d.o",
13307                    "crypto/pkcs12/p12_p8e.o",
13308                    "crypto/pkcs12/p12_sbag.o",
13309                    "crypto/pkcs12/p12_utl.o",
13310                    "crypto/pkcs12/pk12err.o",
13311                    "crypto/pkcs7/bio_pk7.o",
13312                    "crypto/pkcs7/pk7_asn1.o",
13313                    "crypto/pkcs7/pk7_attr.o",
13314                    "crypto/pkcs7/pk7_doit.o",
13315                    "crypto/pkcs7/pk7_lib.o",
13316                    "crypto/pkcs7/pk7_mime.o",
13317                    "crypto/pkcs7/pk7_smime.o",
13318                    "crypto/pkcs7/pkcs7err.o",
13319                    "crypto/poly1305/poly1305-x86_64.o",
13320                    "crypto/poly1305/poly1305.o",
13321                    "crypto/poly1305/poly1305_ameth.o",
13322                    "crypto/poly1305/poly1305_pmeth.o",
13323                    "crypto/rand/drbg_ctr.o",
13324                    "crypto/rand/drbg_lib.o",
13325                    "crypto/rand/rand_egd.o",
13326                    "crypto/rand/rand_err.o",
13327                    "crypto/rand/rand_lib.o",
13328                    "crypto/rand/rand_unix.o",
13329                    "crypto/rand/rand_vms.o",
13330                    "crypto/rand/rand_win.o",
13331                    "crypto/rand/randfile.o",
13332                    "crypto/rc2/rc2_cbc.o",
13333                    "crypto/rc2/rc2_ecb.o",
13334                    "crypto/rc2/rc2_skey.o",
13335                    "crypto/rc2/rc2cfb64.o",
13336                    "crypto/rc2/rc2ofb64.o",
13337                    "crypto/rc4/rc4-md5-x86_64.o",
13338                    "crypto/rc4/rc4-x86_64.o",
13339                    "crypto/ripemd/rmd_dgst.o",
13340                    "crypto/ripemd/rmd_one.o",
13341                    "crypto/rsa/rsa_ameth.o",
13342                    "crypto/rsa/rsa_asn1.o",
13343                    "crypto/rsa/rsa_chk.o",
13344                    "crypto/rsa/rsa_crpt.o",
13345                    "crypto/rsa/rsa_depr.o",
13346                    "crypto/rsa/rsa_err.o",
13347                    "crypto/rsa/rsa_gen.o",
13348                    "crypto/rsa/rsa_lib.o",
13349                    "crypto/rsa/rsa_meth.o",
13350                    "crypto/rsa/rsa_mp.o",
13351                    "crypto/rsa/rsa_none.o",
13352                    "crypto/rsa/rsa_oaep.o",
13353                    "crypto/rsa/rsa_ossl.o",
13354                    "crypto/rsa/rsa_pk1.o",
13355                    "crypto/rsa/rsa_pmeth.o",
13356                    "crypto/rsa/rsa_prn.o",
13357                    "crypto/rsa/rsa_pss.o",
13358                    "crypto/rsa/rsa_saos.o",
13359                    "crypto/rsa/rsa_sign.o",
13360                    "crypto/rsa/rsa_ssl.o",
13361                    "crypto/rsa/rsa_x931.o",
13362                    "crypto/rsa/rsa_x931g.o",
13363                    "crypto/seed/seed.o",
13364                    "crypto/seed/seed_cbc.o",
13365                    "crypto/seed/seed_cfb.o",
13366                    "crypto/seed/seed_ecb.o",
13367                    "crypto/seed/seed_ofb.o",
13368                    "crypto/sha/keccak1600-x86_64.o",
13369                    "crypto/sha/sha1-mb-x86_64.o",
13370                    "crypto/sha/sha1-x86_64.o",
13371                    "crypto/sha/sha1_one.o",
13372                    "crypto/sha/sha1dgst.o",
13373                    "crypto/sha/sha256-mb-x86_64.o",
13374                    "crypto/sha/sha256-x86_64.o",
13375                    "crypto/sha/sha256.o",
13376                    "crypto/sha/sha512-x86_64.o",
13377                    "crypto/sha/sha512.o",
13378                    "crypto/siphash/siphash.o",
13379                    "crypto/siphash/siphash_ameth.o",
13380                    "crypto/siphash/siphash_pmeth.o",
13381                    "crypto/sm2/sm2_crypt.o",
13382                    "crypto/sm2/sm2_err.o",
13383                    "crypto/sm2/sm2_pmeth.o",
13384                    "crypto/sm2/sm2_sign.o",
13385                    "crypto/sm3/m_sm3.o",
13386                    "crypto/sm3/sm3.o",
13387                    "crypto/sm4/sm4.o",
13388                    "crypto/srp/srp_lib.o",
13389                    "crypto/srp/srp_vfy.o",
13390                    "crypto/stack/stack.o",
13391                    "crypto/store/loader_file.o",
13392                    "crypto/store/store_err.o",
13393                    "crypto/store/store_init.o",
13394                    "crypto/store/store_lib.o",
13395                    "crypto/store/store_register.o",
13396                    "crypto/store/store_strings.o",
13397                    "crypto/threads_none.o",
13398                    "crypto/threads_pthread.o",
13399                    "crypto/threads_win.o",
13400                    "crypto/ts/ts_asn1.o",
13401                    "crypto/ts/ts_conf.o",
13402                    "crypto/ts/ts_err.o",
13403                    "crypto/ts/ts_lib.o",
13404                    "crypto/ts/ts_req_print.o",
13405                    "crypto/ts/ts_req_utils.o",
13406                    "crypto/ts/ts_rsp_print.o",
13407                    "crypto/ts/ts_rsp_sign.o",
13408                    "crypto/ts/ts_rsp_utils.o",
13409                    "crypto/ts/ts_rsp_verify.o",
13410                    "crypto/ts/ts_verify_ctx.o",
13411                    "crypto/txt_db/txt_db.o",
13412                    "crypto/ui/ui_err.o",
13413                    "crypto/ui/ui_lib.o",
13414                    "crypto/ui/ui_null.o",
13415                    "crypto/ui/ui_openssl.o",
13416                    "crypto/ui/ui_util.o",
13417                    "crypto/uid.o",
13418                    "crypto/whrlpool/wp-x86_64.o",
13419                    "crypto/whrlpool/wp_dgst.o",
13420                    "crypto/x509/by_dir.o",
13421                    "crypto/x509/by_file.o",
13422                    "crypto/x509/t_crl.o",
13423                    "crypto/x509/t_req.o",
13424                    "crypto/x509/t_x509.o",
13425                    "crypto/x509/x509_att.o",
13426                    "crypto/x509/x509_cmp.o",
13427                    "crypto/x509/x509_d2.o",
13428                    "crypto/x509/x509_def.o",
13429                    "crypto/x509/x509_err.o",
13430                    "crypto/x509/x509_ext.o",
13431                    "crypto/x509/x509_lu.o",
13432                    "crypto/x509/x509_meth.o",
13433                    "crypto/x509/x509_obj.o",
13434                    "crypto/x509/x509_r2x.o",
13435                    "crypto/x509/x509_req.o",
13436                    "crypto/x509/x509_set.o",
13437                    "crypto/x509/x509_trs.o",
13438                    "crypto/x509/x509_txt.o",
13439                    "crypto/x509/x509_v3.o",
13440                    "crypto/x509/x509_vfy.o",
13441                    "crypto/x509/x509_vpm.o",
13442                    "crypto/x509/x509cset.o",
13443                    "crypto/x509/x509name.o",
13444                    "crypto/x509/x509rset.o",
13445                    "crypto/x509/x509spki.o",
13446                    "crypto/x509/x509type.o",
13447                    "crypto/x509/x_all.o",
13448                    "crypto/x509/x_attrib.o",
13449                    "crypto/x509/x_crl.o",
13450                    "crypto/x509/x_exten.o",
13451                    "crypto/x509/x_name.o",
13452                    "crypto/x509/x_pubkey.o",
13453                    "crypto/x509/x_req.o",
13454                    "crypto/x509/x_x509.o",
13455                    "crypto/x509/x_x509a.o",
13456                    "crypto/x509v3/pcy_cache.o",
13457                    "crypto/x509v3/pcy_data.o",
13458                    "crypto/x509v3/pcy_lib.o",
13459                    "crypto/x509v3/pcy_map.o",
13460                    "crypto/x509v3/pcy_node.o",
13461                    "crypto/x509v3/pcy_tree.o",
13462                    "crypto/x509v3/v3_addr.o",
13463                    "crypto/x509v3/v3_admis.o",
13464                    "crypto/x509v3/v3_akey.o",
13465                    "crypto/x509v3/v3_akeya.o",
13466                    "crypto/x509v3/v3_alt.o",
13467                    "crypto/x509v3/v3_asid.o",
13468                    "crypto/x509v3/v3_bcons.o",
13469                    "crypto/x509v3/v3_bitst.o",
13470                    "crypto/x509v3/v3_conf.o",
13471                    "crypto/x509v3/v3_cpols.o",
13472                    "crypto/x509v3/v3_crld.o",
13473                    "crypto/x509v3/v3_enum.o",
13474                    "crypto/x509v3/v3_extku.o",
13475                    "crypto/x509v3/v3_genn.o",
13476                    "crypto/x509v3/v3_ia5.o",
13477                    "crypto/x509v3/v3_info.o",
13478                    "crypto/x509v3/v3_int.o",
13479                    "crypto/x509v3/v3_lib.o",
13480                    "crypto/x509v3/v3_ncons.o",
13481                    "crypto/x509v3/v3_pci.o",
13482                    "crypto/x509v3/v3_pcia.o",
13483                    "crypto/x509v3/v3_pcons.o",
13484                    "crypto/x509v3/v3_pku.o",
13485                    "crypto/x509v3/v3_pmaps.o",
13486                    "crypto/x509v3/v3_prn.o",
13487                    "crypto/x509v3/v3_purp.o",
13488                    "crypto/x509v3/v3_skey.o",
13489                    "crypto/x509v3/v3_sxnet.o",
13490                    "crypto/x509v3/v3_tlsf.o",
13491                    "crypto/x509v3/v3_utl.o",
13492                    "crypto/x509v3/v3err.o",
13493                    "crypto/x86_64cpuid.o",
13494                    "engines/e_capi.o",
13495                    "engines/e_padlock-x86_64.o",
13496                    "engines/e_padlock.o",
13497                ],
13498            "libssl" =>
13499                [
13500                    "ssl/bio_ssl.o",
13501                    "ssl/d1_lib.o",
13502                    "ssl/d1_msg.o",
13503                    "ssl/d1_srtp.o",
13504                    "ssl/methods.o",
13505                    "ssl/packet.o",
13506                    "ssl/pqueue.o",
13507                    "ssl/record/dtls1_bitmap.o",
13508                    "ssl/record/rec_layer_d1.o",
13509                    "ssl/record/rec_layer_s3.o",
13510                    "ssl/record/ssl3_buffer.o",
13511                    "ssl/record/ssl3_record.o",
13512                    "ssl/record/ssl3_record_tls13.o",
13513                    "ssl/s3_cbc.o",
13514                    "ssl/s3_enc.o",
13515                    "ssl/s3_lib.o",
13516                    "ssl/s3_msg.o",
13517                    "ssl/ssl_asn1.o",
13518                    "ssl/ssl_cert.o",
13519                    "ssl/ssl_ciph.o",
13520                    "ssl/ssl_conf.o",
13521                    "ssl/ssl_err.o",
13522                    "ssl/ssl_init.o",
13523                    "ssl/ssl_lib.o",
13524                    "ssl/ssl_mcnf.o",
13525                    "ssl/ssl_rsa.o",
13526                    "ssl/ssl_sess.o",
13527                    "ssl/ssl_stat.o",
13528                    "ssl/ssl_txt.o",
13529                    "ssl/ssl_utst.o",
13530                    "ssl/statem/extensions.o",
13531                    "ssl/statem/extensions_clnt.o",
13532                    "ssl/statem/extensions_cust.o",
13533                    "ssl/statem/extensions_srvr.o",
13534                    "ssl/statem/statem.o",
13535                    "ssl/statem/statem_clnt.o",
13536                    "ssl/statem/statem_dtls.o",
13537                    "ssl/statem/statem_lib.o",
13538                    "ssl/statem/statem_srvr.o",
13539                    "ssl/t1_enc.o",
13540                    "ssl/t1_lib.o",
13541                    "ssl/t1_trce.o",
13542                    "ssl/tls13_enc.o",
13543                    "ssl/tls_srp.o",
13544                ],
13545            "ssl/bio_ssl.o" =>
13546                [
13547                    "ssl/bio_ssl.c",
13548                ],
13549            "ssl/d1_lib.o" =>
13550                [
13551                    "ssl/d1_lib.c",
13552                ],
13553            "ssl/d1_msg.o" =>
13554                [
13555                    "ssl/d1_msg.c",
13556                ],
13557            "ssl/d1_srtp.o" =>
13558                [
13559                    "ssl/d1_srtp.c",
13560                ],
13561            "ssl/methods.o" =>
13562                [
13563                    "ssl/methods.c",
13564                ],
13565            "ssl/packet.o" =>
13566                [
13567                    "ssl/packet.c",
13568                ],
13569            "ssl/pqueue.o" =>
13570                [
13571                    "ssl/pqueue.c",
13572                ],
13573            "ssl/record/dtls1_bitmap.o" =>
13574                [
13575                    "ssl/record/dtls1_bitmap.c",
13576                ],
13577            "ssl/record/rec_layer_d1.o" =>
13578                [
13579                    "ssl/record/rec_layer_d1.c",
13580                ],
13581            "ssl/record/rec_layer_s3.o" =>
13582                [
13583                    "ssl/record/rec_layer_s3.c",
13584                ],
13585            "ssl/record/ssl3_buffer.o" =>
13586                [
13587                    "ssl/record/ssl3_buffer.c",
13588                ],
13589            "ssl/record/ssl3_record.o" =>
13590                [
13591                    "ssl/record/ssl3_record.c",
13592                ],
13593            "ssl/record/ssl3_record_tls13.o" =>
13594                [
13595                    "ssl/record/ssl3_record_tls13.c",
13596                ],
13597            "ssl/s3_cbc.o" =>
13598                [
13599                    "ssl/s3_cbc.c",
13600                ],
13601            "ssl/s3_enc.o" =>
13602                [
13603                    "ssl/s3_enc.c",
13604                ],
13605            "ssl/s3_lib.o" =>
13606                [
13607                    "ssl/s3_lib.c",
13608                ],
13609            "ssl/s3_msg.o" =>
13610                [
13611                    "ssl/s3_msg.c",
13612                ],
13613            "ssl/ssl_asn1.o" =>
13614                [
13615                    "ssl/ssl_asn1.c",
13616                ],
13617            "ssl/ssl_cert.o" =>
13618                [
13619                    "ssl/ssl_cert.c",
13620                ],
13621            "ssl/ssl_ciph.o" =>
13622                [
13623                    "ssl/ssl_ciph.c",
13624                ],
13625            "ssl/ssl_conf.o" =>
13626                [
13627                    "ssl/ssl_conf.c",
13628                ],
13629            "ssl/ssl_err.o" =>
13630                [
13631                    "ssl/ssl_err.c",
13632                ],
13633            "ssl/ssl_init.o" =>
13634                [
13635                    "ssl/ssl_init.c",
13636                ],
13637            "ssl/ssl_lib.o" =>
13638                [
13639                    "ssl/ssl_lib.c",
13640                ],
13641            "ssl/ssl_mcnf.o" =>
13642                [
13643                    "ssl/ssl_mcnf.c",
13644                ],
13645            "ssl/ssl_rsa.o" =>
13646                [
13647                    "ssl/ssl_rsa.c",
13648                ],
13649            "ssl/ssl_sess.o" =>
13650                [
13651                    "ssl/ssl_sess.c",
13652                ],
13653            "ssl/ssl_stat.o" =>
13654                [
13655                    "ssl/ssl_stat.c",
13656                ],
13657            "ssl/ssl_txt.o" =>
13658                [
13659                    "ssl/ssl_txt.c",
13660                ],
13661            "ssl/ssl_utst.o" =>
13662                [
13663                    "ssl/ssl_utst.c",
13664                ],
13665            "ssl/statem/extensions.o" =>
13666                [
13667                    "ssl/statem/extensions.c",
13668                ],
13669            "ssl/statem/extensions_clnt.o" =>
13670                [
13671                    "ssl/statem/extensions_clnt.c",
13672                ],
13673            "ssl/statem/extensions_cust.o" =>
13674                [
13675                    "ssl/statem/extensions_cust.c",
13676                ],
13677            "ssl/statem/extensions_srvr.o" =>
13678                [
13679                    "ssl/statem/extensions_srvr.c",
13680                ],
13681            "ssl/statem/statem.o" =>
13682                [
13683                    "ssl/statem/statem.c",
13684                ],
13685            "ssl/statem/statem_clnt.o" =>
13686                [
13687                    "ssl/statem/statem_clnt.c",
13688                ],
13689            "ssl/statem/statem_dtls.o" =>
13690                [
13691                    "ssl/statem/statem_dtls.c",
13692                ],
13693            "ssl/statem/statem_lib.o" =>
13694                [
13695                    "ssl/statem/statem_lib.c",
13696                ],
13697            "ssl/statem/statem_srvr.o" =>
13698                [
13699                    "ssl/statem/statem_srvr.c",
13700                ],
13701            "ssl/t1_enc.o" =>
13702                [
13703                    "ssl/t1_enc.c",
13704                ],
13705            "ssl/t1_lib.o" =>
13706                [
13707                    "ssl/t1_lib.c",
13708                ],
13709            "ssl/t1_trce.o" =>
13710                [
13711                    "ssl/t1_trce.c",
13712                ],
13713            "ssl/tls13_enc.o" =>
13714                [
13715                    "ssl/tls13_enc.c",
13716                ],
13717            "ssl/tls_srp.o" =>
13718                [
13719                    "ssl/tls_srp.c",
13720                ],
13721            "test/aborttest" =>
13722                [
13723                    "test/aborttest.o",
13724                ],
13725            "test/aborttest.o" =>
13726                [
13727                    "test/aborttest.c",
13728                ],
13729            "test/afalgtest" =>
13730                [
13731                    "test/afalgtest.o",
13732                ],
13733            "test/afalgtest.o" =>
13734                [
13735                    "test/afalgtest.c",
13736                ],
13737            "test/asn1_decode_test" =>
13738                [
13739                    "test/asn1_decode_test.o",
13740                ],
13741            "test/asn1_decode_test.o" =>
13742                [
13743                    "test/asn1_decode_test.c",
13744                ],
13745            "test/asn1_encode_test" =>
13746                [
13747                    "test/asn1_encode_test.o",
13748                ],
13749            "test/asn1_encode_test.o" =>
13750                [
13751                    "test/asn1_encode_test.c",
13752                ],
13753            "test/asn1_internal_test" =>
13754                [
13755                    "test/asn1_internal_test.o",
13756                ],
13757            "test/asn1_internal_test.o" =>
13758                [
13759                    "test/asn1_internal_test.c",
13760                ],
13761            "test/asn1_string_table_test" =>
13762                [
13763                    "test/asn1_string_table_test.o",
13764                ],
13765            "test/asn1_string_table_test.o" =>
13766                [
13767                    "test/asn1_string_table_test.c",
13768                ],
13769            "test/asn1_time_test" =>
13770                [
13771                    "test/asn1_time_test.o",
13772                ],
13773            "test/asn1_time_test.o" =>
13774                [
13775                    "test/asn1_time_test.c",
13776                ],
13777            "test/asynciotest" =>
13778                [
13779                    "test/asynciotest.o",
13780                    "test/ssltestlib.o",
13781                ],
13782            "test/asynciotest.o" =>
13783                [
13784                    "test/asynciotest.c",
13785                ],
13786            "test/asynctest" =>
13787                [
13788                    "test/asynctest.o",
13789                ],
13790            "test/asynctest.o" =>
13791                [
13792                    "test/asynctest.c",
13793                ],
13794            "test/bad_dtls_test" =>
13795                [
13796                    "test/bad_dtls_test.o",
13797                ],
13798            "test/bad_dtls_test.o" =>
13799                [
13800                    "test/bad_dtls_test.c",
13801                ],
13802            "test/bftest" =>
13803                [
13804                    "test/bftest.o",
13805                ],
13806            "test/bftest.o" =>
13807                [
13808                    "test/bftest.c",
13809                ],
13810            "test/bio_callback_test" =>
13811                [
13812                    "test/bio_callback_test.o",
13813                ],
13814            "test/bio_callback_test.o" =>
13815                [
13816                    "test/bio_callback_test.c",
13817                ],
13818            "test/bio_enc_test" =>
13819                [
13820                    "test/bio_enc_test.o",
13821                ],
13822            "test/bio_enc_test.o" =>
13823                [
13824                    "test/bio_enc_test.c",
13825                ],
13826            "test/bio_memleak_test" =>
13827                [
13828                    "test/bio_memleak_test.o",
13829                ],
13830            "test/bio_memleak_test.o" =>
13831                [
13832                    "test/bio_memleak_test.c",
13833                ],
13834            "test/bioprinttest" =>
13835                [
13836                    "test/bioprinttest.o",
13837                ],
13838            "test/bioprinttest.o" =>
13839                [
13840                    "test/bioprinttest.c",
13841                ],
13842            "test/bntest" =>
13843                [
13844                    "test/bntest.o",
13845                ],
13846            "test/bntest.o" =>
13847                [
13848                    "test/bntest.c",
13849                ],
13850            "test/buildtest_aes.o" =>
13851                [
13852                    "test/buildtest_aes.c",
13853                ],
13854            "test/buildtest_asn1.o" =>
13855                [
13856                    "test/buildtest_asn1.c",
13857                ],
13858            "test/buildtest_asn1t.o" =>
13859                [
13860                    "test/buildtest_asn1t.c",
13861                ],
13862            "test/buildtest_async.o" =>
13863                [
13864                    "test/buildtest_async.c",
13865                ],
13866            "test/buildtest_bio.o" =>
13867                [
13868                    "test/buildtest_bio.c",
13869                ],
13870            "test/buildtest_blowfish.o" =>
13871                [
13872                    "test/buildtest_blowfish.c",
13873                ],
13874            "test/buildtest_bn.o" =>
13875                [
13876                    "test/buildtest_bn.c",
13877                ],
13878            "test/buildtest_buffer.o" =>
13879                [
13880                    "test/buildtest_buffer.c",
13881                ],
13882            "test/buildtest_c_aes" =>
13883                [
13884                    "test/buildtest_aes.o",
13885                ],
13886            "test/buildtest_c_asn1" =>
13887                [
13888                    "test/buildtest_asn1.o",
13889                ],
13890            "test/buildtest_c_asn1t" =>
13891                [
13892                    "test/buildtest_asn1t.o",
13893                ],
13894            "test/buildtest_c_async" =>
13895                [
13896                    "test/buildtest_async.o",
13897                ],
13898            "test/buildtest_c_bio" =>
13899                [
13900                    "test/buildtest_bio.o",
13901                ],
13902            "test/buildtest_c_blowfish" =>
13903                [
13904                    "test/buildtest_blowfish.o",
13905                ],
13906            "test/buildtest_c_bn" =>
13907                [
13908                    "test/buildtest_bn.o",
13909                ],
13910            "test/buildtest_c_buffer" =>
13911                [
13912                    "test/buildtest_buffer.o",
13913                ],
13914            "test/buildtest_c_camellia" =>
13915                [
13916                    "test/buildtest_camellia.o",
13917                ],
13918            "test/buildtest_c_cast" =>
13919                [
13920                    "test/buildtest_cast.o",
13921                ],
13922            "test/buildtest_c_cmac" =>
13923                [
13924                    "test/buildtest_cmac.o",
13925                ],
13926            "test/buildtest_c_cms" =>
13927                [
13928                    "test/buildtest_cms.o",
13929                ],
13930            "test/buildtest_c_conf" =>
13931                [
13932                    "test/buildtest_conf.o",
13933                ],
13934            "test/buildtest_c_conf_api" =>
13935                [
13936                    "test/buildtest_conf_api.o",
13937                ],
13938            "test/buildtest_c_crypto" =>
13939                [
13940                    "test/buildtest_crypto.o",
13941                ],
13942            "test/buildtest_c_ct" =>
13943                [
13944                    "test/buildtest_ct.o",
13945                ],
13946            "test/buildtest_c_des" =>
13947                [
13948                    "test/buildtest_des.o",
13949                ],
13950            "test/buildtest_c_dh" =>
13951                [
13952                    "test/buildtest_dh.o",
13953                ],
13954            "test/buildtest_c_dsa" =>
13955                [
13956                    "test/buildtest_dsa.o",
13957                ],
13958            "test/buildtest_c_dtls1" =>
13959                [
13960                    "test/buildtest_dtls1.o",
13961                ],
13962            "test/buildtest_c_e_os2" =>
13963                [
13964                    "test/buildtest_e_os2.o",
13965                ],
13966            "test/buildtest_c_ebcdic" =>
13967                [
13968                    "test/buildtest_ebcdic.o",
13969                ],
13970            "test/buildtest_c_ec" =>
13971                [
13972                    "test/buildtest_ec.o",
13973                ],
13974            "test/buildtest_c_ecdh" =>
13975                [
13976                    "test/buildtest_ecdh.o",
13977                ],
13978            "test/buildtest_c_ecdsa" =>
13979                [
13980                    "test/buildtest_ecdsa.o",
13981                ],
13982            "test/buildtest_c_engine" =>
13983                [
13984                    "test/buildtest_engine.o",
13985                ],
13986            "test/buildtest_c_evp" =>
13987                [
13988                    "test/buildtest_evp.o",
13989                ],
13990            "test/buildtest_c_hmac" =>
13991                [
13992                    "test/buildtest_hmac.o",
13993                ],
13994            "test/buildtest_c_idea" =>
13995                [
13996                    "test/buildtest_idea.o",
13997                ],
13998            "test/buildtest_c_kdf" =>
13999                [
14000                    "test/buildtest_kdf.o",
14001                ],
14002            "test/buildtest_c_lhash" =>
14003                [
14004                    "test/buildtest_lhash.o",
14005                ],
14006            "test/buildtest_c_md4" =>
14007                [
14008                    "test/buildtest_md4.o",
14009                ],
14010            "test/buildtest_c_md5" =>
14011                [
14012                    "test/buildtest_md5.o",
14013                ],
14014            "test/buildtest_c_mdc2" =>
14015                [
14016                    "test/buildtest_mdc2.o",
14017                ],
14018            "test/buildtest_c_modes" =>
14019                [
14020                    "test/buildtest_modes.o",
14021                ],
14022            "test/buildtest_c_obj_mac" =>
14023                [
14024                    "test/buildtest_obj_mac.o",
14025                ],
14026            "test/buildtest_c_objects" =>
14027                [
14028                    "test/buildtest_objects.o",
14029                ],
14030            "test/buildtest_c_ocsp" =>
14031                [
14032                    "test/buildtest_ocsp.o",
14033                ],
14034            "test/buildtest_c_opensslv" =>
14035                [
14036                    "test/buildtest_opensslv.o",
14037                ],
14038            "test/buildtest_c_ossl_typ" =>
14039                [
14040                    "test/buildtest_ossl_typ.o",
14041                ],
14042            "test/buildtest_c_pem" =>
14043                [
14044                    "test/buildtest_pem.o",
14045                ],
14046            "test/buildtest_c_pem2" =>
14047                [
14048                    "test/buildtest_pem2.o",
14049                ],
14050            "test/buildtest_c_pkcs12" =>
14051                [
14052                    "test/buildtest_pkcs12.o",
14053                ],
14054            "test/buildtest_c_pkcs7" =>
14055                [
14056                    "test/buildtest_pkcs7.o",
14057                ],
14058            "test/buildtest_c_rand" =>
14059                [
14060                    "test/buildtest_rand.o",
14061                ],
14062            "test/buildtest_c_rand_drbg" =>
14063                [
14064                    "test/buildtest_rand_drbg.o",
14065                ],
14066            "test/buildtest_c_rc2" =>
14067                [
14068                    "test/buildtest_rc2.o",
14069                ],
14070            "test/buildtest_c_rc4" =>
14071                [
14072                    "test/buildtest_rc4.o",
14073                ],
14074            "test/buildtest_c_ripemd" =>
14075                [
14076                    "test/buildtest_ripemd.o",
14077                ],
14078            "test/buildtest_c_rsa" =>
14079                [
14080                    "test/buildtest_rsa.o",
14081                ],
14082            "test/buildtest_c_safestack" =>
14083                [
14084                    "test/buildtest_safestack.o",
14085                ],
14086            "test/buildtest_c_seed" =>
14087                [
14088                    "test/buildtest_seed.o",
14089                ],
14090            "test/buildtest_c_sha" =>
14091                [
14092                    "test/buildtest_sha.o",
14093                ],
14094            "test/buildtest_c_srp" =>
14095                [
14096                    "test/buildtest_srp.o",
14097                ],
14098            "test/buildtest_c_srtp" =>
14099                [
14100                    "test/buildtest_srtp.o",
14101                ],
14102            "test/buildtest_c_ssl" =>
14103                [
14104                    "test/buildtest_ssl.o",
14105                ],
14106            "test/buildtest_c_ssl2" =>
14107                [
14108                    "test/buildtest_ssl2.o",
14109                ],
14110            "test/buildtest_c_stack" =>
14111                [
14112                    "test/buildtest_stack.o",
14113                ],
14114            "test/buildtest_c_store" =>
14115                [
14116                    "test/buildtest_store.o",
14117                ],
14118            "test/buildtest_c_symhacks" =>
14119                [
14120                    "test/buildtest_symhacks.o",
14121                ],
14122            "test/buildtest_c_tls1" =>
14123                [
14124                    "test/buildtest_tls1.o",
14125                ],
14126            "test/buildtest_c_ts" =>
14127                [
14128                    "test/buildtest_ts.o",
14129                ],
14130            "test/buildtest_c_txt_db" =>
14131                [
14132                    "test/buildtest_txt_db.o",
14133                ],
14134            "test/buildtest_c_ui" =>
14135                [
14136                    "test/buildtest_ui.o",
14137                ],
14138            "test/buildtest_c_whrlpool" =>
14139                [
14140                    "test/buildtest_whrlpool.o",
14141                ],
14142            "test/buildtest_c_x509" =>
14143                [
14144                    "test/buildtest_x509.o",
14145                ],
14146            "test/buildtest_c_x509_vfy" =>
14147                [
14148                    "test/buildtest_x509_vfy.o",
14149                ],
14150            "test/buildtest_c_x509v3" =>
14151                [
14152                    "test/buildtest_x509v3.o",
14153                ],
14154            "test/buildtest_camellia.o" =>
14155                [
14156                    "test/buildtest_camellia.c",
14157                ],
14158            "test/buildtest_cast.o" =>
14159                [
14160                    "test/buildtest_cast.c",
14161                ],
14162            "test/buildtest_cmac.o" =>
14163                [
14164                    "test/buildtest_cmac.c",
14165                ],
14166            "test/buildtest_cms.o" =>
14167                [
14168                    "test/buildtest_cms.c",
14169                ],
14170            "test/buildtest_conf.o" =>
14171                [
14172                    "test/buildtest_conf.c",
14173                ],
14174            "test/buildtest_conf_api.o" =>
14175                [
14176                    "test/buildtest_conf_api.c",
14177                ],
14178            "test/buildtest_crypto.o" =>
14179                [
14180                    "test/buildtest_crypto.c",
14181                ],
14182            "test/buildtest_ct.o" =>
14183                [
14184                    "test/buildtest_ct.c",
14185                ],
14186            "test/buildtest_des.o" =>
14187                [
14188                    "test/buildtest_des.c",
14189                ],
14190            "test/buildtest_dh.o" =>
14191                [
14192                    "test/buildtest_dh.c",
14193                ],
14194            "test/buildtest_dsa.o" =>
14195                [
14196                    "test/buildtest_dsa.c",
14197                ],
14198            "test/buildtest_dtls1.o" =>
14199                [
14200                    "test/buildtest_dtls1.c",
14201                ],
14202            "test/buildtest_e_os2.o" =>
14203                [
14204                    "test/buildtest_e_os2.c",
14205                ],
14206            "test/buildtest_ebcdic.o" =>
14207                [
14208                    "test/buildtest_ebcdic.c",
14209                ],
14210            "test/buildtest_ec.o" =>
14211                [
14212                    "test/buildtest_ec.c",
14213                ],
14214            "test/buildtest_ecdh.o" =>
14215                [
14216                    "test/buildtest_ecdh.c",
14217                ],
14218            "test/buildtest_ecdsa.o" =>
14219                [
14220                    "test/buildtest_ecdsa.c",
14221                ],
14222            "test/buildtest_engine.o" =>
14223                [
14224                    "test/buildtest_engine.c",
14225                ],
14226            "test/buildtest_evp.o" =>
14227                [
14228                    "test/buildtest_evp.c",
14229                ],
14230            "test/buildtest_hmac.o" =>
14231                [
14232                    "test/buildtest_hmac.c",
14233                ],
14234            "test/buildtest_idea.o" =>
14235                [
14236                    "test/buildtest_idea.c",
14237                ],
14238            "test/buildtest_kdf.o" =>
14239                [
14240                    "test/buildtest_kdf.c",
14241                ],
14242            "test/buildtest_lhash.o" =>
14243                [
14244                    "test/buildtest_lhash.c",
14245                ],
14246            "test/buildtest_md4.o" =>
14247                [
14248                    "test/buildtest_md4.c",
14249                ],
14250            "test/buildtest_md5.o" =>
14251                [
14252                    "test/buildtest_md5.c",
14253                ],
14254            "test/buildtest_mdc2.o" =>
14255                [
14256                    "test/buildtest_mdc2.c",
14257                ],
14258            "test/buildtest_modes.o" =>
14259                [
14260                    "test/buildtest_modes.c",
14261                ],
14262            "test/buildtest_obj_mac.o" =>
14263                [
14264                    "test/buildtest_obj_mac.c",
14265                ],
14266            "test/buildtest_objects.o" =>
14267                [
14268                    "test/buildtest_objects.c",
14269                ],
14270            "test/buildtest_ocsp.o" =>
14271                [
14272                    "test/buildtest_ocsp.c",
14273                ],
14274            "test/buildtest_opensslv.o" =>
14275                [
14276                    "test/buildtest_opensslv.c",
14277                ],
14278            "test/buildtest_ossl_typ.o" =>
14279                [
14280                    "test/buildtest_ossl_typ.c",
14281                ],
14282            "test/buildtest_pem.o" =>
14283                [
14284                    "test/buildtest_pem.c",
14285                ],
14286            "test/buildtest_pem2.o" =>
14287                [
14288                    "test/buildtest_pem2.c",
14289                ],
14290            "test/buildtest_pkcs12.o" =>
14291                [
14292                    "test/buildtest_pkcs12.c",
14293                ],
14294            "test/buildtest_pkcs7.o" =>
14295                [
14296                    "test/buildtest_pkcs7.c",
14297                ],
14298            "test/buildtest_rand.o" =>
14299                [
14300                    "test/buildtest_rand.c",
14301                ],
14302            "test/buildtest_rand_drbg.o" =>
14303                [
14304                    "test/buildtest_rand_drbg.c",
14305                ],
14306            "test/buildtest_rc2.o" =>
14307                [
14308                    "test/buildtest_rc2.c",
14309                ],
14310            "test/buildtest_rc4.o" =>
14311                [
14312                    "test/buildtest_rc4.c",
14313                ],
14314            "test/buildtest_ripemd.o" =>
14315                [
14316                    "test/buildtest_ripemd.c",
14317                ],
14318            "test/buildtest_rsa.o" =>
14319                [
14320                    "test/buildtest_rsa.c",
14321                ],
14322            "test/buildtest_safestack.o" =>
14323                [
14324                    "test/buildtest_safestack.c",
14325                ],
14326            "test/buildtest_seed.o" =>
14327                [
14328                    "test/buildtest_seed.c",
14329                ],
14330            "test/buildtest_sha.o" =>
14331                [
14332                    "test/buildtest_sha.c",
14333                ],
14334            "test/buildtest_srp.o" =>
14335                [
14336                    "test/buildtest_srp.c",
14337                ],
14338            "test/buildtest_srtp.o" =>
14339                [
14340                    "test/buildtest_srtp.c",
14341                ],
14342            "test/buildtest_ssl.o" =>
14343                [
14344                    "test/buildtest_ssl.c",
14345                ],
14346            "test/buildtest_ssl2.o" =>
14347                [
14348                    "test/buildtest_ssl2.c",
14349                ],
14350            "test/buildtest_stack.o" =>
14351                [
14352                    "test/buildtest_stack.c",
14353                ],
14354            "test/buildtest_store.o" =>
14355                [
14356                    "test/buildtest_store.c",
14357                ],
14358            "test/buildtest_symhacks.o" =>
14359                [
14360                    "test/buildtest_symhacks.c",
14361                ],
14362            "test/buildtest_tls1.o" =>
14363                [
14364                    "test/buildtest_tls1.c",
14365                ],
14366            "test/buildtest_ts.o" =>
14367                [
14368                    "test/buildtest_ts.c",
14369                ],
14370            "test/buildtest_txt_db.o" =>
14371                [
14372                    "test/buildtest_txt_db.c",
14373                ],
14374            "test/buildtest_ui.o" =>
14375                [
14376                    "test/buildtest_ui.c",
14377                ],
14378            "test/buildtest_whrlpool.o" =>
14379                [
14380                    "test/buildtest_whrlpool.c",
14381                ],
14382            "test/buildtest_x509.o" =>
14383                [
14384                    "test/buildtest_x509.c",
14385                ],
14386            "test/buildtest_x509_vfy.o" =>
14387                [
14388                    "test/buildtest_x509_vfy.c",
14389                ],
14390            "test/buildtest_x509v3.o" =>
14391                [
14392                    "test/buildtest_x509v3.c",
14393                ],
14394            "test/casttest" =>
14395                [
14396                    "test/casttest.o",
14397                ],
14398            "test/casttest.o" =>
14399                [
14400                    "test/casttest.c",
14401                ],
14402            "test/chacha_internal_test" =>
14403                [
14404                    "test/chacha_internal_test.o",
14405                ],
14406            "test/chacha_internal_test.o" =>
14407                [
14408                    "test/chacha_internal_test.c",
14409                ],
14410            "test/cipher_overhead_test" =>
14411                [
14412                    "test/cipher_overhead_test.o",
14413                ],
14414            "test/cipher_overhead_test.o" =>
14415                [
14416                    "test/cipher_overhead_test.c",
14417                ],
14418            "test/cipherbytes_test" =>
14419                [
14420                    "test/cipherbytes_test.o",
14421                ],
14422            "test/cipherbytes_test.o" =>
14423                [
14424                    "test/cipherbytes_test.c",
14425                ],
14426            "test/cipherlist_test" =>
14427                [
14428                    "test/cipherlist_test.o",
14429                ],
14430            "test/cipherlist_test.o" =>
14431                [
14432                    "test/cipherlist_test.c",
14433                ],
14434            "test/ciphername_test" =>
14435                [
14436                    "test/ciphername_test.o",
14437                ],
14438            "test/ciphername_test.o" =>
14439                [
14440                    "test/ciphername_test.c",
14441                ],
14442            "test/clienthellotest" =>
14443                [
14444                    "test/clienthellotest.o",
14445                ],
14446            "test/clienthellotest.o" =>
14447                [
14448                    "test/clienthellotest.c",
14449                ],
14450            "test/cmactest" =>
14451                [
14452                    "test/cmactest.o",
14453                ],
14454            "test/cmactest.o" =>
14455                [
14456                    "test/cmactest.c",
14457                ],
14458            "test/cmsapitest" =>
14459                [
14460                    "test/cmsapitest.o",
14461                ],
14462            "test/cmsapitest.o" =>
14463                [
14464                    "test/cmsapitest.c",
14465                ],
14466            "test/conf_include_test" =>
14467                [
14468                    "test/conf_include_test.o",
14469                ],
14470            "test/conf_include_test.o" =>
14471                [
14472                    "test/conf_include_test.c",
14473                ],
14474            "test/constant_time_test" =>
14475                [
14476                    "test/constant_time_test.o",
14477                ],
14478            "test/constant_time_test.o" =>
14479                [
14480                    "test/constant_time_test.c",
14481                ],
14482            "test/crltest" =>
14483                [
14484                    "test/crltest.o",
14485                ],
14486            "test/crltest.o" =>
14487                [
14488                    "test/crltest.c",
14489                ],
14490            "test/ct_test" =>
14491                [
14492                    "test/ct_test.o",
14493                ],
14494            "test/ct_test.o" =>
14495                [
14496                    "test/ct_test.c",
14497                ],
14498            "test/ctype_internal_test" =>
14499                [
14500                    "test/ctype_internal_test.o",
14501                ],
14502            "test/ctype_internal_test.o" =>
14503                [
14504                    "test/ctype_internal_test.c",
14505                ],
14506            "test/curve448_internal_test" =>
14507                [
14508                    "test/curve448_internal_test.o",
14509                ],
14510            "test/curve448_internal_test.o" =>
14511                [
14512                    "test/curve448_internal_test.c",
14513                ],
14514            "test/d2i_test" =>
14515                [
14516                    "test/d2i_test.o",
14517                ],
14518            "test/d2i_test.o" =>
14519                [
14520                    "test/d2i_test.c",
14521                ],
14522            "test/danetest" =>
14523                [
14524                    "test/danetest.o",
14525                ],
14526            "test/danetest.o" =>
14527                [
14528                    "test/danetest.c",
14529                ],
14530            "test/destest" =>
14531                [
14532                    "test/destest.o",
14533                ],
14534            "test/destest.o" =>
14535                [
14536                    "test/destest.c",
14537                ],
14538            "test/dhtest" =>
14539                [
14540                    "test/dhtest.o",
14541                ],
14542            "test/dhtest.o" =>
14543                [
14544                    "test/dhtest.c",
14545                ],
14546            "test/drbg_cavs_data.o" =>
14547                [
14548                    "test/drbg_cavs_data.c",
14549                ],
14550            "test/drbg_cavs_test" =>
14551                [
14552                    "test/drbg_cavs_data.o",
14553                    "test/drbg_cavs_test.o",
14554                ],
14555            "test/drbg_cavs_test.o" =>
14556                [
14557                    "test/drbg_cavs_test.c",
14558                ],
14559            "test/drbgtest" =>
14560                [
14561                    "test/drbgtest.o",
14562                ],
14563            "test/drbgtest.o" =>
14564                [
14565                    "test/drbgtest.c",
14566                ],
14567            "test/dsa_no_digest_size_test" =>
14568                [
14569                    "test/dsa_no_digest_size_test.o",
14570                ],
14571            "test/dsa_no_digest_size_test.o" =>
14572                [
14573                    "test/dsa_no_digest_size_test.c",
14574                ],
14575            "test/dsatest" =>
14576                [
14577                    "test/dsatest.o",
14578                ],
14579            "test/dsatest.o" =>
14580                [
14581                    "test/dsatest.c",
14582                ],
14583            "test/dtls_mtu_test" =>
14584                [
14585                    "test/dtls_mtu_test.o",
14586                    "test/ssltestlib.o",
14587                ],
14588            "test/dtls_mtu_test.o" =>
14589                [
14590                    "test/dtls_mtu_test.c",
14591                ],
14592            "test/dtlstest" =>
14593                [
14594                    "test/dtlstest.o",
14595                    "test/ssltestlib.o",
14596                ],
14597            "test/dtlstest.o" =>
14598                [
14599                    "test/dtlstest.c",
14600                ],
14601            "test/dtlsv1listentest" =>
14602                [
14603                    "test/dtlsv1listentest.o",
14604                ],
14605            "test/dtlsv1listentest.o" =>
14606                [
14607                    "test/dtlsv1listentest.c",
14608                ],
14609            "test/ec_internal_test" =>
14610                [
14611                    "test/ec_internal_test.o",
14612                ],
14613            "test/ec_internal_test.o" =>
14614                [
14615                    "test/ec_internal_test.c",
14616                ],
14617            "test/ecdsatest" =>
14618                [
14619                    "test/ecdsatest.o",
14620                ],
14621            "test/ecdsatest.o" =>
14622                [
14623                    "test/ecdsatest.c",
14624                ],
14625            "test/ecstresstest" =>
14626                [
14627                    "test/ecstresstest.o",
14628                ],
14629            "test/ecstresstest.o" =>
14630                [
14631                    "test/ecstresstest.c",
14632                ],
14633            "test/ectest" =>
14634                [
14635                    "test/ectest.o",
14636                ],
14637            "test/ectest.o" =>
14638                [
14639                    "test/ectest.c",
14640                ],
14641            "test/enginetest" =>
14642                [
14643                    "test/enginetest.o",
14644                ],
14645            "test/enginetest.o" =>
14646                [
14647                    "test/enginetest.c",
14648                ],
14649            "test/errtest" =>
14650                [
14651                    "test/errtest.o",
14652                ],
14653            "test/errtest.o" =>
14654                [
14655                    "test/errtest.c",
14656                ],
14657            "test/evp_extra_test" =>
14658                [
14659                    "test/evp_extra_test.o",
14660                ],
14661            "test/evp_extra_test.o" =>
14662                [
14663                    "test/evp_extra_test.c",
14664                ],
14665            "test/evp_test" =>
14666                [
14667                    "test/evp_test.o",
14668                ],
14669            "test/evp_test.o" =>
14670                [
14671                    "test/evp_test.c",
14672                ],
14673            "test/exdatatest" =>
14674                [
14675                    "test/exdatatest.o",
14676                ],
14677            "test/exdatatest.o" =>
14678                [
14679                    "test/exdatatest.c",
14680                ],
14681            "test/exptest" =>
14682                [
14683                    "test/exptest.o",
14684                ],
14685            "test/exptest.o" =>
14686                [
14687                    "test/exptest.c",
14688                ],
14689            "test/fatalerrtest" =>
14690                [
14691                    "test/fatalerrtest.o",
14692                    "test/ssltestlib.o",
14693                ],
14694            "test/fatalerrtest.o" =>
14695                [
14696                    "test/fatalerrtest.c",
14697                ],
14698            "test/gmdifftest" =>
14699                [
14700                    "test/gmdifftest.o",
14701                ],
14702            "test/gmdifftest.o" =>
14703                [
14704                    "test/gmdifftest.c",
14705                ],
14706            "test/gosttest" =>
14707                [
14708                    "test/gosttest.o",
14709                    "test/ssltestlib.o",
14710                ],
14711            "test/gosttest.o" =>
14712                [
14713                    "test/gosttest.c",
14714                ],
14715            "test/handshake_helper.o" =>
14716                [
14717                    "test/handshake_helper.c",
14718                ],
14719            "test/hmactest" =>
14720                [
14721                    "test/hmactest.o",
14722                ],
14723            "test/hmactest.o" =>
14724                [
14725                    "test/hmactest.c",
14726                ],
14727            "test/ideatest" =>
14728                [
14729                    "test/ideatest.o",
14730                ],
14731            "test/ideatest.o" =>
14732                [
14733                    "test/ideatest.c",
14734                ],
14735            "test/igetest" =>
14736                [
14737                    "test/igetest.o",
14738                ],
14739            "test/igetest.o" =>
14740                [
14741                    "test/igetest.c",
14742                ],
14743            "test/lhash_test" =>
14744                [
14745                    "test/lhash_test.o",
14746                ],
14747            "test/lhash_test.o" =>
14748                [
14749                    "test/lhash_test.c",
14750                ],
14751            "test/libtestutil.a" =>
14752                [
14753                    "test/testutil/basic_output.o",
14754                    "test/testutil/cb.o",
14755                    "test/testutil/driver.o",
14756                    "test/testutil/format_output.o",
14757                    "test/testutil/main.o",
14758                    "test/testutil/output_helpers.o",
14759                    "test/testutil/random.o",
14760                    "test/testutil/stanza.o",
14761                    "test/testutil/tap_bio.o",
14762                    "test/testutil/test_cleanup.o",
14763                    "test/testutil/tests.o",
14764                    "test/testutil/testutil_init.o",
14765                ],
14766            "test/md2test" =>
14767                [
14768                    "test/md2test.o",
14769                ],
14770            "test/md2test.o" =>
14771                [
14772                    "test/md2test.c",
14773                ],
14774            "test/mdc2_internal_test" =>
14775                [
14776                    "test/mdc2_internal_test.o",
14777                ],
14778            "test/mdc2_internal_test.o" =>
14779                [
14780                    "test/mdc2_internal_test.c",
14781                ],
14782            "test/mdc2test" =>
14783                [
14784                    "test/mdc2test.o",
14785                ],
14786            "test/mdc2test.o" =>
14787                [
14788                    "test/mdc2test.c",
14789                ],
14790            "test/memleaktest" =>
14791                [
14792                    "test/memleaktest.o",
14793                ],
14794            "test/memleaktest.o" =>
14795                [
14796                    "test/memleaktest.c",
14797                ],
14798            "test/modes_internal_test" =>
14799                [
14800                    "test/modes_internal_test.o",
14801                ],
14802            "test/modes_internal_test.o" =>
14803                [
14804                    "test/modes_internal_test.c",
14805                ],
14806            "test/ocspapitest" =>
14807                [
14808                    "test/ocspapitest.o",
14809                ],
14810            "test/ocspapitest.o" =>
14811                [
14812                    "test/ocspapitest.c",
14813                ],
14814            "test/packettest" =>
14815                [
14816                    "test/packettest.o",
14817                ],
14818            "test/packettest.o" =>
14819                [
14820                    "test/packettest.c",
14821                ],
14822            "test/pbelutest" =>
14823                [
14824                    "test/pbelutest.o",
14825                ],
14826            "test/pbelutest.o" =>
14827                [
14828                    "test/pbelutest.c",
14829                ],
14830            "test/pemtest" =>
14831                [
14832                    "test/pemtest.o",
14833                ],
14834            "test/pemtest.o" =>
14835                [
14836                    "test/pemtest.c",
14837                ],
14838            "test/pkey_meth_kdf_test" =>
14839                [
14840                    "test/pkey_meth_kdf_test.o",
14841                ],
14842            "test/pkey_meth_kdf_test.o" =>
14843                [
14844                    "test/pkey_meth_kdf_test.c",
14845                ],
14846            "test/pkey_meth_test" =>
14847                [
14848                    "test/pkey_meth_test.o",
14849                ],
14850            "test/pkey_meth_test.o" =>
14851                [
14852                    "test/pkey_meth_test.c",
14853                ],
14854            "test/poly1305_internal_test" =>
14855                [
14856                    "test/poly1305_internal_test.o",
14857                ],
14858            "test/poly1305_internal_test.o" =>
14859                [
14860                    "test/poly1305_internal_test.c",
14861                ],
14862            "test/rc2test" =>
14863                [
14864                    "test/rc2test.o",
14865                ],
14866            "test/rc2test.o" =>
14867                [
14868                    "test/rc2test.c",
14869                ],
14870            "test/rc4test" =>
14871                [
14872                    "test/rc4test.o",
14873                ],
14874            "test/rc4test.o" =>
14875                [
14876                    "test/rc4test.c",
14877                ],
14878            "test/rc5test" =>
14879                [
14880                    "test/rc5test.o",
14881                ],
14882            "test/rc5test.o" =>
14883                [
14884                    "test/rc5test.c",
14885                ],
14886            "test/rdrand_sanitytest" =>
14887                [
14888                    "test/rdrand_sanitytest.o",
14889                ],
14890            "test/rdrand_sanitytest.o" =>
14891                [
14892                    "test/rdrand_sanitytest.c",
14893                ],
14894            "test/recordlentest" =>
14895                [
14896                    "test/recordlentest.o",
14897                    "test/ssltestlib.o",
14898                ],
14899            "test/recordlentest.o" =>
14900                [
14901                    "test/recordlentest.c",
14902                ],
14903            "test/rsa_complex" =>
14904                [
14905                    "test/rsa_complex.o",
14906                ],
14907            "test/rsa_complex.o" =>
14908                [
14909                    "test/rsa_complex.c",
14910                ],
14911            "test/rsa_mp_test" =>
14912                [
14913                    "test/rsa_mp_test.o",
14914                ],
14915            "test/rsa_mp_test.o" =>
14916                [
14917                    "test/rsa_mp_test.c",
14918                ],
14919            "test/rsa_test" =>
14920                [
14921                    "test/rsa_test.o",
14922                ],
14923            "test/rsa_test.o" =>
14924                [
14925                    "test/rsa_test.c",
14926                ],
14927            "test/sanitytest" =>
14928                [
14929                    "test/sanitytest.o",
14930                ],
14931            "test/sanitytest.o" =>
14932                [
14933                    "test/sanitytest.c",
14934                ],
14935            "test/secmemtest" =>
14936                [
14937                    "test/secmemtest.o",
14938                ],
14939            "test/secmemtest.o" =>
14940                [
14941                    "test/secmemtest.c",
14942                ],
14943            "test/servername_test" =>
14944                [
14945                    "test/servername_test.o",
14946                    "test/ssltestlib.o",
14947                ],
14948            "test/servername_test.o" =>
14949                [
14950                    "test/servername_test.c",
14951                ],
14952            "test/siphash_internal_test" =>
14953                [
14954                    "test/siphash_internal_test.o",
14955                ],
14956            "test/siphash_internal_test.o" =>
14957                [
14958                    "test/siphash_internal_test.c",
14959                ],
14960            "test/sm2_internal_test" =>
14961                [
14962                    "test/sm2_internal_test.o",
14963                ],
14964            "test/sm2_internal_test.o" =>
14965                [
14966                    "test/sm2_internal_test.c",
14967                ],
14968            "test/sm4_internal_test" =>
14969                [
14970                    "test/sm4_internal_test.o",
14971                ],
14972            "test/sm4_internal_test.o" =>
14973                [
14974                    "test/sm4_internal_test.c",
14975                ],
14976            "test/srptest" =>
14977                [
14978                    "test/srptest.o",
14979                ],
14980            "test/srptest.o" =>
14981                [
14982                    "test/srptest.c",
14983                ],
14984            "test/ssl_cert_table_internal_test" =>
14985                [
14986                    "test/ssl_cert_table_internal_test.o",
14987                ],
14988            "test/ssl_cert_table_internal_test.o" =>
14989                [
14990                    "test/ssl_cert_table_internal_test.c",
14991                ],
14992            "test/ssl_ctx_test" =>
14993                [
14994                    "test/ssl_ctx_test.o",
14995                ],
14996            "test/ssl_ctx_test.o" =>
14997                [
14998                    "test/ssl_ctx_test.c",
14999                ],
15000            "test/ssl_test" =>
15001                [
15002                    "test/handshake_helper.o",
15003                    "test/ssl_test.o",
15004                    "test/ssl_test_ctx.o",
15005                ],
15006            "test/ssl_test.o" =>
15007                [
15008                    "test/ssl_test.c",
15009                ],
15010            "test/ssl_test_ctx.o" =>
15011                [
15012                    "test/ssl_test_ctx.c",
15013                ],
15014            "test/ssl_test_ctx_test" =>
15015                [
15016                    "test/ssl_test_ctx.o",
15017                    "test/ssl_test_ctx_test.o",
15018                ],
15019            "test/ssl_test_ctx_test.o" =>
15020                [
15021                    "test/ssl_test_ctx_test.c",
15022                ],
15023            "test/sslapitest" =>
15024                [
15025                    "test/sslapitest.o",
15026                    "test/ssltestlib.o",
15027                ],
15028            "test/sslapitest.o" =>
15029                [
15030                    "test/sslapitest.c",
15031                ],
15032            "test/sslbuffertest" =>
15033                [
15034                    "test/sslbuffertest.o",
15035                    "test/ssltestlib.o",
15036                ],
15037            "test/sslbuffertest.o" =>
15038                [
15039                    "test/sslbuffertest.c",
15040                ],
15041            "test/sslcorrupttest" =>
15042                [
15043                    "test/sslcorrupttest.o",
15044                    "test/ssltestlib.o",
15045                ],
15046            "test/sslcorrupttest.o" =>
15047                [
15048                    "test/sslcorrupttest.c",
15049                ],
15050            "test/ssltest_old" =>
15051                [
15052                    "test/ssltest_old.o",
15053                ],
15054            "test/ssltest_old.o" =>
15055                [
15056                    "test/ssltest_old.c",
15057                ],
15058            "test/ssltestlib.o" =>
15059                [
15060                    "test/ssltestlib.c",
15061                ],
15062            "test/stack_test" =>
15063                [
15064                    "test/stack_test.o",
15065                ],
15066            "test/stack_test.o" =>
15067                [
15068                    "test/stack_test.c",
15069                ],
15070            "test/sysdefaulttest" =>
15071                [
15072                    "test/sysdefaulttest.o",
15073                ],
15074            "test/sysdefaulttest.o" =>
15075                [
15076                    "test/sysdefaulttest.c",
15077                ],
15078            "test/test_test" =>
15079                [
15080                    "test/test_test.o",
15081                ],
15082            "test/test_test.o" =>
15083                [
15084                    "test/test_test.c",
15085                ],
15086            "test/testutil/basic_output.o" =>
15087                [
15088                    "test/testutil/basic_output.c",
15089                ],
15090            "test/testutil/cb.o" =>
15091                [
15092                    "test/testutil/cb.c",
15093                ],
15094            "test/testutil/driver.o" =>
15095                [
15096                    "test/testutil/driver.c",
15097                ],
15098            "test/testutil/format_output.o" =>
15099                [
15100                    "test/testutil/format_output.c",
15101                ],
15102            "test/testutil/main.o" =>
15103                [
15104                    "test/testutil/main.c",
15105                ],
15106            "test/testutil/output_helpers.o" =>
15107                [
15108                    "test/testutil/output_helpers.c",
15109                ],
15110            "test/testutil/random.o" =>
15111                [
15112                    "test/testutil/random.c",
15113                ],
15114            "test/testutil/stanza.o" =>
15115                [
15116                    "test/testutil/stanza.c",
15117                ],
15118            "test/testutil/tap_bio.o" =>
15119                [
15120                    "test/testutil/tap_bio.c",
15121                ],
15122            "test/testutil/test_cleanup.o" =>
15123                [
15124                    "test/testutil/test_cleanup.c",
15125                ],
15126            "test/testutil/tests.o" =>
15127                [
15128                    "test/testutil/tests.c",
15129                ],
15130            "test/testutil/testutil_init.o" =>
15131                [
15132                    "test/testutil/testutil_init.c",
15133                ],
15134            "test/threadstest" =>
15135                [
15136                    "test/threadstest.o",
15137                ],
15138            "test/threadstest.o" =>
15139                [
15140                    "test/threadstest.c",
15141                ],
15142            "test/time_offset_test" =>
15143                [
15144                    "test/time_offset_test.o",
15145                ],
15146            "test/time_offset_test.o" =>
15147                [
15148                    "test/time_offset_test.c",
15149                ],
15150            "test/tls13ccstest" =>
15151                [
15152                    "test/ssltestlib.o",
15153                    "test/tls13ccstest.o",
15154                ],
15155            "test/tls13ccstest.o" =>
15156                [
15157                    "test/tls13ccstest.c",
15158                ],
15159            "test/tls13encryptiontest" =>
15160                [
15161                    "test/tls13encryptiontest.o",
15162                ],
15163            "test/tls13encryptiontest.o" =>
15164                [
15165                    "test/tls13encryptiontest.c",
15166                ],
15167            "test/uitest" =>
15168                [
15169                    "test/uitest.o",
15170                ],
15171            "test/uitest.o" =>
15172                [
15173                    "test/uitest.c",
15174                ],
15175            "test/v3ext" =>
15176                [
15177                    "test/v3ext.o",
15178                ],
15179            "test/v3ext.o" =>
15180                [
15181                    "test/v3ext.c",
15182                ],
15183            "test/v3nametest" =>
15184                [
15185                    "test/v3nametest.o",
15186                ],
15187            "test/v3nametest.o" =>
15188                [
15189                    "test/v3nametest.c",
15190                ],
15191            "test/verify_extra_test" =>
15192                [
15193                    "test/verify_extra_test.o",
15194                ],
15195            "test/verify_extra_test.o" =>
15196                [
15197                    "test/verify_extra_test.c",
15198                ],
15199            "test/versions" =>
15200                [
15201                    "test/versions.o",
15202                ],
15203            "test/versions.o" =>
15204                [
15205                    "test/versions.c",
15206                ],
15207            "test/wpackettest" =>
15208                [
15209                    "test/wpackettest.o",
15210                ],
15211            "test/wpackettest.o" =>
15212                [
15213                    "test/wpackettest.c",
15214                ],
15215            "test/x509_check_cert_pkey_test" =>
15216                [
15217                    "test/x509_check_cert_pkey_test.o",
15218                ],
15219            "test/x509_check_cert_pkey_test.o" =>
15220                [
15221                    "test/x509_check_cert_pkey_test.c",
15222                ],
15223            "test/x509_dup_cert_test" =>
15224                [
15225                    "test/x509_dup_cert_test.o",
15226                ],
15227            "test/x509_dup_cert_test.o" =>
15228                [
15229                    "test/x509_dup_cert_test.c",
15230                ],
15231            "test/x509_internal_test" =>
15232                [
15233                    "test/x509_internal_test.o",
15234                ],
15235            "test/x509_internal_test.o" =>
15236                [
15237                    "test/x509_internal_test.c",
15238                ],
15239            "test/x509_time_test" =>
15240                [
15241                    "test/x509_time_test.o",
15242                ],
15243            "test/x509_time_test.o" =>
15244                [
15245                    "test/x509_time_test.c",
15246                ],
15247            "test/x509aux" =>
15248                [
15249                    "test/x509aux.o",
15250                ],
15251            "test/x509aux.o" =>
15252                [
15253                    "test/x509aux.c",
15254                ],
15255            "tools/c_rehash" =>
15256                [
15257                    "tools/c_rehash.in",
15258                ],
15259            "util/shlib_wrap.sh" =>
15260                [
15261                    "util/shlib_wrap.sh.in",
15262                ],
15263        },
15264);
15265
15266# The following data is only used when this files is use as a script
15267my @makevars = (
15268    'AR',
15269    'ARFLAGS',
15270    'AS',
15271    'ASFLAGS',
15272    'CC',
15273    'CFLAGS',
15274    'CPP',
15275    'CPPDEFINES',
15276    'CPPFLAGS',
15277    'CPPINCLUDES',
15278    'CROSS_COMPILE',
15279    'CXX',
15280    'CXXFLAGS',
15281    'HASHBANGPERL',
15282    'LD',
15283    'LDFLAGS',
15284    'LDLIBS',
15285    'MT',
15286    'MTFLAGS',
15287    'PERL',
15288    'RANLIB',
15289    'RC',
15290    'RCFLAGS',
15291    'RM',
15292);
15293my %disabled_info = (
15294    'afalgeng' => {
15295        macro => 'OPENSSL_NO_AFALGENG',
15296    },
15297    'asan' => {
15298        macro => 'OPENSSL_NO_ASAN',
15299    },
15300    'comp' => {
15301        macro => 'OPENSSL_NO_COMP',
15302        skipped => [ 'crypto/comp' ],
15303    },
15304    'crypto-mdebug' => {
15305        macro => 'OPENSSL_NO_CRYPTO_MDEBUG',
15306    },
15307    'crypto-mdebug-backtrace' => {
15308        macro => 'OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE',
15309    },
15310    'ec_nistp_64_gcc_128' => {
15311        macro => 'OPENSSL_NO_EC_NISTP_64_GCC_128',
15312    },
15313    'egd' => {
15314        macro => 'OPENSSL_NO_EGD',
15315    },
15316    'external-tests' => {
15317        macro => 'OPENSSL_NO_EXTERNAL_TESTS',
15318    },
15319    'fuzz-afl' => {
15320        macro => 'OPENSSL_NO_FUZZ_AFL',
15321    },
15322    'fuzz-libfuzzer' => {
15323        macro => 'OPENSSL_NO_FUZZ_LIBFUZZER',
15324    },
15325    'heartbeats' => {
15326        macro => 'OPENSSL_NO_HEARTBEATS',
15327    },
15328    'md2' => {
15329        macro => 'OPENSSL_NO_MD2',
15330        skipped => [ 'crypto/md2' ],
15331    },
15332    'msan' => {
15333        macro => 'OPENSSL_NO_MSAN',
15334    },
15335    'rc5' => {
15336        macro => 'OPENSSL_NO_RC5',
15337        skipped => [ 'crypto/rc5' ],
15338    },
15339    'sctp' => {
15340        macro => 'OPENSSL_NO_SCTP',
15341    },
15342    'ssl-trace' => {
15343        macro => 'OPENSSL_NO_SSL_TRACE',
15344    },
15345    'ssl3' => {
15346        macro => 'OPENSSL_NO_SSL3',
15347    },
15348    'ssl3-method' => {
15349        macro => 'OPENSSL_NO_SSL3_METHOD',
15350    },
15351    'ubsan' => {
15352        macro => 'OPENSSL_NO_UBSAN',
15353    },
15354    'unit-test' => {
15355        macro => 'OPENSSL_NO_UNIT_TEST',
15356    },
15357    'weak-ssl-ciphers' => {
15358        macro => 'OPENSSL_NO_WEAK_SSL_CIPHERS',
15359    },
15360);
15361my @user_crossable = qw( AR AS CC CXX CPP LD MT RANLIB RC );
15362# If run directly, we can give some answers, and even reconfigure
15363unless (caller) {
15364    use Getopt::Long;
15365    use File::Spec::Functions;
15366    use File::Basename;
15367    use Pod::Usage;
15368
15369    my $here = dirname($0);
15370
15371    my $dump = undef;
15372    my $cmdline = undef;
15373    my $options = undef;
15374    my $target = undef;
15375    my $envvars = undef;
15376    my $makevars = undef;
15377    my $buildparams = undef;
15378    my $reconf = undef;
15379    my $verbose = undef;
15380    my $help = undef;
15381    my $man = undef;
15382    GetOptions('dump|d'                 => \$dump,
15383               'command-line|c'         => \$cmdline,
15384               'options|o'              => \$options,
15385               'target|t'               => \$target,
15386               'environment|e'          => \$envvars,
15387               'make-variables|m'       => \$makevars,
15388               'build-parameters|b'     => \$buildparams,
15389               'reconfigure|reconf|r'   => \$reconf,
15390               'verbose|v'              => \$verbose,
15391               'help'                   => \$help,
15392               'man'                    => \$man)
15393        or die "Errors in command line arguments\n";
15394
15395    unless ($dump || $cmdline || $options || $target || $envvars || $makevars
15396            || $buildparams || $reconf || $verbose || $help || $man) {
15397        print STDERR <<"_____";
15398You must give at least one option.
15399For more information, do '$0 --help'
15400_____
15401        exit(2);
15402    }
15403
15404    if ($help) {
15405        pod2usage(-exitval => 0,
15406                  -verbose => 1);
15407    }
15408    if ($man) {
15409        pod2usage(-exitval => 0,
15410                  -verbose => 2);
15411    }
15412    if ($dump || $cmdline) {
15413        print "\nCommand line (with current working directory = $here):\n\n";
15414        print '    ',join(' ',
15415                          $config{PERL},
15416                          catfile($config{sourcedir}, 'Configure'),
15417                          @{$config{perlargv}}), "\n";
15418        print "\nPerl information:\n\n";
15419        print '    ',$config{perl_cmd},"\n";
15420        print '    ',$config{perl_version},' for ',$config{perl_archname},"\n";
15421    }
15422    if ($dump || $options) {
15423        my $longest = 0;
15424        my $longest2 = 0;
15425        foreach my $what (@disablables) {
15426            $longest = length($what) if $longest < length($what);
15427            $longest2 = length($disabled{$what})
15428                if $disabled{$what} && $longest2 < length($disabled{$what});
15429        }
15430        print "\nEnabled features:\n\n";
15431        foreach my $what (@disablables) {
15432            print "    $what\n"
15433                unless grep { $_ =~ /^${what}$/ } keys %disabled;
15434        }
15435        print "\nDisabled features:\n\n";
15436        foreach my $what (@disablables) {
15437            my @what2 = grep { $_ =~ /^${what}$/ } keys %disabled;
15438            my $what3 = $what2[0];
15439            if ($what3) {
15440                print "    $what3", ' ' x ($longest - length($what3) + 1),
15441                    "[$disabled{$what3}]", ' ' x ($longest2 - length($disabled{$what3}) + 1);
15442                print $disabled_info{$what3}->{macro}
15443                    if $disabled_info{$what3}->{macro};
15444                print ' (skip ',
15445                    join(', ', @{$disabled_info{$what3}->{skipped}}),
15446                    ')'
15447                    if $disabled_info{$what3}->{skipped};
15448                print "\n";
15449            }
15450        }
15451    }
15452    if ($dump || $target) {
15453        print "\nConfig target attributes:\n\n";
15454        foreach (sort keys %target) {
15455            next if $_ =~ m|^_| || $_ eq 'template';
15456            my $quotify = sub {
15457                map { (my $x = $_) =~ s|([\\\$\@"])|\\$1|g; "\"$x\""} @_;
15458            };
15459            print '    ', $_, ' => ';
15460            if (ref($target{$_}) eq "ARRAY") {
15461                print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n";
15462            } else {
15463                print $quotify->($target{$_}), ",\n"
15464            }
15465        }
15466    }
15467    if ($dump || $envvars) {
15468        print "\nRecorded environment:\n\n";
15469        foreach (sort keys %{$config{perlenv}}) {
15470            print '    ',$_,' = ',($config{perlenv}->{$_} || ''),"\n";
15471        }
15472    }
15473    if ($dump || $makevars) {
15474        print "\nMakevars:\n\n";
15475        foreach my $var (@makevars) {
15476            my $prefix = '';
15477            $prefix = $config{CROSS_COMPILE}
15478                if grep { $var eq $_ } @user_crossable;
15479            $prefix //= '';
15480            print '    ',$var,' ' x (16 - length $var),'= ',
15481                (ref $config{$var} eq 'ARRAY'
15482                 ? join(' ', @{$config{$var}})
15483                 : $prefix.$config{$var}),
15484                "\n"
15485                if defined $config{$var};
15486        }
15487
15488        my @buildfile = ($config{builddir}, $config{build_file});
15489        unshift @buildfile, $here
15490            unless file_name_is_absolute($config{builddir});
15491        my $buildfile = canonpath(catdir(@buildfile));
15492        print <<"_____";
15493
15494NOTE: These variables only represent the configuration view.  The build file
15495template may have processed these variables further, please have a look at the
15496build file for more exact data:
15497    $buildfile
15498_____
15499    }
15500    if ($dump || $buildparams) {
15501        my @buildfile = ($config{builddir}, $config{build_file});
15502        unshift @buildfile, $here
15503            unless file_name_is_absolute($config{builddir});
15504        print "\nbuild file:\n\n";
15505        print "    ", canonpath(catfile(@buildfile)),"\n";
15506
15507        print "\nbuild file templates:\n\n";
15508        foreach (@{$config{build_file_templates}}) {
15509            my @tmpl = ($_);
15510            unshift @tmpl, $here
15511                unless file_name_is_absolute($config{sourcedir});
15512            print '    ',canonpath(catfile(@tmpl)),"\n";
15513        }
15514    }
15515    if ($reconf) {
15516        if ($verbose) {
15517            print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n";
15518            foreach (sort keys %{$config{perlenv}}) {
15519                print '    ',$_,' = ',($config{perlenv}->{$_} || ""),"\n";
15520            }
15521        }
15522
15523        chdir $here;
15524        exec $^X,catfile($config{sourcedir}, 'Configure'),'reconf';
15525    }
15526}
15527
155281;
15529
15530__END__
15531
15532=head1 NAME
15533
15534configdata.pm - configuration data for OpenSSL builds
15535
15536=head1 SYNOPSIS
15537
15538Interactive:
15539
15540  perl configdata.pm [options]
15541
15542As data bank module:
15543
15544  use configdata;
15545
15546=head1 DESCRIPTION
15547
15548This module can be used in two modes, interactively and as a module containing
15549all the data recorded by OpenSSL's Configure script.
15550
15551When used interactively, simply run it as any perl script, with at least one
15552option, and you will get the information you ask for.  See L</OPTIONS> below.
15553
15554When loaded as a module, you get a few databanks with useful information to
15555perform build related tasks.  The databanks are:
15556
15557    %config             Configured things.
15558    %target             The OpenSSL config target with all inheritances
15559                        resolved.
15560    %disabled           The features that are disabled.
15561    @disablables        The list of features that can be disabled.
15562    %withargs           All data given through --with-THING options.
15563    %unified_info       All information that was computed from the build.info
15564                        files.
15565
15566=head1 OPTIONS
15567
15568=over 4
15569
15570=item B<--help>
15571
15572Print a brief help message and exit.
15573
15574=item B<--man>
15575
15576Print the manual page and exit.
15577
15578=item B<--dump> | B<-d>
15579
15580Print all relevant configuration data.  This is equivalent to B<--command-line>
15581B<--options> B<--target> B<--environment> B<--make-variables>
15582B<--build-parameters>.
15583
15584=item B<--command-line> | B<-c>
15585
15586Print the current configuration command line.
15587
15588=item B<--options> | B<-o>
15589
15590Print the features, both enabled and disabled, and display defined macro and
15591skipped directories where applicable.
15592
15593=item B<--target> | B<-t>
15594
15595Print the config attributes for this config target.
15596
15597=item B<--environment> | B<-e>
15598
15599Print the environment variables and their values at the time of configuration.
15600
15601=item B<--make-variables> | B<-m>
15602
15603Print the main make variables generated in the current configuration
15604
15605=item B<--build-parameters> | B<-b>
15606
15607Print the build parameters, i.e. build file and build file templates.
15608
15609=item B<--reconfigure> | B<--reconf> | B<-r>
15610
15611Redo the configuration.
15612
15613=item B<--verbose> | B<-v>
15614
15615Verbose output.
15616
15617=back
15618
15619=cut
15620
15621