Netware-specific changes,
[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 if ($platform eq "VC-CE")
294         {
295         $defs.= <<"EOF";
296 !INCLUDE <\$(WCECOMPAT)/wcedefs.mak>
297
298 EOF
299         }
300
301 $defs.= <<"EOF";
302 INSTALLTOP=$INSTALLTOP
303
304 # Set your compiler options
305 PLATFORM=$platform
306 CC=$bin_dir${cc}
307 CFLAG=$cflags
308 APP_CFLAG=$app_cflag
309 LIB_CFLAG=$lib_cflag
310 SHLIB_CFLAG=$shl_cflag
311 APP_EX_OBJ=$app_ex_obj
312 SHLIB_EX_OBJ=$shlib_ex_obj
313 # add extra libraries to this define, for solaris -lsocket -lnsl would
314 # be added
315 EX_LIBS=$ex_libs
316
317 # The OpenSSL directory
318 SRC_D=$src_dir
319
320 LINK=$link
321 LFLAGS=$lflags
322 RSC=$rsc
323
324 BN_ASM_OBJ=$bn_asm_obj
325 BN_ASM_SRC=$bn_asm_src
326 BNCO_ASM_OBJ=$bnco_asm_obj
327 BNCO_ASM_SRC=$bnco_asm_src
328 DES_ENC_OBJ=$des_enc_obj
329 DES_ENC_SRC=$des_enc_src
330 BF_ENC_OBJ=$bf_enc_obj
331 BF_ENC_SRC=$bf_enc_src
332 CAST_ENC_OBJ=$cast_enc_obj
333 CAST_ENC_SRC=$cast_enc_src
334 RC4_ENC_OBJ=$rc4_enc_obj
335 RC4_ENC_SRC=$rc4_enc_src
336 RC5_ENC_OBJ=$rc5_enc_obj
337 RC5_ENC_SRC=$rc5_enc_src
338 MD5_ASM_OBJ=$md5_asm_obj
339 MD5_ASM_SRC=$md5_asm_src
340 SHA1_ASM_OBJ=$sha1_asm_obj
341 SHA1_ASM_SRC=$sha1_asm_src
342 RMD160_ASM_OBJ=$rmd160_asm_obj
343 RMD160_ASM_SRC=$rmd160_asm_src
344
345 # The output directory for everything intersting
346 OUT_D=$out_dir
347 # The output directory for all the temporary muck
348 TMP_D=$tmp_dir
349 # The output directory for the header files
350 INC_D=$inc_dir
351 INCO_D=$inc_dir${o}openssl
352
353 CP=$cp
354 RM=$rm
355 RANLIB=$ranlib
356 MKDIR=$mkdir
357 MKLIB=$bin_dir$mklib
358 MLFLAGS=$mlflags
359 ASM=$bin_dir$asm
360
361 ######################################################
362 # You should not need to touch anything below this point
363 ######################################################
364
365 E_EXE=openssl
366 SSL=$ssl
367 CRYPTO=$crypto
368
369 # BIN_D  - Binary output directory
370 # TEST_D - Binary test file output directory
371 # LIB_D  - library output directory
372 # Note: if you change these point to different directories then uncomment out
373 # the lines around the 'NB' comment below.
374
375 BIN_D=\$(OUT_D)
376 TEST_D=\$(OUT_D)
377 LIB_D=\$(OUT_D)
378
379 # INCL_D - local library directory
380 # OBJ_D  - temp object file directory
381 OBJ_D=\$(TMP_D)
382 INCL_D=\$(TMP_D)
383
384 O_SSL=     \$(LIB_D)$o$plib\$(SSL)$shlibp
385 O_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$shlibp
386 SO_SSL=    $plib\$(SSL)$so_shlibp
387 SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp
388 L_SSL=     \$(LIB_D)$o$plib\$(SSL)$libp
389 L_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$libp
390
391 L_LIBS= \$(L_SSL) \$(L_CRYPTO)
392
393 ######################################################
394 # Don't touch anything below this point
395 ######################################################
396
397 INC=-I\$(INC_D) -I\$(INCL_D)
398 APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG)
399 LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG)
400 SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG)
401 LIBS_DEP=\$(O_CRYPTO) \$(O_SSL)
402
403 #############################################
404 EOF
405
406 $rules=<<"EOF";
407 all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers lib exe
408
409 banner:
410 $banner
411
412 \$(TMP_D):
413         \$(MKDIR) \$(TMP_D)
414 # NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different
415 #\$(BIN_D):
416 #       \$(MKDIR) \$(BIN_D)
417 #
418 #\$(TEST_D):
419 #       \$(MKDIR) \$(TEST_D)
420
421 \$(LIB_D):
422         \$(MKDIR) \$(LIB_D)
423
424 \$(INCO_D): \$(INC_D)
425         \$(MKDIR) \$(INCO_D)
426
427 \$(INC_D):
428         \$(MKDIR) \$(INC_D)
429
430 headers: \$(HEADER) \$(EXHEADER)
431         @
432
433 lib: \$(LIBS_DEP)
434
435 exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep
436
437 install:
438         \$(MKDIR) \$(INSTALLTOP)
439         \$(MKDIR) \$(INSTALLTOP)${o}bin
440         \$(MKDIR) \$(INSTALLTOP)${o}include
441         \$(MKDIR) \$(INSTALLTOP)${o}include${o}openssl
442         \$(MKDIR) \$(INSTALLTOP)${o}lib
443         \$(CP) \$(INCO_D)${o}*.\[ch\] \$(INSTALLTOP)${o}include${o}openssl
444         \$(CP) \$(BIN_D)$o\$(E_EXE)$exep \$(INSTALLTOP)${o}bin
445         \$(CP) \$(O_SSL) \$(INSTALLTOP)${o}lib
446         \$(CP) \$(O_CRYPTO) \$(INSTALLTOP)${o}lib
447
448 clean:
449         \$(RM) \$(TMP_D)$o*.*
450
451 vclean:
452         \$(RM) \$(TMP_D)$o*.*
453         \$(RM) \$(OUT_D)$o*.*
454
455 EOF
456     
457 my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform";
458 $platform_cpp_symbol =~ s/-/_/g;
459 if (open(IN,"crypto/buildinf.h"))
460         {
461         # Remove entry for this platform in existing file buildinf.h.
462
463         my $old_buildinf_h = "";
464         while (<IN>)
465                 {
466                 if (/^\#ifdef $platform_cpp_symbol$/)
467                         {
468                         while (<IN>) { last if (/^\#endif/); }
469                         }
470                 else
471                         {
472                         $old_buildinf_h .= $_;
473                         }
474                 }
475         close(IN);
476
477         open(OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
478         print OUT $old_buildinf_h;
479         close(OUT);
480         }
481
482 open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h";
483 printf OUT <<EOF;
484 #ifdef $platform_cpp_symbol
485   /* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */
486   #define CFLAGS "$cc $cflags"
487   #define PLATFORM "$platform"
488 EOF
489 printf OUT "  #define DATE \"%s\"\n", scalar gmtime();
490 printf OUT "#endif\n";
491 close(OUT);
492
493 #############################################
494 # We parse in input file and 'store' info for later printing.
495 open(IN,"<$infile") || die "unable to open $infile:$!\n";
496 $_=<IN>;
497 for (;;)
498         {
499         chop;
500
501         ($key,$val)=/^([^=]+)=(.*)/;
502         if ($key eq "RELATIVE_DIRECTORY")
503                 {
504                 if ($lib ne "")
505                         {
506                         $uc=$lib;
507                         $uc =~ s/^lib(.*)\.a/$1/;
508                         $uc =~ tr/a-z/A-Z/;
509                         $lib_nam{$uc}=$uc;
510                         $lib_obj{$uc}.=$libobj." ";
511                         }
512                 last if ($val eq "FINISHED");
513                 $lib="";
514                 $libobj="";
515                 $dir=$val;
516                 }
517
518         if ($key eq "TEST")
519                 { $test.=&var_add($dir,$val); }
520
521         if (($key eq "PROGS") || ($key eq "E_OBJ"))
522                 { $e_exe.=&var_add($dir,$val); }
523
524         if ($key eq "LIB")
525                 {
526                 $lib=$val;
527                 $lib =~ s/^.*\/([^\/]+)$/$1/;
528                 }
529
530         if ($key eq "EXHEADER")
531                 { $exheader.=&var_add($dir,$val); }
532
533         if ($key eq "HEADER")
534                 { $header.=&var_add($dir,$val); }
535
536         if ($key eq "LIBOBJ")
537                 { $libobj=&var_add($dir,$val); }
538
539         if (!($_=<IN>))
540                 { $_="RELATIVE_DIRECTORY=FINISHED\n"; }
541         }
542 close(IN);
543
544 # Strip of trailing ' '
545 foreach (keys %lib_obj) { $lib_obj{$_}=&clean_up_ws($lib_obj{$_}); }
546 $test=&clean_up_ws($test);
547 $e_exe=&clean_up_ws($e_exe);
548 $exheader=&clean_up_ws($exheader);
549 $header=&clean_up_ws($header);
550
551 # First we strip the exheaders from the headers list
552 foreach (split(/\s+/,$exheader)){ $h{$_}=1; }
553 foreach (split(/\s+/,$header))  { $h.=$_." " unless $h{$_}; }
554 chop($h); $header=$h;
555
556 $defs.=&do_defs("HEADER",$header,"\$(INCL_D)",".h");
557 $rules.=&do_copy_rule("\$(INCL_D)",$header,".h");
558
559 $defs.=&do_defs("EXHEADER",$exheader,"\$(INCO_D)",".h");
560 $rules.=&do_copy_rule("\$(INCO_D)",$exheader,".h");
561
562 $defs.=&do_defs("T_OBJ",$test,"\$(OBJ_D)",$obj);
563 $rules.=&do_compile_rule("\$(OBJ_D)",$test,"\$(APP_CFLAGS)");
564
565 $defs.=&do_defs("E_OBJ",$e_exe,"\$(OBJ_D)",$obj);
566 $rules.=&do_compile_rule("\$(OBJ_D)",$e_exe,'-DMONOLITH $(APP_CFLAGS)');
567
568 foreach (values %lib_nam)
569         {
570         $lib_obj=$lib_obj{$_};
571         local($slib)=$shlib;
572
573         if (($_ eq "SSL") && $no_ssl2 && $no_ssl3)
574                 {
575                 $rules.="\$(O_SSL):\n\n"; 
576                 next;
577                 }
578
579         if (($bn_asm_obj ne "") && ($_ eq "CRYPTO"))
580                 {
581                 $lib_obj =~ s/\s\S*\/bn_asm\S*/ \$(BN_ASM_OBJ)/;
582                 $rules.=&do_asm_rule($bn_asm_obj,$bn_asm_src);
583                 }
584         if (($bnco_asm_obj ne "") && ($_ eq "CRYPTO"))
585                 {
586                 $lib_obj .= "\$(BNCO_ASM_OBJ)";
587                 $rules.=&do_asm_rule($bnco_asm_obj,$bnco_asm_src);
588                 }
589         if (($des_enc_obj ne "") && ($_ eq "CRYPTO"))
590                 {
591                 $lib_obj =~ s/\s\S*des_enc\S*/ \$(DES_ENC_OBJ)/;
592                 $lib_obj =~ s/\s\S*\/fcrypt_b\S*\s*/ /;
593                 $rules.=&do_asm_rule($des_enc_obj,$des_enc_src);
594                 }
595         if (($bf_enc_obj ne "") && ($_ eq "CRYPTO"))
596                 {
597                 $lib_obj =~ s/\s\S*\/bf_enc\S*/ \$(BF_ENC_OBJ)/;
598                 $rules.=&do_asm_rule($bf_enc_obj,$bf_enc_src);
599                 }
600         if (($cast_enc_obj ne "") && ($_ eq "CRYPTO"))
601                 {
602                 $lib_obj =~ s/(\s\S*\/c_enc\S*)/ \$(CAST_ENC_OBJ)/;
603                 $rules.=&do_asm_rule($cast_enc_obj,$cast_enc_src);
604                 }
605         if (($rc4_enc_obj ne "") && ($_ eq "CRYPTO"))
606                 {
607                 $lib_obj =~ s/\s\S*\/rc4_enc\S*/ \$(RC4_ENC_OBJ)/;
608                 $rules.=&do_asm_rule($rc4_enc_obj,$rc4_enc_src);
609                 }
610         if (($rc5_enc_obj ne "") && ($_ eq "CRYPTO"))
611                 {
612                 $lib_obj =~ s/\s\S*\/rc5_enc\S*/ \$(RC5_ENC_OBJ)/;
613                 $rules.=&do_asm_rule($rc5_enc_obj,$rc5_enc_src);
614                 }
615         if (($md5_asm_obj ne "") && ($_ eq "CRYPTO"))
616                 {
617                 $lib_obj =~ s/\s(\S*\/md5_dgst\S*)/ $1 \$(MD5_ASM_OBJ)/;
618                 $rules.=&do_asm_rule($md5_asm_obj,$md5_asm_src);
619                 }
620         if (($sha1_asm_obj ne "") && ($_ eq "CRYPTO"))
621                 {
622                 $lib_obj =~ s/\s(\S*\/sha1dgst\S*)/ $1 \$(SHA1_ASM_OBJ)/;
623                 $rules.=&do_asm_rule($sha1_asm_obj,$sha1_asm_src);
624                 }
625         if (($rmd160_asm_obj ne "") && ($_ eq "CRYPTO"))
626                 {
627                 $lib_obj =~ s/\s(\S*\/rmd_dgst\S*)/ $1 \$(RMD160_ASM_OBJ)/;
628                 $rules.=&do_asm_rule($rmd160_asm_obj,$rmd160_asm_src);
629                 }
630         $defs.=&do_defs(${_}."OBJ",$lib_obj,"\$(OBJ_D)",$obj);
631         $lib=($slib)?" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)";
632         $rules.=&do_compile_rule("\$(OBJ_D)",$lib_obj{$_},$lib);
633         }
634
635 # hack to add version info on MSVC
636 if (($platform eq "VC-WIN32") || ($platform eq "VC-NT")) {
637     $rules.= <<"EOF";
638 \$(OBJ_D)\\\$(CRYPTO).res: ms\\version32.rc
639         \$(RSC) /fo"\$(OBJ_D)\\\$(CRYPTO).res" /d CRYPTO ms\\version32.rc
640
641 \$(OBJ_D)\\\$(SSL).res: ms\\version32.rc
642         \$(RSC) /fo"\$(OBJ_D)\\\$(SSL).res" /d SSL ms\\version32.rc
643
644 EOF
645 }
646
647 $defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
648 foreach (split(/\s+/,$test))
649         {
650         $t=&bname($_);
651         $tt="\$(OBJ_D)${o}$t${obj}";
652         $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
653         }
654
655 $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)");
656 $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)");
657
658 $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
659
660 print $defs;
661
662 if ($platform eq "linux-elf") {
663     print <<"EOF";
664 # Generate perlasm output files
665 %.cpp:
666         (cd \$(\@D)/..; PERL=perl make -f Makefile.ssl asm/\$(\@F))
667 EOF
668 }
669 print "###################################################################\n";
670 print $rules;
671
672 ###############################################
673 # strip off any trailing .[och] and append the relative directory
674 # also remembering to do nothing if we are in one of the dropped
675 # directories
676 sub var_add
677         {
678         local($dir,$val)=@_;
679         local(@a,$_,$ret);
680
681         return("") if $no_engine && $dir =~ /\/engine/;
682         return("") if $no_hw   && $dir =~ /\/hw/;
683         return("") if $no_idea && $dir =~ /\/idea/;
684         return("") if $no_aes  && $dir =~ /\/aes/;
685         return("") if $no_rc2  && $dir =~ /\/rc2/;
686         return("") if $no_rc4  && $dir =~ /\/rc4/;
687         return("") if $no_rc5  && $dir =~ /\/rc5/;
688         return("") if $no_rsa  && $dir =~ /\/rsa/;
689         return("") if $no_rsa  && $dir =~ /^rsaref/;
690         return("") if $no_dsa  && $dir =~ /\/dsa/;
691         return("") if $no_dh   && $dir =~ /\/dh/;
692         return("") if $no_ec   && $dir =~ /\/ec/;
693         if ($no_des && $dir =~ /\/des/)
694                 {
695                 if ($val =~ /read_pwd/)
696                         { return("$dir/read_pwd "); }
697                 else
698                         { return(""); }
699                 }
700         return("") if $no_mdc2 && $dir =~ /\/mdc2/;
701         return("") if $no_sock && $dir =~ /\/proxy/;
702         return("") if $no_bf   && $dir =~ /\/bf/;
703         return("") if $no_cast && $dir =~ /\/cast/;
704
705         $val =~ s/^\s*(.*)\s*$/$1/;
706         @a=split(/\s+/,$val);
707         grep(s/\.[och]$//,@a);
708
709         @a=grep(!/^e_.*_3d$/,@a) if $no_des;
710         @a=grep(!/^e_.*_d$/,@a) if $no_des;
711         @a=grep(!/^e_.*_ae$/,@a) if $no_idea;
712         @a=grep(!/^e_.*_i$/,@a) if $no_aes;
713         @a=grep(!/^e_.*_r2$/,@a) if $no_rc2;
714         @a=grep(!/^e_.*_r5$/,@a) if $no_rc5;
715         @a=grep(!/^e_.*_bf$/,@a) if $no_bf;
716         @a=grep(!/^e_.*_c$/,@a) if $no_cast;
717         @a=grep(!/^e_rc4$/,@a) if $no_rc4;
718
719         @a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
720         @a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
721
722         @a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;
723
724         @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2;
725         @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4;
726         @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
727         @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
728
729         @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
730         @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
731         @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
732
733         @a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
734         @a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
735
736         @a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4;
737
738         @a=grep(!/_dhp$/,@a) if $no_dh;
739
740         @a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha;
741         @a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
742         @a=grep(!/_mdc2$/,@a) if $no_mdc2;
743
744         @a=grep(!/^engine$/,@a) if $no_engine;
745         @a=grep(!/^hw$/,@a) if $no_hw;
746         @a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa;
747         @a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa;
748         @a=grep(!/^gendsa$/,@a) if $no_sha1;
749         @a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh;
750
751         @a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
752
753         grep($_="$dir/$_",@a);
754         @a=grep(!/(^|\/)s_/,@a) if $no_sock;
755         @a=grep(!/(^|\/)bio_sock/,@a) if $no_sock;
756         $ret=join(' ',@a)." ";
757         return($ret);
758         }
759
760 # change things so that each 'token' is only separated by one space
761 sub clean_up_ws
762         {
763         local($w)=@_;
764
765         $w =~ s/^\s*(.*)\s*$/$1/;
766         $w =~ s/\s+/ /g;
767         return($w);
768         }
769
770 sub do_defs
771         {
772         local($var,$files,$location,$postfix)=@_;
773         local($_,$ret,$pf);
774         local(*OUT,$tmp,$t);
775
776         $files =~ s/\//$o/g if $o ne '/';
777         $ret="$var="; 
778         $n=1;
779         $Vars{$var}.="";
780         foreach (split(/ /,$files))
781                 {
782                 $orig=$_;
783                 $_=&bname($_) unless /^\$/;
784                 if ($n++ == 2)
785                         {
786                         $n=0;
787                         $ret.="\\\n\t";
788                         }
789                 if (($_ =~ /bss_file/) && ($postfix eq ".h"))
790                         { $pf=".c"; }
791                 else    { $pf=$postfix; }
792                 if ($_ =~ /BN_ASM/)     { $t="$_ "; }
793                 elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; }
794                 elsif ($_ =~ /DES_ENC/) { $t="$_ "; }
795                 elsif ($_ =~ /BF_ENC/)  { $t="$_ "; }
796                 elsif ($_ =~ /CAST_ENC/){ $t="$_ "; }
797                 elsif ($_ =~ /RC4_ENC/) { $t="$_ "; }
798                 elsif ($_ =~ /RC5_ENC/) { $t="$_ "; }
799                 elsif ($_ =~ /MD5_ASM/) { $t="$_ "; }
800                 elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; }
801                 elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; }
802                 else    { $t="$location${o}$_$pf "; }
803
804                 $Vars{$var}.="$t ";
805                 $ret.=$t;
806                 }
807         # hack to add version info on MSVC
808         if ($shlib && ($platform eq "VC-WIN32") || ($platform eq "VC-NT"))
809                 {
810                 if ($var eq "CRYPTOOBJ")
811                         { $ret.="\$(OBJ_D)\\\$(CRYPTO).res "; }
812                 elsif ($var eq "SSLOBJ")
813                         { $ret.="\$(OBJ_D)\\\$(SSL).res "; }
814                 }
815         chop($ret);
816         $ret.="\n\n";
817         return($ret);
818         }
819
820 # return the name with the leading path removed
821 sub bname
822         {
823         local($ret)=@_;
824         $ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/;
825         return($ret);
826         }
827
828
829 ##############################################################
830 # do a rule for each file that says 'compile' to new direcory
831 # compile the files in '$files' into $to
832 sub do_compile_rule
833         {
834         local($to,$files,$ex)=@_;
835         local($ret,$_,$n);
836         
837         $files =~ s/\//$o/g if $o ne '/';
838         foreach (split(/\s+/,$files))
839                 {
840                 $n=&bname($_);
841                 $ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex)
842                 }
843         return($ret);
844         }
845
846 ##############################################################
847 # do a rule for each file that says 'compile' to new direcory
848 sub cc_compile_target
849         {
850         local($target,$source,$ex_flags)=@_;
851         local($ret);
852         
853         $ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/);
854         $target =~ s/\//$o/g if $o ne "/";
855         $source =~ s/\//$o/g if $o ne "/";
856         $ret ="$target: \$(SRC_D)$o$source\n\t";
857         $ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
858         return($ret);
859         }
860
861 ##############################################################
862 sub do_asm_rule
863         {
864         local($target,$src)=@_;
865         local($ret,@s,@t,$i);
866
867         $target =~ s/\//$o/g if $o ne "/";
868         $src =~ s/\//$o/g if $o ne "/";
869
870         @s=split(/\s+/,$src);
871         @t=split(/\s+/,$target);
872
873         for ($i=0; $i<=$#s; $i++)
874                 {
875                 $ret.="$t[$i]: $s[$i]\n";
876                 $ret.="\t\$(ASM) $afile$t[$i] \$(SRC_D)$o$s[$i]\n\n";
877                 }
878         return($ret);
879         }
880
881 sub do_shlib_rule
882         {
883         local($n,$def)=@_;
884         local($ret,$nn);
885         local($t);
886
887         ($nn=$n) =~ tr/a-z/A-Z/;
888         $ret.="$n.dll: \$(${nn}OBJ)\n";
889         if ($vc && $w32)
890                 {
891                 $ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n  \$(${nn}OBJ_F)\n<<\n";
892                 }
893         $ret.="\n";
894         return($ret);
895         }
896
897 # do a rule for each file that says 'copy' to new direcory on change
898 sub do_copy_rule
899         {
900         local($to,$files,$p)=@_;
901         local($ret,$_,$n,$pp);
902         
903         $files =~ s/\//$o/g if $o ne '/';
904         foreach (split(/\s+/,$files))
905                 {
906                 $n=&bname($_);
907                 if ($n =~ /bss_file/)
908                         { $pp=".c"; }
909                 else    { $pp=$p; }
910                 $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \$(SRC_D)$o$_$pp $to${o}$n$pp\n\n";
911                 }
912         return($ret);
913         }
914
915 sub read_options
916         {
917         if    (/^no-rc2$/)      { $no_rc2=1; }
918         elsif (/^no-rc4$/)      { $no_rc4=1; }
919         elsif (/^no-rc5$/)      { $no_rc5=1; }
920         elsif (/^no-idea$/)     { $no_idea=1; }
921         elsif (/^no-aes$/)      { $no_aes=1; }
922         elsif (/^no-des$/)      { $no_des=1; }
923         elsif (/^no-bf$/)       { $no_bf=1; }
924         elsif (/^no-cast$/)     { $no_cast=1; }
925         elsif (/^no-md2$/)      { $no_md2=1; }
926         elsif (/^no-md4$/)      { $no_md4=1; }
927         elsif (/^no-md5$/)      { $no_md5=1; }
928         elsif (/^no-sha$/)      { $no_sha=1; }
929         elsif (/^no-sha1$/)     { $no_sha1=1; }
930         elsif (/^no-ripemd$/)   { $no_ripemd=1; }
931         elsif (/^no-mdc2$/)     { $no_mdc2=1; }
932         elsif (/^no-patents$/)  { $no_rc2=$no_rc4=$no_rc5=$no_idea=$no_rsa=1; }
933         elsif (/^no-rsa$/)      { $no_rsa=1; }
934         elsif (/^no-dsa$/)      { $no_dsa=1; }
935         elsif (/^no-dh$/)       { $no_dh=1; }
936         elsif (/^no-hmac$/)     { $no_hmac=1; }
937         elsif (/^no-aes$/)      { $no_aes=1; }
938         elsif (/^no-asm$/)      { $no_asm=1; }
939         elsif (/^nasm$/)        { $nasm=1; }
940         elsif (/^nw-nasm$/)     { $nw_nasm=1; }
941         elsif (/^nw-mwasm$/)    { $nw_mwasm=1; }
942         elsif (/^gaswin$/)      { $gaswin=1; }
943         elsif (/^no-ssl2$/)     { $no_ssl2=1; }
944         elsif (/^no-ssl3$/)     { $no_ssl3=1; }
945         elsif (/^no-err$/)      { $no_err=1; }
946         elsif (/^no-sock$/)     { $no_sock=1; }
947         elsif (/^no-krb5$/)     { $no_krb5=1; }
948         elsif (/^no-ec$/)       { $no_ec=1; }
949         elsif (/^no-ecdsa$/)    { $no_ecdsa=1; }
950         elsif (/^no-ecdh$/)     { $no_ecdh=1; }
951         elsif (/^no-engine$/)   { $no_engine=1; }
952         elsif (/^no-hw$/)       { $no_hw=1; }
953
954         elsif (/^just-ssl$/)    { $no_rc2=$no_idea=$no_des=$no_bf=$no_cast=1;
955                                   $no_md2=$no_sha=$no_mdc2=$no_dsa=$no_dh=1;
956                                   $no_ssl2=$no_err=$no_ripemd=$no_rc5=1;
957                                   $no_aes=1; }
958
959         elsif (/^rsaref$/)      { }
960         elsif (/^gcc$/)         { $gcc=1; }
961         elsif (/^debug$/)       { $debug=1; }
962         elsif (/^profile$/)     { $profile=1; }
963         elsif (/^shlib$/)       { $shlib=1; }
964         elsif (/^dll$/)         { $shlib=1; }
965         elsif (/^shared$/)      { } # We just need to ignore it for now...
966         elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
967         elsif (/^-[lL].*$/)     { $l_flags.="$_ "; }
968         elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
969                 { $c_flags.="$_ "; }
970         else { return(0); }
971         return(1);
972         }