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