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