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