26a5d036ede3a8c41a58003caea915c76c439eb9
[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 $OPTIONS="";
10 $ssl_version="";
11 $banner="\t\@echo Building OpenSSL";
12
13 open(IN,"<Makefile") || die "unable to open Makefile!\n";
14 while(<IN>) {
15     $ssl_version=$1 if (/^VERSION=(.*)$/);
16     $OPTIONS=$1 if (/^OPTIONS=(.*)$/);
17     $INSTALLTOP=$1 if (/^INSTALLTOP=(.*$)/);
18 }
19 close(IN);
20
21 die "Makefile.ssl is not the toplevel Makefile!\n" if $ssl_version eq "";
22
23 $infile="MINFO";
24
25 %ops=(
26         "VC-WIN32",   "Microsoft Visual C++ [4-6] - Windows NT or 9X",
27         "VC-CE",   "Microsoft eMbedded Visual C++ 3.0 - Windows CE ONLY",
28         "VC-NT",   "Microsoft Visual C++ [4-6] - Windows NT ONLY",
29         "VC-W31-16",  "Microsoft Visual C++ 1.52 - Windows 3.1 - 286",
30         "VC-WIN16",   "Alias for VC-W31-32",
31         "VC-W31-32",  "Microsoft Visual C++ 1.52 - Windows 3.1 - 386+",
32         "VC-MSDOS","Microsoft Visual C++ 1.52 - MSDOS",
33         "Mingw32", "GNU C++ - Windows NT or 9x",
34         "Mingw32-files", "Create files with DOS copy ...",
35         "BC-NT",   "Borland C++ 4.5 - Windows NT",
36         "BC-W31",  "Borland C++ 4.5 - Windows 3.1 - PROBABLY NOT WORKING",
37         "BC-MSDOS","Borland C++ 4.5 - MSDOS",
38         "linux-elf","Linux elf",
39         "ultrix-mips","DEC mips ultrix",
40         "FreeBSD","FreeBSD distribution",
41         "OS2-EMX", "EMX GCC OS/2",
42         "netware-clib", "CodeWarrior for NetWare - CLib",
43         "netware-libc", "CodeWarrior for NetWare - LibC",
44         "default","cc under unix",
45         );
46
47 $platform="";
48 my $xcflags="";
49 foreach (@ARGV)
50         {
51         if (!&read_options && !defined($ops{$_}))
52                 {
53                 print STDERR "unknown option - $_\n";
54                 print STDERR "usage: perl mk1mf.pl [options] [system]\n";
55                 print STDERR "\nwhere [system] can be one of the following\n";
56                 foreach $i (sort keys %ops)
57                 { printf STDERR "\t%-10s\t%s\n",$i,$ops{$i}; }
58                 print STDERR <<"EOF";
59 and [options] can be one of
60         no-md2 no-md4 no-md5 no-sha no-mdc2     - Skip this digest
61         no-ripemd
62         no-rc2 no-rc4 no-rc5 no-idea no-des     - Skip this symetric cipher
63         no-bf no-cast no-aes
64         no-rsa no-dsa no-dh                     - Skip this public key cipher
65         no-ssl2 no-ssl3                         - Skip this version of SSL
66         just-ssl                                - remove all non-ssl keys/digest
67         no-asm                                  - No x86 asm
68         no-krb5                                 - No KRB5
69         no-ec                                   - No EC
70         no-ecdsa                                - No ECDSA
71         no-ecdh                                 - No ECDH
72         no-engine                               - No engine
73         no-hw                                   - No hw
74         nasm                                    - Use NASM for x86 asm
75         nw-nasm                                 - Use NASM x86 asm for NetWare
76         nw-mwasm                                        - Use Metrowerks x86 asm for NetWare
77         gaswin                                  - Use GNU as with Mingw32
78         no-socks                                - No socket code
79         no-err                                  - No error strings
80         dll/shlib                               - Build shared libraries (MS)
81         debug                                   - Debug build
82         profile                                 - Profiling build
83         gcc                                     - Use Gcc (unix)
84
85 Values that can be set
86 TMP=tmpdir OUT=outdir SRC=srcdir BIN=binpath INC=header-outdir CC=C-compiler
87
88 -L<ex_lib_path> -l<ex_lib>                      - extra library flags (unix)
89 -<ex_cc_flags>                                  - extra 'cc' flags,
90                                                   added (MS), or replace (unix)
91 EOF
92                 exit(1);
93                 }
94         $platform=$_;
95         }
96 foreach (grep(!/^$/, split(/ /, $OPTIONS)))
97         {
98         print STDERR "unknown option - $_\n" if !&read_options;
99         }
100
101 $no_mdc2=1 if ($no_des);
102
103 $no_ssl3=1 if ($no_md5 || $no_sha);
104 $no_ssl3=1 if ($no_rsa && $no_dh);
105
106 $no_ssl2=1 if ($no_md5);
107 $no_ssl2=1 if ($no_rsa);
108
109 $out_def="out";
110 $inc_def="outinc";
111 $tmp_def="tmp";
112
113 $mkdir="-mkdir";
114
115 ($ssl,$crypto)=("ssl","crypto");
116 $ranlib="echo ranlib";
117
118 $cc=(defined($VARS{'CC'}))?$VARS{'CC'}:'cc';
119 $src_dir=(defined($VARS{'SRC'}))?$VARS{'SRC'}:'.';
120 $bin_dir=(defined($VARS{'BIN'}))?$VARS{'BIN'}:'';
121
122 # $bin_dir.=$o causes a core dump on my sparc :-(
123
124
125 $NT=0;
126
127 push(@INC,"util/pl","pl");
128 if ($platform eq "VC-MSDOS")
129         {
130         $asmbits=16;
131         $msdos=1;
132         require 'VC-16.pl';
133         }
134 elsif ($platform eq "VC-W31-16")
135         {
136         $asmbits=16;
137         $msdos=1; $win16=1;
138         require 'VC-16.pl';
139         }
140 elsif (($platform eq "VC-W31-32") || ($platform eq "VC-WIN16"))
141         {
142         $asmbits=32;
143         $msdos=1; $win16=1;
144         require 'VC-16.pl';
145         }
146 elsif (($platform eq "VC-WIN32") || ($platform eq "VC-NT"))
147         {
148         $NT = 1 if $platform eq "VC-NT";
149         require 'VC-32.pl';
150         }
151 elsif ($platform eq "VC-CE")
152         {
153         require 'VC-CE.pl';
154         }
155 elsif ($platform eq "Mingw32")
156         {
157         require 'Mingw32.pl';
158         }
159 elsif ($platform eq "Mingw32-files")
160         {
161         require 'Mingw32f.pl';
162         }
163 elsif ($platform eq "BC-NT")
164         {
165         $bc=1;
166         require 'BC-32.pl';
167         }
168 elsif ($platform eq "BC-W31")
169         {
170         $bc=1;
171         $msdos=1; $w16=1;
172         require 'BC-16.pl';
173         }
174 elsif ($platform eq "BC-Q16")
175         {
176         $msdos=1; $w16=1; $shlib=0; $qw=1;
177         require 'BC-16.pl';
178         }
179 elsif ($platform eq "BC-MSDOS")
180         {
181         $asmbits=16;
182         $msdos=1;
183         require 'BC-16.pl';
184         }
185 elsif ($platform eq "FreeBSD")
186         {
187         require 'unix.pl';
188         $cflags='-DTERMIO -D_ANSI_SOURCE -O2 -fomit-frame-pointer';
189         }
190 elsif ($platform eq "linux-elf")
191         {
192         require "unix.pl";
193         require "linux.pl";
194         $unix=1;
195         }
196 elsif ($platform eq "ultrix-mips")
197         {
198         require "unix.pl";
199         require "ultrix.pl";
200         $unix=1;
201         }
202 elsif ($platform eq "OS2-EMX")
203         {
204         $wc=1;
205         require 'OS2-EMX.pl';
206         }
207 elsif (($platform eq "netware-clib") || ($platform eq "netware-libc"))
208         {
209    $LIBC=1 if $platform eq "netware-libc";
210         require 'netware.pl';
211         }
212 else
213         {
214         require "unix.pl";
215
216         $unix=1;
217         $cflags.=' -DTERMIO';
218         }
219
220 $out_dir=(defined($VARS{'OUT'}))?$VARS{'OUT'}:$out_def.($debug?".dbg":"");
221 $tmp_dir=(defined($VARS{'TMP'}))?$VARS{'TMP'}:$tmp_def.($debug?".dbg":"");
222 $inc_dir=(defined($VARS{'INC'}))?$VARS{'INC'}:$inc_def;
223
224 $bin_dir=$bin_dir.$o unless ((substr($bin_dir,-1,1) eq $o) || ($bin_dir eq ''));
225
226 $cflags= "$xcflags$cflags" if $xcflags ne "";
227
228 $cflags.=" -DOPENSSL_NO_IDEA" if $no_idea;
229 $cflags.=" -DOPENSSL_NO_AES"  if $no_aes;
230 $cflags.=" -DOPENSSL_NO_RC2"  if $no_rc2;
231 $cflags.=" -DOPENSSL_NO_RC4"  if $no_rc4;
232 $cflags.=" -DOPENSSL_NO_RC5"  if $no_rc5;
233 $cflags.=" -DOPENSSL_NO_MD2"  if $no_md2;
234 $cflags.=" -DOPENSSL_NO_MD4"  if $no_md4;
235 $cflags.=" -DOPENSSL_NO_MD5"  if $no_md5;
236 $cflags.=" -DOPENSSL_NO_SHA"  if $no_sha;
237 $cflags.=" -DOPENSSL_NO_SHA1" if $no_sha1;
238 $cflags.=" -DOPENSSL_NO_RIPEMD" if $no_ripemd;
239 $cflags.=" -DOPENSSL_NO_MDC2" if $no_mdc2;
240 $cflags.=" -DOPENSSL_NO_BF"  if $no_bf;
241 $cflags.=" -DOPENSSL_NO_CAST" if $no_cast;
242 $cflags.=" -DOPENSSL_NO_DES"  if $no_des;
243 $cflags.=" -DOPENSSL_NO_RSA"  if $no_rsa;
244 $cflags.=" -DOPENSSL_NO_DSA"  if $no_dsa;
245 $cflags.=" -DOPENSSL_NO_DH"   if $no_dh;
246 $cflags.=" -DOPENSSL_NO_SOCK" if $no_sock;
247 $cflags.=" -DOPENSSL_NO_SSL2" if $no_ssl2;
248 $cflags.=" -DOPENSSL_NO_SSL3" if $no_ssl3;
249 $cflags.=" -DOPENSSL_NO_ERR"  if $no_err;
250 $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5;
251 $cflags.=" -DOPENSSL_NO_EC"   if $no_ec;
252 $cflags.=" -DOPENSSL_NO_ECDSA" if $no_ecdsa;
253 $cflags.=" -DOPENSSL_NO_ECDH" if $no_ecdh;
254 $cflags.=" -DOPENSSL_NO_ENGINE"   if $no_engine;
255 $cflags.=" -DOPENSSL_NO_HW"   if $no_hw;
256 #$cflags.=" -DRSAref"  if $rsaref ne "";
257
258 ## if ($unix)
259 ##      { $cflags="$c_flags" if ($c_flags ne ""); }
260 ##else
261         { $cflags="$c_flags$cflags" if ($c_flags ne ""); }
262
263 $ex_libs="$l_flags$ex_libs" if ($l_flags ne "");
264
265 %shlib_ex_cflags=("SSL" => " -DOPENSSL_BUILD_SHLIBSSL",
266                   "CRYPTO" => " -DOPENSSL_BUILD_SHLIBCRYPTO");
267
268 if ($msdos)
269         {
270         $banner ="\t\@echo Make sure you have run 'perl Configure $platform' in the\n";
271         $banner.="\t\@echo top level directory, if you don't have perl, you will\n";
272         $banner.="\t\@echo need to probably edit crypto/bn/bn.h, check the\n";
273         $banner.="\t\@echo documentation for details.\n";
274         }
275
276 # have to do this to allow $(CC) under unix
277 $link="$bin_dir$link" if ($link !~ /^\$/);
278
279 $INSTALLTOP =~ s|/|$o|g;
280
281 #############################################
282 # We parse in input file and 'store' info for later printing.
283 open(IN,"<$infile") || die "unable to open $infile:$!\n";
284 $_=<IN>;
285 for (;;)
286         {
287         chop;
288
289         ($key,$val)=/^([^=]+)=(.*)/;
290         if ($key eq "RELATIVE_DIRECTORY")
291                 {
292                 if ($lib ne "")
293                         {
294                         $uc=$lib;
295                         $uc =~ s/^lib(.*)\.a/$1/;
296                         $uc =~ tr/a-z/A-Z/;
297                         $lib_nam{$uc}=$uc;
298                         $lib_obj{$uc}.=$libobj." ";
299                         }
300                 last if ($val eq "FINISHED");
301                 $lib="";
302                 $libobj="";
303                 $dir=$val;
304                 }
305
306         if ($key eq "KRB5_INCLUDES")
307                 { $cflags .= " $val";}
308
309         if ($key eq "LIBKRB5")
310                 { $ex_libs .= " $val";}
311
312         if ($key eq "TEST")
313                 { $test.=&var_add($dir,$val); }
314
315         if (($key eq "PROGS") || ($key eq "E_OBJ"))
316                 { $e_exe.=&var_add($dir,$val); }
317
318         if ($key eq "LIB")
319                 {
320                 $lib=$val;
321                 $lib =~ s/^.*\/([^\/]+)$/$1/;
322                 }
323
324         if ($key eq "EXHEADER")
325                 { $exheader.=&var_add($dir,$val); }
326
327         if ($key eq "HEADER")
328                 { $header.=&var_add($dir,$val); }
329
330         if ($key eq "LIBOBJ")
331                 { $libobj=&var_add($dir,$val); }
332
333         if (!($_=<IN>))
334                 { $_="RELATIVE_DIRECTORY=FINISHED\n"; }
335         }
336 close(IN);
337
338 $defs= <<"EOF";
339 # This makefile has been automatically generated from the OpenSSL distribution.
340 # This single makefile will build the complete OpenSSL distribution and
341 # by default leave the 'intertesting' output files in .${o}out and the stuff
342 # that needs deleting in .${o}tmp.
343 # The file was generated by running 'make makefile.one', which
344 # does a 'make files', which writes all the environment variables from all
345 # the makefiles to the file call MINFO.  This file is used by
346 # util${o}mk1mf.pl to generate makefile.one.
347 # The 'makefile per directory' system suites me when developing this
348 # library and also so I can 'distribute' indervidual library sections.
349 # The one monster makefile better suits building in non-unix
350 # environments.
351
352 EOF
353
354 $defs .= $preamble if defined $preamble;
355
356 if ($platform eq "VC-CE")
357         {
358         $defs.= <<"EOF";
359 !INCLUDE <\$(WCECOMPAT)/wcedefs.mak>
360
361 EOF
362         }
363
364 $defs.= <<"EOF";
365 INSTALLTOP=$INSTALLTOP
366
367 # Set your compiler options
368 PLATFORM=$platform
369 CC=$bin_dir${cc}
370 CFLAG=$cflags
371 APP_CFLAG=$app_cflag
372 LIB_CFLAG=$lib_cflag
373 SHLIB_CFLAG=$shl_cflag
374 APP_EX_OBJ=$app_ex_obj
375 SHLIB_EX_OBJ=$shlib_ex_obj
376 # add extra libraries to this define, for solaris -lsocket -lnsl would
377 # be added
378 EX_LIBS=$ex_libs
379
380 # The OpenSSL directory
381 SRC_D=$src_dir
382
383 LINK=$link
384 LFLAGS=$lflags
385 RSC=$rsc
386
387 BN_ASM_OBJ=$bn_asm_obj
388 BN_ASM_SRC=$bn_asm_src
389 BNCO_ASM_OBJ=$bnco_asm_obj
390 BNCO_ASM_SRC=$bnco_asm_src
391 DES_ENC_OBJ=$des_enc_obj
392 DES_ENC_SRC=$des_enc_src
393 BF_ENC_OBJ=$bf_enc_obj
394 BF_ENC_SRC=$bf_enc_src
395 CAST_ENC_OBJ=$cast_enc_obj
396 CAST_ENC_SRC=$cast_enc_src
397 RC4_ENC_OBJ=$rc4_enc_obj
398 RC4_ENC_SRC=$rc4_enc_src
399 RC5_ENC_OBJ=$rc5_enc_obj
400 RC5_ENC_SRC=$rc5_enc_src
401 MD5_ASM_OBJ=$md5_asm_obj
402 MD5_ASM_SRC=$md5_asm_src
403 SHA1_ASM_OBJ=$sha1_asm_obj
404 SHA1_ASM_SRC=$sha1_asm_src
405 RMD160_ASM_OBJ=$rmd160_asm_obj
406 RMD160_ASM_SRC=$rmd160_asm_src
407
408 # The output directory for everything intersting
409 OUT_D=$out_dir
410 # The output directory for all the temporary muck
411 TMP_D=$tmp_dir
412 # The output directory for the header files
413 INC_D=$inc_dir
414 INCO_D=$inc_dir${o}openssl
415
416 CP=$cp
417 RM=$rm
418 RANLIB=$ranlib
419 MKDIR=$mkdir
420 MKLIB=$bin_dir$mklib
421 MLFLAGS=$mlflags
422 ASM=$bin_dir$asm
423
424 ######################################################
425 # You should not need to touch anything below this point
426 ######################################################
427
428 E_EXE=openssl
429 SSL=$ssl
430 CRYPTO=$crypto
431
432 # BIN_D  - Binary output directory
433 # TEST_D - Binary test file output directory
434 # LIB_D  - library output directory
435 # Note: if you change these point to different directories then uncomment out
436 # the lines around the 'NB' comment below.
437
438 BIN_D=\$(OUT_D)
439 TEST_D=\$(OUT_D)
440 LIB_D=\$(OUT_D)
441
442 # INCL_D - local library directory
443 # OBJ_D  - temp object file directory
444 OBJ_D=\$(TMP_D)
445 INCL_D=\$(TMP_D)
446
447 O_SSL=     \$(LIB_D)$o$plib\$(SSL)$shlibp
448 O_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$shlibp
449 SO_SSL=    $plib\$(SSL)$so_shlibp
450 SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp
451 L_SSL=     \$(LIB_D)$o$plib\$(SSL)$libp
452 L_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$libp
453
454 L_LIBS= \$(L_SSL) \$(L_CRYPTO)
455
456 ######################################################
457 # Don't touch anything below this point
458 ######################################################
459
460 INC=-I\$(INC_D) -I\$(INCL_D)
461 APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG)
462 LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG)
463 SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG)
464 LIBS_DEP=\$(O_CRYPTO) \$(O_SSL)
465
466 #############################################
467 EOF
468
469 $rules=<<"EOF";
470 all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers lib exe
471
472 banner:
473 $banner
474
475 \$(TMP_D):
476         \$(MKDIR) \$(TMP_D)
477 # NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different
478 #\$(BIN_D):
479 #       \$(MKDIR) \$(BIN_D)
480 #
481 #\$(TEST_D):
482 #       \$(MKDIR) \$(TEST_D)
483
484 \$(LIB_D):
485         \$(MKDIR) \$(LIB_D)
486
487 \$(INCO_D): \$(INC_D)
488         \$(MKDIR) \$(INCO_D)
489
490 \$(INC_D):
491         \$(MKDIR) \$(INC_D)
492
493 headers: \$(HEADER) \$(EXHEADER)
494         @
495
496 lib: \$(LIBS_DEP)
497
498 exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep
499
500 install:
501         \$(MKDIR) \$(INSTALLTOP)
502         \$(MKDIR) \$(INSTALLTOP)${o}bin
503         \$(MKDIR) \$(INSTALLTOP)${o}include
504         \$(MKDIR) \$(INSTALLTOP)${o}include${o}openssl
505         \$(MKDIR) \$(INSTALLTOP)${o}lib
506         \$(CP) \$(INCO_D)${o}*.\[ch\] \$(INSTALLTOP)${o}include${o}openssl
507         \$(CP) \$(BIN_D)$o\$(E_EXE)$exep \$(INSTALLTOP)${o}bin
508         \$(CP) \$(O_SSL) \$(INSTALLTOP)${o}lib
509         \$(CP) \$(O_CRYPTO) \$(INSTALLTOP)${o}lib
510
511 clean:
512         \$(RM) \$(TMP_D)$o*.*
513
514 vclean:
515         \$(RM) \$(TMP_D)$o*.*
516         \$(RM) \$(OUT_D)$o*.*
517
518 EOF
519     
520 my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform";
521 $platform_cpp_symbol =~ s/-/_/g;
522 if (open(IN,"crypto/buildinf.h"))
523         {
524         # Remove entry for this platform in existing file buildinf.h.
525
526         my $old_buildinf_h = "";
527         while (<IN>)
528                 {
529                 if (/^\#ifdef $platform_cpp_symbol$/)
530                         {
531                         while (<IN>) { last if (/^\#endif/); }
532                         }
533                 else
534                         {
535                         $old_buildinf_h .= $_;
536                         }
537                 }
538         close(IN);
539
540         open(OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
541         print OUT $old_buildinf_h;
542         close(OUT);
543         }
544
545 open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h";
546 printf OUT <<EOF;
547 #ifdef $platform_cpp_symbol
548   /* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */
549   #define CFLAGS "$cc $cflags"
550   #define PLATFORM "$platform"
551 EOF
552 printf OUT "  #define DATE \"%s\"\n", scalar gmtime();
553 printf OUT "#endif\n";
554 close(OUT);
555
556 # Strip of trailing ' '
557 foreach (keys %lib_obj) { $lib_obj{$_}=&clean_up_ws($lib_obj{$_}); }
558 $test=&clean_up_ws($test);
559 $e_exe=&clean_up_ws($e_exe);
560 $exheader=&clean_up_ws($exheader);
561 $header=&clean_up_ws($header);
562
563 # First we strip the exheaders from the headers list
564 foreach (split(/\s+/,$exheader)){ $h{$_}=1; }
565 foreach (split(/\s+/,$header))  { $h.=$_." " unless $h{$_}; }
566 chop($h); $header=$h;
567
568 $defs.=&do_defs("HEADER",$header,"\$(INCL_D)",".h");
569 $rules.=&do_copy_rule("\$(INCL_D)",$header,".h");
570
571 $defs.=&do_defs("EXHEADER",$exheader,"\$(INCO_D)",".h");
572 $rules.=&do_copy_rule("\$(INCO_D)",$exheader,".h");
573
574 $defs.=&do_defs("T_OBJ",$test,"\$(OBJ_D)",$obj);
575 $rules.=&do_compile_rule("\$(OBJ_D)",$test,"\$(APP_CFLAGS)");
576
577 $defs.=&do_defs("E_OBJ",$e_exe,"\$(OBJ_D)",$obj);
578 $rules.=&do_compile_rule("\$(OBJ_D)",$e_exe,'-DMONOLITH $(APP_CFLAGS)');
579
580 foreach (values %lib_nam)
581         {
582         $lib_obj=$lib_obj{$_};
583         local($slib)=$shlib;
584
585         if (($_ eq "SSL") && $no_ssl2 && $no_ssl3)
586                 {
587                 $rules.="\$(O_SSL):\n\n"; 
588                 next;
589                 }
590
591         if (($bn_asm_obj ne "") && ($_ eq "CRYPTO"))
592                 {
593                 $lib_obj =~ s/\s\S*\/bn_asm\S*/ \$(BN_ASM_OBJ)/;
594                 $rules.=&do_asm_rule($bn_asm_obj,$bn_asm_src);
595                 }
596         if (($bnco_asm_obj ne "") && ($_ eq "CRYPTO"))
597                 {
598                 $lib_obj .= "\$(BNCO_ASM_OBJ)";
599                 $rules.=&do_asm_rule($bnco_asm_obj,$bnco_asm_src);
600                 }
601         if (($des_enc_obj ne "") && ($_ eq "CRYPTO"))
602                 {
603                 $lib_obj =~ s/\s\S*des_enc\S*/ \$(DES_ENC_OBJ)/;
604                 $lib_obj =~ s/\s\S*\/fcrypt_b\S*\s*/ /;
605                 $rules.=&do_asm_rule($des_enc_obj,$des_enc_src);
606                 }
607         if (($bf_enc_obj ne "") && ($_ eq "CRYPTO"))
608                 {
609                 $lib_obj =~ s/\s\S*\/bf_enc\S*/ \$(BF_ENC_OBJ)/;
610                 $rules.=&do_asm_rule($bf_enc_obj,$bf_enc_src);
611                 }
612         if (($cast_enc_obj ne "") && ($_ eq "CRYPTO"))
613                 {
614                 $lib_obj =~ s/(\s\S*\/c_enc\S*)/ \$(CAST_ENC_OBJ)/;
615                 $rules.=&do_asm_rule($cast_enc_obj,$cast_enc_src);
616                 }
617         if (($rc4_enc_obj ne "") && ($_ eq "CRYPTO"))
618                 {
619                 $lib_obj =~ s/\s\S*\/rc4_enc\S*/ \$(RC4_ENC_OBJ)/;
620                 $rules.=&do_asm_rule($rc4_enc_obj,$rc4_enc_src);
621                 }
622         if (($rc5_enc_obj ne "") && ($_ eq "CRYPTO"))
623                 {
624                 $lib_obj =~ s/\s\S*\/rc5_enc\S*/ \$(RC5_ENC_OBJ)/;
625                 $rules.=&do_asm_rule($rc5_enc_obj,$rc5_enc_src);
626                 }
627         if (($md5_asm_obj ne "") && ($_ eq "CRYPTO"))
628                 {
629                 $lib_obj =~ s/\s(\S*\/md5_dgst\S*)/ $1 \$(MD5_ASM_OBJ)/;
630                 $rules.=&do_asm_rule($md5_asm_obj,$md5_asm_src);
631                 }
632         if (($sha1_asm_obj ne "") && ($_ eq "CRYPTO"))
633                 {
634                 $lib_obj =~ s/\s(\S*\/sha1dgst\S*)/ $1 \$(SHA1_ASM_OBJ)/;
635                 $rules.=&do_asm_rule($sha1_asm_obj,$sha1_asm_src);
636                 }
637         if (($rmd160_asm_obj ne "") && ($_ eq "CRYPTO"))
638                 {
639                 $lib_obj =~ s/\s(\S*\/rmd_dgst\S*)/ $1 \$(RMD160_ASM_OBJ)/;
640                 $rules.=&do_asm_rule($rmd160_asm_obj,$rmd160_asm_src);
641                 }
642         $defs.=&do_defs(${_}."OBJ",$lib_obj,"\$(OBJ_D)",$obj);
643         $lib=($slib)?" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)";
644         $rules.=&do_compile_rule("\$(OBJ_D)",$lib_obj{$_},$lib);
645         }
646
647 # hack to add version info on MSVC
648 if (($platform eq "VC-WIN32") || ($platform eq "VC-NT")) {
649     $rules.= <<"EOF";
650 \$(OBJ_D)\\\$(CRYPTO).res: ms\\version32.rc
651         \$(RSC) /fo"\$(OBJ_D)\\\$(CRYPTO).res" /d CRYPTO ms\\version32.rc
652
653 \$(OBJ_D)\\\$(SSL).res: ms\\version32.rc
654         \$(RSC) /fo"\$(OBJ_D)\\\$(SSL).res" /d SSL ms\\version32.rc
655
656 EOF
657 }
658
659 $defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
660 foreach (split(/\s+/,$test))
661         {
662         $t=&bname($_);
663         $tt="\$(OBJ_D)${o}$t${obj}";
664         $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
665         }
666
667 $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)");
668 $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)");
669
670 $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
671
672 print $defs;
673
674 if ($platform eq "linux-elf") {
675     print <<"EOF";
676 # Generate perlasm output files
677 %.cpp:
678         (cd \$(\@D)/..; PERL=perl make -f Makefile.ssl asm/\$(\@F))
679 EOF
680 }
681 print "###################################################################\n";
682 print $rules;
683
684 ###############################################
685 # strip off any trailing .[och] and append the relative directory
686 # also remembering to do nothing if we are in one of the dropped
687 # directories
688 sub var_add
689         {
690         local($dir,$val)=@_;
691         local(@a,$_,$ret);
692
693         return("") if $no_engine && $dir =~ /\/engine/;
694         return("") if $no_hw   && $dir =~ /\/hw/;
695         return("") if $no_idea && $dir =~ /\/idea/;
696         return("") if $no_aes  && $dir =~ /\/aes/;
697         return("") if $no_rc2  && $dir =~ /\/rc2/;
698         return("") if $no_rc4  && $dir =~ /\/rc4/;
699         return("") if $no_rc5  && $dir =~ /\/rc5/;
700         return("") if $no_rsa  && $dir =~ /\/rsa/;
701         return("") if $no_rsa  && $dir =~ /^rsaref/;
702         return("") if $no_dsa  && $dir =~ /\/dsa/;
703         return("") if $no_dh   && $dir =~ /\/dh/;
704         return("") if $no_ec   && $dir =~ /\/ec/;
705         if ($no_des && $dir =~ /\/des/)
706                 {
707                 if ($val =~ /read_pwd/)
708                         { return("$dir/read_pwd "); }
709                 else
710                         { return(""); }
711                 }
712         return("") if $no_mdc2 && $dir =~ /\/mdc2/;
713         return("") if $no_sock && $dir =~ /\/proxy/;
714         return("") if $no_bf   && $dir =~ /\/bf/;
715         return("") if $no_cast && $dir =~ /\/cast/;
716
717         $val =~ s/^\s*(.*)\s*$/$1/;
718         @a=split(/\s+/,$val);
719         grep(s/\.[och]$//,@a);
720
721         @a=grep(!/^e_.*_3d$/,@a) if $no_des;
722         @a=grep(!/^e_.*_d$/,@a) if $no_des;
723         @a=grep(!/^e_.*_ae$/,@a) if $no_idea;
724         @a=grep(!/^e_.*_i$/,@a) if $no_aes;
725         @a=grep(!/^e_.*_r2$/,@a) if $no_rc2;
726         @a=grep(!/^e_.*_r5$/,@a) if $no_rc5;
727         @a=grep(!/^e_.*_bf$/,@a) if $no_bf;
728         @a=grep(!/^e_.*_c$/,@a) if $no_cast;
729         @a=grep(!/^e_rc4$/,@a) if $no_rc4;
730
731         @a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
732         @a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
733
734         @a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;
735
736         @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2;
737         @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4;
738         @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
739         @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
740
741         @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
742         @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
743         @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
744
745         @a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
746         @a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
747
748         @a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4;
749
750         @a=grep(!/_dhp$/,@a) if $no_dh;
751
752         @a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha;
753         @a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
754         @a=grep(!/_mdc2$/,@a) if $no_mdc2;
755
756         @a=grep(!/^engine$/,@a) if $no_engine;
757         @a=grep(!/^hw$/,@a) if $no_hw;
758         @a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa;
759         @a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa;
760         @a=grep(!/^gendsa$/,@a) if $no_sha1;
761         @a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh;
762
763         @a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
764
765         grep($_="$dir/$_",@a);
766         @a=grep(!/(^|\/)s_/,@a) if $no_sock;
767         @a=grep(!/(^|\/)bio_sock/,@a) if $no_sock;
768         $ret=join(' ',@a)." ";
769         return($ret);
770         }
771
772 # change things so that each 'token' is only separated by one space
773 sub clean_up_ws
774         {
775         local($w)=@_;
776
777         $w =~ s/^\s*(.*)\s*$/$1/;
778         $w =~ s/\s+/ /g;
779         return($w);
780         }
781
782 sub do_defs
783         {
784         local($var,$files,$location,$postfix)=@_;
785         local($_,$ret,$pf);
786         local(*OUT,$tmp,$t);
787
788         $files =~ s/\//$o/g if $o ne '/';
789         $ret="$var="; 
790         $n=1;
791         $Vars{$var}.="";
792         foreach (split(/ /,$files))
793                 {
794                 $orig=$_;
795                 $_=&bname($_) unless /^\$/;
796                 if ($n++ == 2)
797                         {
798                         $n=0;
799                         $ret.="\\\n\t";
800                         }
801                 if (($_ =~ /bss_file/) && ($postfix eq ".h"))
802                         { $pf=".c"; }
803                 else    { $pf=$postfix; }
804                 if ($_ =~ /BN_ASM/)     { $t="$_ "; }
805                 elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; }
806                 elsif ($_ =~ /DES_ENC/) { $t="$_ "; }
807                 elsif ($_ =~ /BF_ENC/)  { $t="$_ "; }
808                 elsif ($_ =~ /CAST_ENC/){ $t="$_ "; }
809                 elsif ($_ =~ /RC4_ENC/) { $t="$_ "; }
810                 elsif ($_ =~ /RC5_ENC/) { $t="$_ "; }
811                 elsif ($_ =~ /MD5_ASM/) { $t="$_ "; }
812                 elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; }
813                 elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; }
814                 else    { $t="$location${o}$_$pf "; }
815
816                 $Vars{$var}.="$t ";
817                 $ret.=$t;
818                 }
819         # hack to add version info on MSVC
820         if ($shlib && ($platform eq "VC-WIN32") || ($platform eq "VC-NT"))
821                 {
822                 if ($var eq "CRYPTOOBJ")
823                         { $ret.="\$(OBJ_D)\\\$(CRYPTO).res "; }
824                 elsif ($var eq "SSLOBJ")
825                         { $ret.="\$(OBJ_D)\\\$(SSL).res "; }
826                 }
827         chop($ret);
828         $ret.="\n\n";
829         return($ret);
830         }
831
832 # return the name with the leading path removed
833 sub bname
834         {
835         local($ret)=@_;
836         $ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/;
837         return($ret);
838         }
839
840
841 ##############################################################
842 # do a rule for each file that says 'compile' to new direcory
843 # compile the files in '$files' into $to
844 sub do_compile_rule
845         {
846         local($to,$files,$ex)=@_;
847         local($ret,$_,$n);
848         
849         $files =~ s/\//$o/g if $o ne '/';
850         foreach (split(/\s+/,$files))
851                 {
852                 $n=&bname($_);
853                 $ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex)
854                 }
855         return($ret);
856         }
857
858 ##############################################################
859 # do a rule for each file that says 'compile' to new direcory
860 sub cc_compile_target
861         {
862         local($target,$source,$ex_flags)=@_;
863         local($ret);
864         
865         $ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/);
866         $target =~ s/\//$o/g if $o ne "/";
867         $source =~ s/\//$o/g if $o ne "/";
868         $ret ="$target: \$(SRC_D)$o$source\n\t";
869         $ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
870         return($ret);
871         }
872
873 ##############################################################
874 sub do_asm_rule
875         {
876         local($target,$src)=@_;
877         local($ret,@s,@t,$i);
878
879         $target =~ s/\//$o/g if $o ne "/";
880         $src =~ s/\//$o/g if $o ne "/";
881
882         @s=split(/\s+/,$src);
883         @t=split(/\s+/,$target);
884
885         for ($i=0; $i<=$#s; $i++)
886                 {
887                 $ret.="$t[$i]: $s[$i]\n";
888                 $ret.="\t\$(ASM) $afile$t[$i] \$(SRC_D)$o$s[$i]\n\n";
889                 }
890         return($ret);
891         }
892
893 sub do_shlib_rule
894         {
895         local($n,$def)=@_;
896         local($ret,$nn);
897         local($t);
898
899         ($nn=$n) =~ tr/a-z/A-Z/;
900         $ret.="$n.dll: \$(${nn}OBJ)\n";
901         if ($vc && $w32)
902                 {
903                 $ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n  \$(${nn}OBJ_F)\n<<\n";
904                 }
905         $ret.="\n";
906         return($ret);
907         }
908
909 # do a rule for each file that says 'copy' to new direcory on change
910 sub do_copy_rule
911         {
912         local($to,$files,$p)=@_;
913         local($ret,$_,$n,$pp);
914         
915         $files =~ s/\//$o/g if $o ne '/';
916         foreach (split(/\s+/,$files))
917                 {
918                 $n=&bname($_);
919                 if ($n =~ /bss_file/)
920                         { $pp=".c"; }
921                 else    { $pp=$p; }
922                 $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \$(SRC_D)$o$_$pp $to${o}$n$pp\n\n";
923                 }
924         return($ret);
925         }
926
927 sub read_options
928         {
929         # Many options are handled in a similar way. In particular
930         # no-xxx sets zero or more scalars to 1.
931         # Process these using a hash containing the option name and
932         # reference to the scalars to set.
933
934         my %valid_options = (
935                 "no-rc2" => \$no_rc2,
936                 "no-rc4" => \$no_rc4,
937                 "no-rc5" => \$no_rc5,
938                 "no-idea" => \$no_idea,
939                 "no-aes" => \$no_aes,
940                 "no-des" => \$no_des,
941                 "no-bf" => \$no_bf,
942                 "no-cast" => \$no_cast,
943                 "no-md2" => \$no_md2,
944                 "no-md4" => \$no_md4,
945                 "no-md5" => \$no_md5,
946                 "no-sha" => \$no_sha,
947                 "no-sha1" => \$no_sha1,
948                 "no-ripemd" => \$no_ripemd,
949                 "no-mdc2" => \$no_mdc2,
950                 "no-patents" => 
951                         [\$no_rc2, \$no_rc4, \$no_rc5, \$no_idea, \$no_rsa],
952                 "no-rsa" => \$no_rsa,
953                 "no-dsa" => \$no_dsa,
954                 "no-dh" => \$no_dh,
955                 "no-hmac" => \$no_hmac,
956                 "no-aes" => \$no_aes,
957                 "no-asm" => \$no_asm,
958                 "nasm" => \$nasm,
959                 "nw-nasm" => \$nw_nasm,
960                 "nw-mwasm" => \$nw_mwasm,
961                 "gaswin" => \$gaswin,
962                 "no-ssl2" => \$no_ssl2,
963                 "no-ssl3" => \$no_ssl3,
964                 "no-err" => \$no_err,
965                 "no-sock" => \$no_sock,
966                 "no-krb5" => \$no_krb5,
967                 "no-ec" => \$no_ec,
968                 "no-ecdsa" => \$no_ecdsa,
969                 "no-ecdh" => \$no_ecdh,
970                 "no-engine" => \$no_engine,
971                 "no-hw" => \$no_hw,
972                 "just-ssl" =>
973                         [\$no_rc2, \$no_idea, \$no_des, \$no_bf, \$no_cast,
974                           \$no_md2, \$no_sha, \$no_mdc2, \$no_dsa, \$no_dh,
975                           \$no_ssl2, \$no_err, \$no_ripemd, \$no_rc5,
976                           \$no_aes],
977                 "rsaref" => 0,
978                 "gcc" => \$gcc,
979                 "debug" => \$debug,
980                 "profile" => \$profile,
981                 "shlib" => \$shlib,
982                 "dll" => \$shlib,
983                 "shared" => 0,
984                 "no-gmp" => 0,
985                 "no-shared" => 0,
986                 "no-zlib" => 0,
987                 "no-zlib-dynamic" => 0,
988                 );
989
990         if (exists $valid_options{$_})
991                 {
992                 my $r = $valid_options{$_};
993                 if ( ref $r eq "SCALAR")
994                         { $$r = 1;}
995                 elsif ( ref $r eq "ARRAY")
996                         {
997                         my $r2;
998                         foreach $r2 (@$r)
999                                 {
1000                                 $$r2 = 1;
1001                                 }
1002                         }
1003                 }
1004         elsif (/^enable-zlib$/) { $xcflags = "-DZLIB $xcflags"; }
1005         elsif (/^enable-zlib-dynamic$/)
1006                 {
1007                 $xcflags = "-DZLIB_SHARED -DZLIB $xcflags";
1008                 }
1009         # There are also enable-xxx options which correspond to
1010         # the no-xxx. Since the scalars are enabled by default
1011         # these can be ignored.
1012         elsif (/^enable-/)
1013                 {
1014                 my $t = $_;
1015                 $t =~ s/^enable/no/;
1016                 if (exists $valid_options{$t})
1017                         {return 1;}
1018                 return 0;
1019                 }
1020         elsif (/^--with-krb5-flavor=(.*)$/)
1021                 {
1022                 my $krb5_flavor = $1;
1023                 if ($krb5_flavor =~ /^force-[Hh]eimdal$/)
1024                         {
1025                         $xcflags="-DKRB5_HEIMDAL $xcflags";
1026                         }
1027                 elsif ($krb5_flavor =~ /^MIT/i)
1028                         {
1029                         $xcflags="-DKRB5_MIT $xcflags";
1030                         if ($krb5_flavor =~ /^MIT[._-]*1[._-]*[01]/i)
1031                                 {
1032                                 $xcflags="-DKRB5_MIT_OLD11 $xcflags"
1033                                 }
1034                         }
1035                 }
1036         elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
1037         elsif (/^-[lL].*$/)     { $l_flags.="$_ "; }
1038         elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
1039                 { $c_flags.="$_ "; }
1040         else { return(0); }
1041         return(1);
1042         }