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