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