Add dependency on destination directory.
[openssl.git] / util / mk1mf.pl
1 #!/usr/local/bin/perl
2 # A bit of an evil hack but it post processes the file ../MINFO which
3 # is generated by `make files` in the top directory.
4 # This script outputs one mega makefile that has no shell stuff or any
5 # funny stuff
6 #
7
8 $INSTALLTOP="/usr/local/ssl";
9 $OPENSSLDIR="/usr/local/ssl";
10 $OPTIONS="";
11 $ssl_version="";
12 $banner="\t\@echo Building OpenSSL";
13
14 my $no_static_engine = 1;
15 my $engines = "";
16 my @engines_obj = "";
17 my $otherlibs = "";
18 local $zlib_opt = 0;    # 0 = no zlib, 1 = static, 2 = dynamic
19 local $zlib_lib = "";
20 local $perl_asm = 0;    # 1 to autobuild asm files from perl scripts
21
22 local $fips_canister_path = "";
23 my $fips_premain_dso_exe_path = "";
24 my $fips_premain_c_path = "";
25 my $fips_sha1_exe_path = "";
26
27 local $fipscanisterbuild = 0;
28
29 my $fipscanisteronly = 0;
30
31 my $fipslibdir = "";
32 my $baseaddr = "";
33
34 my $ex_l_libs = "";
35
36 my $build_targets = "lib exe";
37 my $libs_dep = "\$(O_CRYPTO) \$(O_SSL)";
38
39 # Options to import from top level Makefile
40
41 my %mf_import = (
42         VERSION        => \$ssl_version,
43         OPTIONS        => \$OPTIONS,
44         INSTALLTOP     => \$INSTALLTOP,
45         OPENSSLDIR     => \$OPENSSLDIR,
46         PLATFORM       => \$mf_platform,
47         CFLAG          => \$mf_cflag,
48         DEPFLAG        => \$mf_depflag,
49         CPUID_OBJ      => \$mf_cpuid_asm,
50         BN_ASM         => \$mf_bn_asm,
51         DES_ENC        => \$mf_des_asm,
52         AES_ENC        => \$mf_aes_asm,
53         BF_ENC         => \$mf_bf_asm,
54         CAST_ENC       => \$mf_cast_asm,
55         RC4_ENC        => \$mf_rc4_asm,
56         RC5_ENC        => \$mf_rc5_asm,
57         MD5_ASM_OBJ    => \$mf_md5_asm,
58         SHA1_ASM_OBJ   => \$mf_sha_asm,
59         RMD160_ASM_OBJ => \$mf_rmd_asm,
60         WP_ASM_OBJ     => \$mf_wp_asm,
61         CMLL_ENC       => \$mf_cm_asm,
62         MODES_ASM_OBJ  => \$mf_modes_asm,
63         FIPSCANISTERONLY  => \$mf_fipscanisteronly,
64         FIPSCANISTERINTERNAL  => \$mf_fipscanisterinternal
65 );
66
67 open(IN,"<Makefile") || die "unable to open Makefile!\n";
68 while(<IN>) {
69     my ($mf_opt, $mf_ref);
70     while (($mf_opt, $mf_ref) = each %mf_import) {
71         if (/^$mf_opt\s*=\s*(.*)$/) {
72            $$mf_ref = $1;
73         }
74     }
75 }
76 close(IN);
77
78 $debug = 1 if $mf_platform =~ /^debug-/;
79
80 if ($mf_fipscanisterinternal eq "y") {
81         $fips = 1;
82         $fipscanisterbuild = 1;
83         $fipscanisteronly = 1;
84 }
85
86
87 die "Makefile is not the toplevel Makefile!\n" if $ssl_version eq "";
88
89 $infile="MINFO";
90
91 %ops=(
92         "VC-WIN32",   "Microsoft Visual C++ [4-6] - Windows NT or 9X",
93         "VC-WIN64I",  "Microsoft C/C++ - Win64/IA-64",
94         "VC-WIN64A",  "Microsoft C/C++ - Win64/x64",
95         "VC-CE",   "Microsoft eMbedded Visual C++ 3.0 - Windows CE ONLY",
96         "VC-NT",   "Microsoft Visual C++ [4-6] - Windows NT ONLY",
97         "Mingw32", "GNU C++ - Windows NT or 9x",
98         "Mingw32-files", "Create files with DOS copy ...",
99         "BC-NT",   "Borland C++ 4.5 - Windows NT",
100         "linux-elf","Linux elf",
101         "ultrix-mips","DEC mips ultrix",
102         "FreeBSD","FreeBSD distribution",
103         "OS2-EMX", "EMX GCC OS/2",
104         "netware-clib", "CodeWarrior for NetWare - CLib - with WinSock Sockets",
105         "netware-clib-bsdsock", "CodeWarrior for NetWare - CLib - with BSD Sockets",
106         "netware-libc", "CodeWarrior for NetWare - LibC - with WinSock Sockets",
107         "netware-libc-bsdsock", "CodeWarrior for NetWare - LibC - with BSD Sockets",
108         "default","cc under unix",
109         "auto", "auto detect from top level Makefile"
110         );
111
112 $platform="";
113 my $xcflags="";
114 foreach (@ARGV)
115         {
116         if (!&read_options && !defined($ops{$_}))
117                 {
118                 print STDERR "unknown option - $_\n";
119                 print STDERR "usage: perl mk1mf.pl [options] [system]\n";
120                 print STDERR "\nwhere [system] can be one of the following\n";
121                 foreach $i (sort keys %ops)
122                 { printf STDERR "\t%-10s\t%s\n",$i,$ops{$i}; }
123                 print STDERR <<"EOF";
124 and [options] can be one of
125         no-md2 no-md4 no-md5 no-sha no-mdc2     - Skip this digest
126         no-ripemd
127         no-rc2 no-rc4 no-rc5 no-idea no-des     - Skip this symetric cipher
128         no-bf no-cast no-aes no-camellia no-seed
129         no-rsa no-dsa no-dh                     - Skip this public key cipher
130         no-ssl2 no-ssl3                         - Skip this version of SSL
131         just-ssl                                - remove all non-ssl keys/digest
132         no-asm                                  - No x86 asm
133         no-krb5                                 - No KRB5
134         no-srp                                  - No SRP
135         no-ec                                   - No EC
136         no-ecdsa                                - No ECDSA
137         no-ecdh                                 - No ECDH
138         no-engine                               - No engine
139         no-hw                                   - No hw
140         nasm                                    - Use NASM for x86 asm
141         nw-nasm                                 - Use NASM x86 asm for NetWare
142         nw-mwasm                                - Use Metrowerks x86 asm for NetWare
143         gaswin                                  - Use GNU as with Mingw32
144         no-socks                                - No socket code
145         no-err                                  - No error strings
146         dll/shlib                               - Build shared libraries (MS)
147         debug                                   - Debug build
148         profile                                 - Profiling build
149         gcc                                     - Use Gcc (unix)
150
151 Values that can be set
152 TMP=tmpdir OUT=outdir SRC=srcdir BIN=binpath INC=header-outdir CC=C-compiler
153
154 -L<ex_lib_path> -l<ex_lib>                      - extra library flags (unix)
155 -<ex_cc_flags>                                  - extra 'cc' flags,
156                                                   added (MS), or replace (unix)
157 EOF
158                 exit(1);
159                 }
160         $platform=$_;
161         }
162 foreach (grep(!/^$/, split(/ /, $OPTIONS)))
163         {
164         print STDERR "unknown option - $_\n" if !&read_options;
165         }
166
167 $no_static_engine = 0 if (!$shlib);
168
169 $no_mdc2=1 if ($no_des);
170
171 $no_ssl3=1 if ($no_md5 || $no_sha);
172 $no_ssl3=1 if ($no_rsa && $no_dh);
173
174 $no_ssl2=1 if ($no_md5);
175 $no_ssl2=1 if ($no_rsa);
176
177 $out_def="out";
178 $inc_def="outinc";
179 $tmp_def="tmp";
180
181 $perl="perl" unless defined $perl;
182 $mkdir="-mkdir" unless defined $mkdir;
183
184 ($ssl,$crypto)=("ssl","crypto");
185 $ranlib="echo ranlib";
186
187 $cc=(defined($VARS{'CC'}))?$VARS{'CC'}:'cc';
188 $src_dir=(defined($VARS{'SRC'}))?$VARS{'SRC'}:'.';
189 $bin_dir=(defined($VARS{'BIN'}))?$VARS{'BIN'}:'';
190
191 # $bin_dir.=$o causes a core dump on my sparc :-(
192
193
194 $NT=0;
195
196 push(@INC,"util/pl","pl");
197
198 if ($platform eq "auto") {
199         $platform = $mf_platform;
200         print STDERR "Imported platform $mf_platform\n";
201 }
202
203 if (($platform =~ /VC-(.+)/))
204         {
205         $FLAVOR=$1;
206         $NT = 1 if $1 eq "NT";
207         require 'VC-32.pl';
208         }
209 elsif ($platform eq "Mingw32")
210         {
211         require 'Mingw32.pl';
212         }
213 elsif ($platform eq "Mingw32-files")
214         {
215         require 'Mingw32f.pl';
216         }
217 elsif ($platform eq "BC-NT")
218         {
219         $bc=1;
220         require 'BC-32.pl';
221         }
222 elsif ($platform eq "FreeBSD")
223         {
224         require 'unix.pl';
225         $cflags='-DTERMIO -D_ANSI_SOURCE -O2 -fomit-frame-pointer';
226         }
227 elsif ($platform eq "linux-elf")
228         {
229         require "unix.pl";
230         require "linux.pl";
231         $unix=1;
232         }
233 elsif ($platform eq "ultrix-mips")
234         {
235         require "unix.pl";
236         require "ultrix.pl";
237         $unix=1;
238         }
239 elsif ($platform eq "OS2-EMX")
240         {
241         $wc=1;
242         require 'OS2-EMX.pl';
243         }
244 elsif (($platform eq "netware-clib") || ($platform eq "netware-libc") ||
245        ($platform eq "netware-clib-bsdsock") || ($platform eq "netware-libc-bsdsock"))
246         {
247         $LIBC=1 if $platform eq "netware-libc" || $platform eq "netware-libc-bsdsock";
248         $BSDSOCK=1 if ($platform eq "netware-libc-bsdsock") || ($platform eq "netware-clib-bsdsock");
249         require 'netware.pl';
250         }
251 else
252         {
253         require "unix.pl";
254
255         $unix=1;
256         $cflags.=' -DTERMIO';
257         }
258
259 $out_dir=(defined($VARS{'OUT'}))?$VARS{'OUT'}:$out_def.($debug?".dbg":"");
260 $tmp_dir=(defined($VARS{'TMP'}))?$VARS{'TMP'}:$tmp_def.($debug?".dbg":"");
261 $inc_dir=(defined($VARS{'INC'}))?$VARS{'INC'}:$inc_def;
262
263 $bin_dir=$bin_dir.$o unless ((substr($bin_dir,-1,1) eq $o) || ($bin_dir eq ''));
264
265 $cflags= "$xcflags$cflags" if $xcflags ne "";
266
267 $cflags.=" -DOPENSSL_NO_IDEA" if $no_idea;
268 $cflags.=" -DOPENSSL_NO_AES"  if $no_aes;
269 $cflags.=" -DOPENSSL_NO_CAMELLIA"  if $no_camellia;
270 $cflags.=" -DOPENSSL_NO_SEED" if $no_seed;
271 $cflags.=" -DOPENSSL_NO_RC2"  if $no_rc2;
272 $cflags.=" -DOPENSSL_NO_RC4"  if $no_rc4;
273 $cflags.=" -DOPENSSL_NO_RC5"  if $no_rc5;
274 $cflags.=" -DOPENSSL_NO_MD2"  if $no_md2;
275 $cflags.=" -DOPENSSL_NO_MD4"  if $no_md4;
276 $cflags.=" -DOPENSSL_NO_MD5"  if $no_md5;
277 $cflags.=" -DOPENSSL_NO_SHA"  if $no_sha;
278 $cflags.=" -DOPENSSL_NO_SHA1" if $no_sha1;
279 $cflags.=" -DOPENSSL_NO_RIPEMD" if $no_ripemd;
280 $cflags.=" -DOPENSSL_NO_MDC2" if $no_mdc2;
281 $cflags.=" -DOPENSSL_NO_BF"  if $no_bf;
282 $cflags.=" -DOPENSSL_NO_CAST" if $no_cast;
283 $cflags.=" -DOPENSSL_NO_DES"  if $no_des;
284 $cflags.=" -DOPENSSL_NO_RSA"  if $no_rsa;
285 $cflags.=" -DOPENSSL_NO_DSA"  if $no_dsa;
286 $cflags.=" -DOPENSSL_NO_DH"   if $no_dh;
287 $cflags.=" -DOPENSSL_NO_WHIRLPOOL"   if $no_whirlpool;
288 $cflags.=" -DOPENSSL_NO_SOCK" if $no_sock;
289 $cflags.=" -DOPENSSL_NO_SSL2" if $no_ssl2;
290 $cflags.=" -DOPENSSL_NO_SSL3" if $no_ssl3;
291 $cflags.=" -DOPENSSL_NO_TLSEXT" if $no_tlsext;
292 $cflags.=" -DOPENSSL_NO_SRP" if $no_srp;
293 $cflags.=" -DOPENSSL_NO_CMS" if $no_cms;
294 $cflags.=" -DOPENSSL_NO_ERR"  if $no_err;
295 $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5;
296 $cflags.=" -DOPENSSL_NO_EC"   if $no_ec;
297 $cflags.=" -DOPENSSL_NO_ECDSA" if $no_ecdsa;
298 $cflags.=" -DOPENSSL_NO_ECDH" if $no_ecdh;
299 $cflags.=" -DOPENSSL_NO_GOST" if $no_gost;
300 $cflags.=" -DOPENSSL_NO_ENGINE"   if $no_engine;
301 $cflags.=" -DOPENSSL_NO_HW"   if $no_hw;
302 $cflags.=" -DOPENSSL_FIPS"    if $fips;
303 $cflags.=" -DOPENSSL_NO_JPAKE"    if $no_jpake;
304 $cflags.=" -DOPENSSL_NO_EC2M"    if $no_ec2m;
305 $cflags.= " -DZLIB" if $zlib_opt;
306 $cflags.= " -DZLIB_SHARED" if $zlib_opt == 2;
307
308 if ($no_static_engine)
309         {
310         $cflags .= " -DOPENSSL_NO_STATIC_ENGINE";
311         }
312 else
313         {
314         $cflags .= " -DOPENSSL_NO_DYNAMIC_ENGINE";
315         }
316
317 #$cflags.=" -DRSAref"  if $rsaref ne "";
318
319 ## if ($unix)
320 ##      { $cflags="$c_flags" if ($c_flags ne ""); }
321 ##else
322         { $cflags="$c_flags$cflags" if ($c_flags ne ""); }
323
324 $ex_libs="$l_flags$ex_libs" if ($l_flags ne "");
325
326
327 %shlib_ex_cflags=("SSL" => " -DOPENSSL_BUILD_SHLIBSSL",
328                   "CRYPTO" => " -DOPENSSL_BUILD_SHLIBCRYPTO");
329
330 if ($msdos)
331         {
332         $banner ="\t\@echo Make sure you have run 'perl Configure $platform' in the\n";
333         $banner.="\t\@echo top level directory, if you don't have perl, you will\n";
334         $banner.="\t\@echo need to probably edit crypto/bn/bn.h, check the\n";
335         $banner.="\t\@echo documentation for details.\n";
336         }
337
338 # have to do this to allow $(CC) under unix
339 $link="$bin_dir$link" if ($link !~ /^\$/);
340
341 $INSTALLTOP =~ s|/|$o|g;
342 $OPENSSLDIR =~ s|/|$o|g;
343
344 #############################################
345 # We parse in input file and 'store' info for later printing.
346 open(IN,"<$infile") || die "unable to open $infile:$!\n";
347 $_=<IN>;
348 for (;;)
349         {
350         s/\s*$//; # was chop, didn't work in mixture of perls for Windows...
351
352         ($key,$val)=/^([^=]+)=(.*)/;
353         if ($key eq "RELATIVE_DIRECTORY")
354                 {
355                 if ($lib ne "")
356                         {
357                         if ($fips && $dir =~ /^fips/)
358                                 {
359                                 $uc = "FIPS";
360                                 }
361                         else
362                                 {
363                                 $uc=$lib;
364                                 $uc =~ s/^lib(.*)\.a/$1/;
365                                 $uc =~ tr/a-z/A-Z/;
366                                 }
367                         if (($uc ne "FIPS") || $fipscanisterbuild)
368                                 {
369                                 $lib_nam{$uc}=$uc;
370                                 $lib_obj{$uc}.=$libobj." ";
371                                 }
372                         }
373                 last if ($val eq "FINISHED");
374                 $lib="";
375                 $libobj="";
376                 $dir=$val;
377                 }
378
379         if ($key eq "KRB5_INCLUDES")
380                 { $cflags .= " $val";}
381
382         if ($key eq "ZLIB_INCLUDE")
383                 { $cflags .= " $val" if $val ne "";}
384
385         if ($key eq "LIBZLIB")
386                 { $zlib_lib = "$val" if $val ne "";}
387
388         if ($key eq "LIBKRB5")
389                 { $ex_libs .= " $val" if $val ne "";}
390
391         if ($key eq "TEST" && (!$fipscanisteronly || $dir =~ /^fips/ ))
392                 { $test.=&var_add($dir,$val, 0); }
393
394         if (($key eq "PROGS") || ($key eq "E_OBJ"))
395                 { $e_exe.=&var_add($dir,$val, 0); }
396
397         if ($key eq "LIB")
398                 {
399                 $lib=$val;
400                 $lib =~ s/^.*\/([^\/]+)$/$1/;
401                 }
402         if ($key eq "LIBNAME" && $no_static_engine)
403                 {
404                 $lib=$val;
405                 $lib =~ s/^.*\/([^\/]+)$/$1/;
406                 $otherlibs .= " $lib";
407                 }
408
409         if ($key eq "EXHEADER")
410                 { $exheader.=&var_add($dir,$val, 1); }
411
412         if ($key eq "HEADER")
413                 { $header.=&var_add($dir,$val, 1); }
414
415         if ($key eq "LIBOBJ")
416             {
417             if ($dir ne "engines" || !$no_static_engine)
418                 { $libobj=&var_add($dir,$val, 0); }
419             else
420                 { push(@engines_obj,split(/\s+/,&var_add($dir,$val,0))); }
421             }
422         if ($key eq "LIBNAMES" && $dir eq "engines" && $no_static_engine)
423                 { $engines.=$val }
424
425         if ($key eq "FIPS_EX_OBJ")
426                 { 
427                 $fips_ex_obj=&var_add("crypto",$val,0);
428                 }
429
430         if ($key eq "FIPSLIBDIR")
431                 {
432                 $fipslibdir=$val;
433                 $fipslibdir =~ s/\/$//;
434                 $fipslibdir =~ s/\//$o/g;
435                 }
436
437         if ($key eq "BASEADDR")
438                 { $baseaddr=$val;}
439
440         if (!($_=<IN>))
441                 { $_="RELATIVE_DIRECTORY=FINISHED\n"; }
442         }
443 close(IN);
444
445 if ($fips)
446         {
447
448         foreach (split " ", $fips_ex_obj)
449                 {
450                 $fips_exclude_obj{$1} = 1 if (/\/([^\/]*)$/);
451                 }
452         foreach (split " ",
453                 "$mf_cpuid_asm $mf_aes_asm $mf_sha_asm $mf_bn_asm " .
454                 "$mf_des_asm $mf_modes_asm")
455                 {
456                 s/\.o//;
457                 $fips_exclude_obj{$_} = 1;
458                 }
459         my @ltmp = split " ", $lib_obj{"CRYPTO"};
460
461
462         $lib_obj{"CRYPTO"} = "";
463
464         foreach(@ltmp)
465                 {
466                 if (/\/([^\/]*)$/ && exists $fips_exclude_obj{$1})
467                         {
468                         if ($fipscanisterbuild)
469                                 {
470                                 $lib_obj{"FIPS"} .= "$_ ";
471                                 }
472                         }
473                 elsif (!$fipscanisteronly)
474                         {
475                         $lib_obj{"CRYPTO"} .= "$_ ";
476                         }
477                 }
478
479         }
480
481 if ($fipscanisterbuild)
482         {
483         $fips_canister_path = "\$(LIB_D)${o}fipscanister.lib" if $fips_canister_path eq "";
484         $fips_premain_c_path = "\$(LIB_D)${o}fips_premain.c";
485         }
486 else
487         {
488         if ($fips_canister_path eq "")
489                 {
490                 $fips_canister_path = "\$(FIPSLIB_D)${o}fipscanister.lib";
491                 }
492
493         if ($fips_premain_c_path eq "")
494                 {
495                 $fips_premain_c_path = "\$(FIPSLIB_D)${o}fips_premain.c";
496                 }
497         }
498
499 if ($fips)
500         {
501         if ($fips_sha1_exe_path eq "")
502                 {
503                 $fips_sha1_exe_path =
504                         "\$(BIN_D)${o}fips_standalone_sha1$exep";
505                 }
506         }
507         else
508         {
509         $fips_sha1_exe_path = "";
510         }
511
512 if ($fips_premain_dso_exe_path eq "")
513         {
514         $fips_premain_dso_exe_path = "\$(BIN_D)${o}fips_premain_dso$exep";
515         }
516
517 #       $ex_build_targets .= "\$(BIN_D)${o}\$(E_PREMAIN_DSO)$exep" if ($fips);
518
519 if ($fips)
520         {
521         if (!$shlib)
522                 {
523                 $build_targets .= " \$(LIB_D)$o$crypto_compat \$(PREMAIN_DSO_EXE)";
524                 $ex_l_libs .= " \$(O_FIPSCANISTER)";
525                 $ex_libs_dep .= " \$(O_FIPSCANISTER)" if $fipscanisterbuild;
526                 }
527         if ($fipscanisterbuild)
528                 {
529                 $fipslibdir = "\$(LIB_D)";
530                 }
531         else
532                 {
533                 if ($fipslibdir eq "")
534                         {
535                         open (IN, "util/fipslib_path.txt") || fipslib_error();
536                         $fipslibdir = <IN>;
537                         chomp $fipslibdir;
538                         close IN;
539                         }
540                 fips_check_files($fipslibdir,
541                                 "fipscanister.lib", "fipscanister.lib.sha1",
542                                 "fips_premain.c", "fips_premain.c.sha1");
543                 }
544         }
545
546 if ($fipscanisteronly)
547         {
548         $build_targets = "\$(O_FIPSCANISTER) \$(T_EXE)";
549         $libs_dep = "";
550         }
551
552 $cp2 = $cp unless defined $cp2;
553
554 $extra_install= <<"EOF";
555         \$(CP) \"\$(INCO_D)${o}*.\[ch\]\" \"\$(INSTALLTOP)${o}include${o}openssl\"
556         \$(CP) \"\$(BIN_D)$o\$(E_EXE)$exep \$(INSTALLTOP)${o}bin\"
557         \$(MKDIR) \"\$(OPENSSLDIR)\"
558         \$(CP) apps${o}openssl.cnf \"\$(OPENSSLDIR)\"
559 EOF
560
561 if ($fipscanisteronly)
562         {
563         $extra_install = <<"EOF";
564         \$(CP) \"\$(O_FIPSCANISTER)\" \"\$(INSTALLTOP)${o}lib\"
565         \$(CP) \"\$(O_FIPSCANISTER).sha1\" \"\$(INSTALLTOP)${o}lib\"
566         \$(CP2) \"fips${o}fips_premain.c\" \"\$(INSTALLTOP)${o}lib\"
567         \$(CP) \"fips${o}fips_premain.c.sha1\" \"\$(INSTALLTOP)${o}lib\"
568         \$(CP) \"\$(INCO_D)${o}fips.h\" \"\$(INSTALLTOP)${o}include${o}openssl\"
569         \$(CP) \"\$(INCO_D)${o}fips_rand.h\" \"\$(INSTALLTOP)${o}include${o}openssl\"
570         \$(CP) "\$(BIN_D)${o}fips_standalone_sha1$exep" \"\$(INSTALLTOP)${o}bin\"
571         \$(CP) \"util${o}fipslink.pl\" \"\$(INSTALLTOP)${o}bin\"
572 EOF
573         }
574 elsif ($shlib)
575         {
576         $extra_install .= <<"EOF";
577         \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}bin\"
578         \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}bin\"
579         \$(CP) \"\$(L_SSL)\" \"\$(INSTALLTOP)${o}lib\"
580         \$(CP) \"\$(L_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
581 EOF
582         if ($no_static_engine)
583                 {
584                 $extra_install .= <<"EOF"
585         \$(MKDIR) \"\$(INSTALLTOP)${o}lib${o}engines\"
586         \$(CP) \"\$(E_SHLIB)\" \"\$(INSTALLTOP)${o}lib${o}engines\"
587 EOF
588                 }
589         }
590 else
591         {
592         $extra_install .= <<"EOF";
593         \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}lib\"
594         \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
595 EOF
596         $ex_libs .= " $zlib_lib" if $zlib_opt == 1;
597         }
598
599 $defs= <<"EOF";
600 # This makefile has been automatically generated from the OpenSSL distribution.
601 # This single makefile will build the complete OpenSSL distribution and
602 # by default leave the 'intertesting' output files in .${o}out and the stuff
603 # that needs deleting in .${o}tmp.
604 # The file was generated by running 'make makefile.one', which
605 # does a 'make files', which writes all the environment variables from all
606 # the makefiles to the file call MINFO.  This file is used by
607 # util${o}mk1mf.pl to generate makefile.one.
608 # The 'makefile per directory' system suites me when developing this
609 # library and also so I can 'distribute' indervidual library sections.
610 # The one monster makefile better suits building in non-unix
611 # environments.
612
613 EOF
614
615 $defs .= $preamble if defined $preamble;
616
617 $defs.= <<"EOF";
618 INSTALLTOP=$INSTALLTOP
619 OPENSSLDIR=$OPENSSLDIR
620
621 # Set your compiler options
622 PLATFORM=$platform
623 CC=$bin_dir${cc}
624 CFLAG=$cflags
625 APP_CFLAG=$app_cflag
626 LIB_CFLAG=$lib_cflag
627 SHLIB_CFLAG=$shl_cflag
628 APP_EX_OBJ=$app_ex_obj
629 SHLIB_EX_OBJ=$shlib_ex_obj
630 # add extra libraries to this define, for solaris -lsocket -lnsl would
631 # be added
632 EX_LIBS=$ex_libs
633
634 # The OpenSSL directory
635 SRC_D=$src_dir
636
637 LINK=$link
638 LFLAGS=$lflags
639 RSC=$rsc
640 FIPSLINK=\$(PERL) util${o}fipslink.pl
641
642 # The output directory for everything intersting
643 OUT_D=$out_dir
644 # The output directory for all the temporary muck
645 TMP_D=$tmp_dir
646 # The output directory for the header files
647 INC_D=$inc_dir
648 INCO_D=$inc_dir${o}openssl
649
650 PERL=$perl
651 CP=$cp
652 CP2=$cp2
653 RM=$rm
654 RANLIB=$ranlib
655 MKDIR=$mkdir
656 MKLIB=$bin_dir$mklib
657 MLFLAGS=$mlflags
658 ASM=$bin_dir$asm
659
660 # FIPS validated module and support file locations
661
662 E_PREMAIN_DSO=fips_premain_dso
663
664 FIPSLIB_D=$fipslibdir
665 BASEADDR=$baseaddr
666 FIPS_PREMAIN_SRC=$fips_premain_c_path
667 O_FIPSCANISTER=$fips_canister_path
668 FIPS_SHA1_EXE=$fips_sha1_exe_path
669 PREMAIN_DSO_EXE=$fips_premain_dso_exe_path
670
671 ######################################################
672 # You should not need to touch anything below this point
673 ######################################################
674
675 E_EXE=openssl
676 SSL=$ssl
677 CRYPTO=$crypto
678
679 # BIN_D  - Binary output directory
680 # TEST_D - Binary test file output directory
681 # LIB_D  - library output directory
682 # ENG_D  - dynamic engine output directory
683 # Note: if you change these point to different directories then uncomment out
684 # the lines around the 'NB' comment below.
685
686 BIN_D=\$(OUT_D)
687 TEST_D=\$(OUT_D)
688 LIB_D=\$(OUT_D)
689 ENG_D=\$(OUT_D)
690
691 # INCL_D - local library directory
692 # OBJ_D  - temp object file directory
693 OBJ_D=\$(TMP_D)
694 INCL_D=\$(TMP_D)
695
696 O_SSL=     \$(LIB_D)$o$plib\$(SSL)$shlibp
697 O_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$shlibp
698 SO_SSL=    $plib\$(SSL)$so_shlibp
699 SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp
700 L_SSL=     \$(LIB_D)$o$plib\$(SSL)$libp
701 L_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$libp
702
703 L_LIBS= \$(L_SSL) \$(L_CRYPTO) $ex_l_libs
704
705 ######################################################
706 # Don't touch anything below this point
707 ######################################################
708
709 INC=-I\$(INC_D) -I\$(INCL_D)
710 APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG)
711 LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG)
712 SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG)
713 LIBS_DEP=$libs_dep
714
715 #############################################
716 EOF
717
718 $rules=<<"EOF";
719 all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers \$(FIPS_SHA1_EXE) $build_targets
720
721 banner:
722 $banner
723
724 \$(TMP_D):
725         \$(MKDIR) \"\$(TMP_D)\"
726 # NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different
727 #\$(BIN_D):
728 #       \$(MKDIR) \$(BIN_D)
729 #
730 #\$(TEST_D):
731 #       \$(MKDIR) \$(TEST_D)
732
733 \$(LIB_D):
734         \$(MKDIR) \"\$(LIB_D)\"
735
736 \$(INCO_D): \$(INC_D)
737         \$(MKDIR) \"\$(INCO_D)\"
738
739 \$(INC_D):
740         \$(MKDIR) \"\$(INC_D)\"
741
742 headers: \$(HEADER) \$(EXHEADER)
743         @
744
745 lib: \$(LIBS_DEP) \$(E_SHLIB)
746
747 exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep
748
749 install: all
750         \$(MKDIR) \"\$(INSTALLTOP)\"
751         \$(MKDIR) \"\$(INSTALLTOP)${o}bin\"
752         \$(MKDIR) \"\$(INSTALLTOP)${o}include\"
753         \$(MKDIR) \"\$(INSTALLTOP)${o}include${o}openssl\"
754         \$(MKDIR) \"\$(INSTALLTOP)${o}lib\"
755 $extra_install
756
757
758 test: \$(T_EXE)
759         cd \$(BIN_D)
760         ..${o}ms${o}test
761
762 clean:
763         \$(RM) \$(TMP_D)$o*.*
764
765 vclean:
766         \$(RM) \$(TMP_D)$o*.*
767         \$(RM) \$(OUT_D)$o*.*
768
769 reallyclean:
770         \$(RM) -rf \$(TMP_D)
771         \$(RM) -rf \$(BIN_D)
772         \$(RM) -rf \$(TEST_D)
773         \$(RM) -rf \$(LIB_D)
774         \$(RM) -rf \$(INC_D)
775
776 EOF
777     
778 my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform";
779 $platform_cpp_symbol =~ s/-/_/g;
780 if (open(IN,"crypto/buildinf.h"))
781         {
782         # Remove entry for this platform in existing file buildinf.h.
783
784         my $old_buildinf_h = "";
785         while (<IN>)
786                 {
787                 if (/^\#ifdef $platform_cpp_symbol$/)
788                         {
789                         while (<IN>) { last if (/^\#endif/); }
790                         }
791                 else
792                         {
793                         $old_buildinf_h .= $_;
794                         }
795                 }
796         close(IN);
797
798         open(OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
799         print OUT $old_buildinf_h;
800         close(OUT);
801         }
802
803 open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h";
804 printf OUT <<EOF;
805 #ifdef $platform_cpp_symbol
806   /* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */
807   #define CFLAGS "$cc $cflags"
808   #define PLATFORM "$platform"
809 EOF
810 printf OUT "  #define DATE \"%s\"\n", scalar gmtime();
811 printf OUT "#endif\n";
812 close(OUT);
813
814 # Strip off trailing ' '
815 foreach (keys %lib_obj) { $lib_obj{$_}=&clean_up_ws($lib_obj{$_}); }
816 $test=&clean_up_ws($test);
817 $e_exe=&clean_up_ws($e_exe);
818 $exheader=&clean_up_ws($exheader);
819 $header=&clean_up_ws($header);
820
821 # First we strip the exheaders from the headers list
822 foreach (split(/\s+/,$exheader)){ $h{$_}=1; }
823 foreach (split(/\s+/,$header))  { $h.=$_." " unless $h{$_}; }
824 chop($h); $header=$h;
825
826 $defs.=&do_defs("HEADER",$header,"\$(INCL_D)","");
827 $rules.=&do_copy_rule("\$(INCL_D)",$header,"");
828
829 $defs.=&do_defs("EXHEADER",$exheader,"\$(INCO_D)","");
830 $rules.=&do_copy_rule("\$(INCO_D)",$exheader,"");
831
832 $defs.=&do_defs("T_OBJ",$test,"\$(OBJ_D)",$obj);
833 $rules.=&do_compile_rule("\$(OBJ_D)",$test,"\$(APP_CFLAGS)");
834
835 $defs.=&do_defs("E_OBJ",$e_exe,"\$(OBJ_D)",$obj);
836 $rules.=&do_compile_rule("\$(OBJ_D)",$e_exe,'-DMONOLITH $(APP_CFLAGS)');
837
838 # Special case rules for fips_start and fips_end fips_premain_dso
839
840 if ($fips)
841         {
842         if ($fipscanisterbuild)
843                 {
844                 $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_start$obj",
845                         "fips${o}fips_canister.c",
846                         "-DFIPS_START \$(SHLIB_CFLAGS)");
847                 $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_end$obj",
848                         "fips${o}fips_canister.c", "\$(SHLIB_CFLAGS)");
849                 }
850         $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_standalone_sha1$obj",
851                 "fips${o}sha${o}fips_standalone_sha1.c",
852                 "\$(APP_CFLAGS)");
853         $rules.=&cc_compile_target("\$(OBJ_D)${o}\$(E_PREMAIN_DSO)$obj",
854                 "fips${o}fips_premain.c",
855                 "-DFINGERPRINT_PREMAIN_DSO_LOAD \$(APP_CFLAGS)");
856         }
857
858 foreach (values %lib_nam)
859         {
860         $lib_obj=$lib_obj{$_};
861         local($slib)=$shlib;
862
863         if (($_ eq "SSL") && $no_ssl2 && $no_ssl3)
864                 {
865                 $rules.="\$(O_SSL):\n\n"; 
866                 next;
867                 }
868
869         $defs.=&do_defs(${_}."OBJ",$lib_obj,"\$(OBJ_D)",$obj);
870         $lib=($slib)?" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)";
871         $rules.=&do_compile_rule("\$(OBJ_D)",$lib_obj{$_},$lib);
872         }
873
874 # hack to add version info on MSVC
875 if (($platform eq "VC-WIN32") || ($platform eq "VC-WIN64A")
876         || ($platform eq "VC-WIN64I") || ($platform eq "VC-NT")) {
877     $rules.= <<"EOF";
878 \$(OBJ_D)\\\$(CRYPTO).res: ms\\version32.rc
879         \$(RSC) /fo"\$(OBJ_D)\\\$(CRYPTO).res" /d CRYPTO ms\\version32.rc
880
881 \$(OBJ_D)\\\$(SSL).res: ms\\version32.rc
882         \$(RSC) /fo"\$(OBJ_D)\\\$(SSL).res" /d SSL ms\\version32.rc
883
884 EOF
885 }
886
887 $defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
888 foreach (split(/\s+/,$test))
889         {
890         my $t_libs;
891         $t=&bname($_);
892         my $ltype;
893         # Check to see if test program is FIPS
894         if ($fips && /fips/)
895                 {
896                 # If fips perform static link to 
897                 # $(O_FIPSCANISTER)
898                 $t_libs = "\$(O_FIPSCANISTER)";
899                 $ltype = 2;
900                 }
901         else
902                 {
903                 $t_libs = "\$(L_LIBS)";
904                 $ltype = 0;
905                 }
906
907         $tt="\$(OBJ_D)${o}$t${obj}";
908         $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","$t_libs \$(EX_LIBS)", $ltype);
909         }
910
911 $defs.=&do_defs("E_SHLIB",$engines . $otherlibs,"\$(ENG_D)",$shlibp);
912
913 foreach (split(/\s+/,$engines))
914         {
915         my $engine = $_;
916         my @objs   = grep {/e_$engine/} @engines_obj;
917         $rules.=&do_compile_rule("\$(OBJ_D)",join(" ",@objs),$lib);
918         map {$_=~s/.*\/([^\/]+)$/\$(OBJ_D)${o}$1$obj/} @objs;
919         $rules.= &do_lib_rule(join(" ",@objs),"\$(ENG_D)$o$engine$shlibp","",$shlib,"");
920         }
921
922
923
924 $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)");
925 #$rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)");
926
927 foreach (split(" ",$otherlibs))
928         {
929         my $uc = $_;
930         $uc =~ tr /a-z/A-Z/;    
931         $rules.= &do_lib_rule("\$(${uc}OBJ)","\$(ENG_D)$o$_$shlibp", "", $shlib, "");
932
933         }
934
935 if ($fips)
936         {
937         if ($shlib)
938                 {
939                 $rules.= &do_lib_rule("\$(CRYPTOOBJ) \$(O_FIPSCANISTER)",
940                                 "\$(O_CRYPTO)", "$crypto",
941                                 $shlib, "\$(SO_CRYPTO)", "\$(BASEADDR)");
942                 }
943         else
944                 {
945                 $rules.= &do_lib_rule("\$(CRYPTOOBJ)",
946                         "\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)", "");
947                 $rules.= &do_lib_rule("\$(CRYPTOOBJ) \$(O_FIPSCANISTER)",
948                         "\$(LIB_D)$o$crypto_compat",$crypto,$shlib,"\$(SO_CRYPTO)", "");
949                 }
950         }
951         else
952         {
953         $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,
954                                                         "\$(SO_CRYPTO)");
955         }
956
957 if ($fips)
958         {
959         if ($fipscanisterbuild)
960                 {
961                 $rules.= &do_rlink_rule("\$(O_FIPSCANISTER)",
962                                         "\$(OBJ_D)${o}fips_start$obj",
963                                         "\$(FIPSOBJ)",
964                                         "\$(OBJ_D)${o}fips_end$obj",
965                                         "\$(FIPS_SHA1_EXE)", "");
966                 # FIXME
967                 $rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
968                                         "\$(OBJ_D)${o}fips_standalone_sha1$obj \$(OBJ_D)${o}sha1dgst$obj $sha1_asm_obj",
969                                         "","\$(EX_LIBS)", 1);
970                 }
971         else
972                 {
973                 $rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
974                                         "\$(OBJ_D)${o}fips_standalone_sha1$obj \$(O_FIPSCANISTER)",
975                                         "","", 1);
976
977                 }
978         $rules.=&do_link_rule("\$(PREMAIN_DSO_EXE)","\$(OBJ_D)${o}\$(E_PREMAIN_DSO)$obj \$(CRYPTOOBJ) \$(O_FIPSCANISTER)","","\$(EX_LIBS)", 1);
979         
980         }
981
982 $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)", ($fips && !$shlib) ? 2 : 0);
983
984 print $defs;
985
986 if ($platform eq "linux-elf") {
987     print <<"EOF";
988 # Generate perlasm output files
989 %.cpp:
990         (cd \$(\@D)/..; PERL=perl make -f Makefile asm/\$(\@F))
991 EOF
992 }
993 print "###################################################################\n";
994 print $rules;
995
996 ###############################################
997 # strip off any trailing .[och] and append the relative directory
998 # also remembering to do nothing if we are in one of the dropped
999 # directories
1000 sub var_add
1001         {
1002         local($dir,$val,$keepext)=@_;
1003         local(@a,$_,$ret);
1004
1005         return("") if $no_engine && $dir =~ /\/engine/;
1006         return("") if $no_hw   && $dir =~ /\/hw/;
1007         return("") if $no_idea && $dir =~ /\/idea/;
1008         return("") if $no_aes  && $dir =~ /\/aes/;
1009         return("") if $no_camellia  && $dir =~ /\/camellia/;
1010         return("") if $no_seed && $dir =~ /\/seed/;
1011         return("") if $no_rc2  && $dir =~ /\/rc2/;
1012         return("") if $no_rc4  && $dir =~ /\/rc4/;
1013         return("") if $no_rc5  && $dir =~ /\/rc5/;
1014         return("") if $no_rsa  && $dir =~ /\/rsa/;
1015         return("") if $no_rsa  && $dir =~ /^rsaref/;
1016         return("") if $no_dsa  && $dir =~ /\/dsa/;
1017         return("") if $no_dh   && $dir =~ /\/dh/;
1018         return("") if $no_ec   && $dir =~ /\/ec/;
1019         return("") if $no_gost   && $dir =~ /\/ccgost/;
1020         return("") if $no_cms  && $dir =~ /\/cms/;
1021         return("") if $no_jpake  && $dir =~ /\/jpake/;
1022         return("") if !$fips   && $dir =~ /^fips/;
1023         if ($no_des && $dir =~ /\/des/)
1024                 {
1025                 if ($val =~ /read_pwd/)
1026                         { return("$dir/read_pwd "); }
1027                 else
1028                         { return(""); }
1029                 }
1030         return("") if $no_mdc2 && $dir =~ /\/mdc2/;
1031         return("") if $no_sock && $dir =~ /\/proxy/;
1032         return("") if $no_bf   && $dir =~ /\/bf/;
1033         return("") if $no_cast && $dir =~ /\/cast/;
1034         return("") if $no_whirlpool && $dir =~ /\/whrlpool/;
1035
1036         $val =~ s/^\s*(.*)\s*$/$1/;
1037         @a=split(/\s+/,$val);
1038         grep(s/\.[och]$//,@a) unless $keepext;
1039
1040         @a=grep(!/^e_.*_3d$/,@a) if $no_des;
1041         @a=grep(!/^e_.*_d$/,@a) if $no_des;
1042         @a=grep(!/^e_.*_ae$/,@a) if $no_idea;
1043         @a=grep(!/^e_.*_i$/,@a) if $no_aes;
1044         @a=grep(!/^e_.*_r2$/,@a) if $no_rc2;
1045         @a=grep(!/^e_.*_r5$/,@a) if $no_rc5;
1046         @a=grep(!/^e_.*_bf$/,@a) if $no_bf;
1047         @a=grep(!/^e_.*_c$/,@a) if $no_cast;
1048         @a=grep(!/^e_rc4$/,@a) if $no_rc4;
1049         @a=grep(!/^e_camellia$/,@a) if $no_camellia;
1050         @a=grep(!/^e_seed$/,@a) if $no_seed;
1051
1052         #@a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
1053         #@a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
1054
1055         @a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;
1056
1057         @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2;
1058         @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4;
1059         @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
1060         @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
1061
1062         @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
1063         @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
1064         @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
1065
1066         @a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
1067         @a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
1068
1069         @a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4;
1070
1071         @a=grep(!/_dhp$/,@a) if $no_dh;
1072
1073         @a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha;
1074         @a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1075         @a=grep(!/_mdc2$/,@a) if $no_mdc2;
1076
1077         @a=grep(!/(srp)/,@a) if $no_srp;
1078
1079         @a=grep(!/^engine$/,@a) if $no_engine;
1080         @a=grep(!/^hw$/,@a) if $no_hw;
1081         @a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa;
1082         @a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa;
1083         @a=grep(!/^gendsa$/,@a) if $no_sha1;
1084         @a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh;
1085
1086         @a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1087
1088         grep($_="$dir/$_",@a);
1089         @a=grep(!/(^|\/)s_/,@a) if $no_sock;
1090         @a=grep(!/(^|\/)bio_sock/,@a) if $no_sock;
1091         $ret=join(' ',@a)." ";
1092         return($ret);
1093         }
1094
1095 # change things so that each 'token' is only separated by one space
1096 sub clean_up_ws
1097         {
1098         local($w)=@_;
1099
1100         $w =~ s/^\s*(.*)\s*$/$1/;
1101         $w =~ s/\s+/ /g;
1102         return($w);
1103         }
1104
1105 sub do_defs
1106         {
1107         local($var,$files,$location,$postfix)=@_;
1108         local($_,$ret,$pf);
1109         local(*OUT,$tmp,$t);
1110
1111         $files =~ s/\//$o/g if $o ne '/';
1112         $ret="$var="; 
1113         $n=1;
1114         $Vars{$var}.="";
1115         foreach (split(/ /,$files))
1116                 {
1117                 $orig=$_;
1118                 $_=&bname($_) unless /^\$/;
1119                 if ($n++ == 2)
1120                         {
1121                         $n=0;
1122                         $ret.="\\\n\t";
1123                         }
1124                 if (($_ =~ /bss_file/) && ($postfix eq ".h"))
1125                         { $pf=".c"; }
1126                 else    { $pf=$postfix; }
1127                 if ($_ =~ /BN_ASM/)     { $t="$_ "; }
1128                 elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; }
1129                 elsif ($_ =~ /AES_ASM/){ $t="$_ "; }
1130                 elsif ($_ =~ /DES_ENC/) { $t="$_ "; }
1131                 elsif ($_ =~ /BF_ENC/)  { $t="$_ "; }
1132                 elsif ($_ =~ /CAST_ENC/){ $t="$_ "; }
1133                 elsif ($_ =~ /RC4_ENC/) { $t="$_ "; }
1134                 elsif ($_ =~ /RC5_ENC/) { $t="$_ "; }
1135                 elsif ($_ =~ /MD5_ASM/) { $t="$_ "; }
1136                 elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; }
1137                 elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; }
1138                 elsif ($_ =~ /WHIRLPOOL_ASM/){ $t="$_ "; }
1139                 elsif ($_ =~ /CPUID_ASM/){ $t="$_ "; }
1140                 else    { $t="$location${o}$_$pf "; }
1141
1142                 $Vars{$var}.="$t ";
1143                 $ret.=$t;
1144                 }
1145         # hack to add version info on MSVC
1146         if ($shlib && (($platform eq "VC-WIN32") || ($platfrom eq "VC-WIN64I") || ($platform eq "VC-WIN64A") || ($platform eq "VC-NT")))
1147                 {
1148                 if ($var eq "CRYPTOOBJ")
1149                         { $ret.="\$(OBJ_D)\\\$(CRYPTO).res "; }
1150                 elsif ($var eq "SSLOBJ")
1151                         { $ret.="\$(OBJ_D)\\\$(SSL).res "; }
1152                 }
1153         chomp($ret);
1154         $ret.="\n\n";
1155         return($ret);
1156         }
1157
1158 # return the name with the leading path removed
1159 sub bname
1160         {
1161         local($ret)=@_;
1162         $ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/;
1163         return($ret);
1164         }
1165
1166 # return the leading path
1167 sub dname
1168         {
1169         my $ret=shift;
1170         $ret =~ s/(^.*)[\\\/][^\\\/]+$/$1/;
1171         return($ret);
1172         }
1173
1174 ##############################################################
1175 # do a rule for each file that says 'compile' to new direcory
1176 # compile the files in '$files' into $to
1177 sub do_compile_rule
1178         {
1179         local($to,$files,$ex)=@_;
1180         local($ret,$_,$n,$d,$s);
1181
1182         $files =~ s/\//$o/g if $o ne '/';
1183         foreach (split(/\s+/,$files))
1184                 {
1185                 $n=&bname($_);
1186                 $d=&dname($_);
1187                 if (-f "${_}.c")
1188                         {
1189                         $ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex)
1190                         }
1191                 elsif (-f ($s="${d}${o}asm${o}${n}.pl") or
1192                        ($s=~s/sha256/sha512/ and -f $s) or
1193                        -f ($s="${d}${o}${n}.pl"))
1194                         {
1195                         $ret.=&perlasm_compile_target("$to${o}$n$obj",$s,$n);
1196                         }
1197                 elsif (-f ($s="${d}${o}asm${o}${n}.S") or
1198                        -f ($s="${d}${o}${n}.S"))
1199                         {
1200                         $ret.=&Sasm_compile_target("$to${o}$n$obj",$s,$n);
1201                         }
1202                 else    { die "no rule for $_"; }
1203                 }
1204         return($ret);
1205         }
1206
1207 ##############################################################
1208 # do a rule for each file that says 'compile' to new direcory
1209 sub perlasm_compile_target
1210         {
1211         my($target,$source,$bname)=@_;
1212         my($ret);
1213         $bname =~ s/(.*)\.[^\.]$/$1/;
1214         $ret ="\$(TMP_D)$o$bname.asm: $source\n";
1215         $ret.="\t\$(PERL) $source $asmtype \$(CFLAG) >\$\@\n";
1216         if ($fipscanisteronly)
1217                 {
1218                 $ret .= "\t\$(PERL) util\\fipsas.pl . \$@ norunasm \$(CFLAG)\n";
1219                 }
1220         $ret .= "\n";
1221         $ret.="$target: \$(TMP_D)$o$bname.asm\n";
1222         $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
1223         return($ret);
1224         }
1225
1226 sub Sasm_compile_target
1227         {
1228         my($target,$source,$bname)=@_;
1229         my($ret);
1230
1231         $bname =~ s/(.*)\.[^\.]$/$1/;
1232         $ret ="\$(TMP_D)$o$bname.asm: $source\n";
1233         $ret.="\t\$(CC) -E \$(CFLAG) $source >\$\@\n";
1234         $ret.="\t\$(PERL) util\\fipsas.pl . \$@ norunasm \$(CFLAG)\n" if $fipscanisteronly;
1235         $ret.="\n";
1236         $ret.="$target: \$(TMP_D)$o$bname.asm\n";
1237         $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
1238         return($ret);
1239         }
1240
1241 sub cc_compile_target
1242         {
1243         local($target,$source,$ex_flags)=@_;
1244         local($ret);
1245         
1246         $ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/);
1247         $target =~ s/\//$o/g if $o ne "/";
1248         $source =~ s/\//$o/g if $o ne "/";
1249         $ret ="$target: \$(SRC_D)$o$source\n\t";
1250         $ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
1251         return($ret);
1252         }
1253
1254 ##############################################################
1255 sub do_asm_rule
1256         {
1257         local($target,$src)=@_;
1258         local($ret,@s,@t,$i);
1259
1260         $target =~ s/\//$o/g if $o ne "/";
1261         $src =~ s/\//$o/g if $o ne "/";
1262
1263         @t=split(/\s+/,$target);
1264         @s=split(/\s+/,$src);
1265
1266
1267         for ($i=0; $i<=$#s; $i++)
1268                 {
1269                 my $objfile = $t[$i];
1270                 my $srcfile = $s[$i];
1271
1272                 if ($perl_asm == 1)
1273                         {
1274                         my $plasm = $objfile;
1275                         $plasm =~ s/${obj}/.pl/;
1276                         $ret.="$srcfile: $plasm\n";
1277                         $ret.="\t\$(PERL) $plasm $asmtype \$(CFLAG) >$srcfile\n\n";
1278                         }
1279
1280                 $ret.="$objfile: $srcfile\n";
1281                 $ret.="\t\$(ASM) $afile$objfile \$(SRC_D)$o$srcfile\n\n";
1282                 }
1283         return($ret);
1284         }
1285
1286 sub do_shlib_rule
1287         {
1288         local($n,$def)=@_;
1289         local($ret,$nn);
1290         local($t);
1291
1292         ($nn=$n) =~ tr/a-z/A-Z/;
1293         $ret.="$n.dll: \$(${nn}OBJ)\n";
1294         if ($vc && $w32)
1295                 {
1296                 $ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n  \$(${nn}OBJ_F)\n<<\n";
1297                 }
1298         $ret.="\n";
1299         return($ret);
1300         }
1301
1302 # do a rule for each file that says 'copy' to new direcory on change
1303 sub do_copy_rule
1304         {
1305         local($to,$files,$p)=@_;
1306         local($ret,$_,$n,$pp);
1307         
1308         $files =~ s/\//$o/g if $o ne '/';
1309         foreach (split(/\s+/,$files))
1310                 {
1311                 $n=&bname($_);
1312                 if ($n =~ /bss_file/)
1313                         { $pp=".c"; }
1314                 else    { $pp=$p; }
1315                 $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp $to\n\t\$(CP) \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
1316                 }
1317         return($ret);
1318         }
1319
1320 sub read_options
1321         {
1322         # Many options are handled in a similar way. In particular
1323         # no-xxx sets zero or more scalars to 1.
1324         # Process these using a hash containing the option name and
1325         # reference to the scalars to set.
1326
1327         my %valid_options = (
1328                 "no-rc2" => \$no_rc2,
1329                 "no-rc4" => \$no_rc4,
1330                 "no-rc5" => \$no_rc5,
1331                 "no-idea" => \$no_idea,
1332                 "no-aes" => \$no_aes,
1333                 "no-camellia" => \$no_camellia,
1334                 "no-seed" => \$no_seed,
1335                 "no-des" => \$no_des,
1336                 "no-bf" => \$no_bf,
1337                 "no-cast" => \$no_cast,
1338                 "no-md2" => \$no_md2,
1339                 "no-md4" => \$no_md4,
1340                 "no-md5" => \$no_md5,
1341                 "no-sha" => \$no_sha,
1342                 "no-sha1" => \$no_sha1,
1343                 "no-ripemd" => \$no_ripemd,
1344                 "no-mdc2" => \$no_mdc2,
1345                 "no-whirlpool" => \$no_whirlpool,
1346                 "no-patents" => 
1347                         [\$no_rc2, \$no_rc4, \$no_rc5, \$no_idea, \$no_rsa],
1348                 "no-rsa" => \$no_rsa,
1349                 "no-dsa" => \$no_dsa,
1350                 "no-dh" => \$no_dh,
1351                 "no-hmac" => \$no_hmac,
1352                 "no-asm" => \$no_asm,
1353                 "nasm" => \$nasm,
1354                 "nw-nasm" => \$nw_nasm,
1355                 "nw-mwasm" => \$nw_mwasm,
1356                 "gaswin" => \$gaswin,
1357                 "no-ssl2" => \$no_ssl2,
1358                 "no-ssl3" => \$no_ssl3,
1359                 "no-tlsext" => \$no_tlsext,
1360                 "no-srp" => \$no_srp,
1361                 "no-cms" => \$no_cms,
1362                 "no-jpake" => \$no_jpake,
1363                 "no-ec2m" => \$no_ec2m,
1364                 "no-ec_nistp_64_gcc_128" => 0,
1365                 "no-err" => \$no_err,
1366                 "no-sock" => \$no_sock,
1367                 "no-krb5" => \$no_krb5,
1368                 "no-ec" => \$no_ec,
1369                 "no-ecdsa" => \$no_ecdsa,
1370                 "no-ecdh" => \$no_ecdh,
1371                 "no-gost" => \$no_gost,
1372                 "no-engine" => \$no_engine,
1373                 "no-hw" => \$no_hw,
1374                 "just-ssl" =>
1375                         [\$no_rc2, \$no_idea, \$no_des, \$no_bf, \$no_cast,
1376                           \$no_md2, \$no_sha, \$no_mdc2, \$no_dsa, \$no_dh,
1377                           \$no_ssl2, \$no_err, \$no_ripemd, \$no_rc5,
1378                           \$no_aes, \$no_camellia, \$no_seed, \$no_srp],
1379                 "rsaref" => 0,
1380                 "gcc" => \$gcc,
1381                 "debug" => \$debug,
1382                 "profile" => \$profile,
1383                 "shlib" => \$shlib,
1384                 "dll" => \$shlib,
1385                 "shared" => 0,
1386                 "no-sctp" => 0,
1387                 "no-gmp" => 0,
1388                 "no-rfc3779" => 0,
1389                 "no-montasm" => 0,
1390                 "no-shared" => 0,
1391                 "no-store" => 0,
1392                 "no-zlib" => 0,
1393                 "no-zlib-dynamic" => 0,
1394                 "no-ssl-trace" => 0,
1395                 "fips" => \$fips,
1396                 "fipscanisterbuild" => [\$fips, \$fipscanisterbuild],
1397                 "fipscanisteronly" => [\$fips, \$fipscanisterbuild, \$fipscanisteronly],
1398                 "fipscheck" => [\$fips, \$fipscanisterbuild, \$fipscanisteronly],
1399                 );
1400
1401         if (exists $valid_options{$_})
1402                 {
1403                 my $r = $valid_options{$_};
1404                 if ( ref $r eq "SCALAR")
1405                         { $$r = 1;}
1406                 elsif ( ref $r eq "ARRAY")
1407                         {
1408                         my $r2;
1409                         foreach $r2 (@$r)
1410                                 {
1411                                 $$r2 = 1;
1412                                 }
1413                         }
1414                 }
1415         elsif (/^no-comp$/) { $xcflags = "-DOPENSSL_NO_COMP $xcflags"; }
1416         elsif (/^enable-zlib$/) { $zlib_opt = 1 if $zlib_opt == 0 }
1417         elsif (/^enable-zlib-dynamic$/)
1418                 {
1419                 $zlib_opt = 2;
1420                 }
1421         elsif (/^no-static-engine/)
1422                 {
1423                 $no_static_engine = 1;
1424                 }
1425         elsif (/^enable-static-engine/)
1426                 {
1427                 $no_static_engine = 0;
1428                 }
1429         # There are also enable-xxx options which correspond to
1430         # the no-xxx. Since the scalars are enabled by default
1431         # these can be ignored.
1432         elsif (/^enable-/)
1433                 {
1434                 my $t = $_;
1435                 $t =~ s/^enable/no/;
1436                 if (exists $valid_options{$t})
1437                         {return 1;}
1438                 return 0;
1439                 }
1440         # experimental-xxx is mostly like enable-xxx, but opensslconf.v
1441         # will still set OPENSSL_NO_xxx unless we set OPENSSL_EXPERIMENTAL_xxx.
1442         # (No need to fail if we don't know the algorithm -- this is for adventurous users only.)
1443         elsif (/^experimental-/)
1444                 {
1445                 my $algo, $ALGO;
1446                 ($algo = $_) =~ s/^experimental-//;
1447                 ($ALGO = $algo) =~ tr/[a-z]/[A-Z]/;
1448
1449                 $xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
1450                 
1451                 }
1452         elsif (/^--with-krb5-flavor=(.*)$/)
1453                 {
1454                 my $krb5_flavor = $1;
1455                 if ($krb5_flavor =~ /^force-[Hh]eimdal$/)
1456                         {
1457                         $xcflags="-DKRB5_HEIMDAL $xcflags";
1458                         }
1459                 elsif ($krb5_flavor =~ /^MIT/i)
1460                         {
1461                         $xcflags="-DKRB5_MIT $xcflags";
1462                         if ($krb5_flavor =~ /^MIT[._-]*1[._-]*[01]/i)
1463                                 {
1464                                 $xcflags="-DKRB5_MIT_OLD11 $xcflags"
1465                                 }
1466                         }
1467                 }
1468         elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
1469         elsif (/^-[lL].*$/)     { $l_flags.="$_ "; }
1470         elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
1471                 { $c_flags.="$_ "; }
1472         else { return(0); }
1473         return(1);
1474         }
1475
1476 sub fipslib_error
1477         {
1478         print STDERR "***FIPS module directory sanity check failed***\n";
1479         print STDERR "FIPS module build failed, or was deleted\n";
1480         print STDERR "Please rebuild FIPS module.\n"; 
1481         exit 1;
1482         }
1483
1484 sub fips_check_files
1485         {
1486         my $dir = shift @_;
1487         my $ret = 1;
1488         if (!-d $dir)
1489                 {
1490                 print STDERR "FIPS module directory $dir does not exist\n";
1491                 fipslib_error();
1492                 }
1493         foreach (@_)
1494                 {
1495                 if (!-f "$dir${o}$_")
1496                         {
1497                         print STDERR "FIPS module file $_ does not exist!\n";
1498                         $ret = 0;
1499                         }
1500                 }
1501         fipslib_error() if ($ret == 0);
1502         }