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