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