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