GitHub284: Fix typo in xx-32.pl scripts.
[openssl.git] / util / mkfiles.pl
1 #!/usr/local/bin/perl
2 #
3 # This is a hacked version of files.pl for systems that can't do a 'make files'.
4 # Do a perl util/mkminfo.pl >MINFO to build MINFO
5 # Written by Steve Henson 1999.
6
7 # List of directories to process
8
9 my @dirs = (
10 ".",
11 "crypto",
12 "crypto/md2",
13 "crypto/md4",
14 "crypto/md5",
15 "crypto/sha",
16 "crypto/mdc2",
17 "crypto/hmac",
18 "crypto/ripemd",
19 "crypto/des",
20 "crypto/rc2",
21 "crypto/rc4",
22 "crypto/rc5",
23 "crypto/idea",
24 "crypto/bf",
25 "crypto/cast",
26 "crypto/aes",
27 "crypto/camellia",
28 "crypto/seed",
29 "crypto/modes",
30 "crypto/cmac",
31 "crypto/bn",
32 "crypto/rsa",
33 "crypto/dsa",
34 "crypto/dso",
35 "crypto/dh",
36 "crypto/ec",
37 "crypto/ecdh",
38 "crypto/ecdsa",
39 "crypto/buffer",
40 "crypto/bio",
41 "crypto/stack",
42 "crypto/lhash",
43 "crypto/rand",
44 "crypto/err",
45 "crypto/objects",
46 "crypto/evp",
47 "crypto/asn1",
48 "crypto/pem",
49 "crypto/x509",
50 "crypto/x509v3",
51 "crypto/cms",
52 "crypto/conf",
53 "crypto/jpake",
54 "crypto/txt_db",
55 "crypto/pkcs7",
56 "crypto/pkcs12",
57 "crypto/comp",
58 "crypto/engine",
59 "crypto/ocsp",
60 "crypto/ui",
61 #"crypto/store",
62 "crypto/pqueue",
63 "crypto/whrlpool",
64 "crypto/ts",
65 "crypto/srp",
66 "ssl",
67 "apps",
68 "engines",
69 "engines/ccgost",
70 "test",
71 "tools"
72 );
73
74 %top;
75
76 my $fipscanisteronly = 0;
77
78 foreach (@dirs) {
79         next if ($fipscanisteronly && !(-d $_));
80         &files_dir ($_, "Makefile");
81 }
82
83 exit(0);
84
85 sub files_dir
86 {
87 my ($dir, $makefile) = @_;
88
89 my %sym;
90
91 open (IN, "$dir/$makefile") || die "Can't open $dir/$makefile";
92
93 my $s="";
94
95 while (<IN>)
96         {
97         chop;
98         s/#.*//;
99         if (/^([^\s=]+)\s*=\s*(.*)$/)
100                 {
101                 $o="";
102                 ($s,$b)=($1,$2);
103                 for (;;)
104                         {
105                         if ($b =~ /\\$/)
106                                 {
107                                 chop($b);
108                                 $o.=$b." ";
109                                 $b=<IN>;
110                                 chop($b);
111                                 }
112                         else
113                                 {
114                                 $o.=$b." ";
115                                 last;
116                                 }
117                         }
118                 $o =~ s/^\s+//;
119                 $o =~ s/\s+$//;
120                 $o =~ s/\s+/ /g;
121
122                 $o =~ s/\$[({]([^)}]+)[)}]/$top{$1} or $sym{$1}/ge;
123                 $sym{$s}=($top{$s} or $o);
124                 }
125         }
126
127 print "RELATIVE_DIRECTORY=$dir\n";
128
129 foreach (sort keys %sym)
130         {
131         print "$_=$sym{$_}\n";
132         }
133 if ($dir eq "." && defined($sym{"BUILDENV"}))
134         {
135         foreach (split(' ',$sym{"BUILDENV"}))
136                 {
137                 /^(.+)=/;
138                 $top{$1}=$sym{$1};
139                 }
140         }
141
142 print "RELATIVE_DIRECTORY=\n";
143
144 close (IN);
145 if ($dir eq "." && $sym{FIPSCANISTERONLY} eq "y")
146         {
147         $fipscanisteronly = 1;
148         }
149 }