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