Add SRP.
[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/bn",
31 "crypto/rsa",
32 "crypto/dsa",
33 "crypto/dso",
34 "crypto/dh",
35 "crypto/ec",
36 "crypto/ecdh",
37 "crypto/ecdsa",
38 "crypto/buffer",
39 "crypto/bio",
40 "crypto/stack",
41 "crypto/lhash",
42 "crypto/rand",
43 "crypto/err",
44 "crypto/objects",
45 "crypto/evp",
46 "crypto/asn1",
47 "crypto/pem",
48 "crypto/x509",
49 "crypto/x509v3",
50 "crypto/cms",
51 "crypto/conf",
52 "crypto/jpake",
53 "crypto/txt_db",
54 "crypto/pkcs7",
55 "crypto/pkcs12",
56 "crypto/comp",
57 "crypto/engine",
58 "crypto/ocsp",
59 "crypto/ui",
60 "crypto/krb5",
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 foreach (@dirs) {
77         &files_dir ($_, "Makefile");
78 }
79
80 exit(0);
81
82 sub files_dir
83 {
84 my ($dir, $makefile) = @_;
85
86 my %sym;
87
88 open (IN, "$dir/$makefile") || die "Can't open $dir/$makefile";
89
90 my $s="";
91
92 while (<IN>)
93         {
94         chop;
95         s/#.*//;
96         if (/^(\S+)\s*=\s*(.*)$/)
97                 {
98                 $o="";
99                 ($s,$b)=($1,$2);
100                 for (;;)
101                         {
102                         if ($b =~ /\\$/)
103                                 {
104                                 chop($b);
105                                 $o.=$b." ";
106                                 $b=<IN>;
107                                 chop($b);
108                                 }
109                         else
110                                 {
111                                 $o.=$b." ";
112                                 last;
113                                 }
114                         }
115                 $o =~ s/^\s+//;
116                 $o =~ s/\s+$//;
117                 $o =~ s/\s+/ /g;
118
119                 $o =~ s/\$[({]([^)}]+)[)}]/$top{$1} or $sym{$1}/ge;
120                 $sym{$s}=($top{$s} or $o);
121                 }
122         }
123
124 print "RELATIVE_DIRECTORY=$dir\n";
125
126 foreach (sort keys %sym)
127         {
128         print "$_=$sym{$_}\n";
129         }
130 if ($dir eq "." && defined($sym{"BUILDENV"}))
131         {
132         foreach (split(' ',$sym{"BUILDENV"}))
133                 {
134                 /^(.+)=/;
135                 $top{$1}=$sym{$1};
136                 }
137         }
138
139 print "RELATIVE_DIRECTORY=\n";
140
141 close (IN);
142 }