| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | ##
 | 
					
						
							|  |  |  | ## Makefile for OpenSSL
 | 
					
						
							|  |  |  | ##
 | 
					
						
							|  |  |  | ## {- join("\n## ", @autowarntext) -}
 | 
					
						
							|  |  |  | {-
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  |      our $objext = $target{obj_extension} || ".o";
 | 
					
						
							|  |  |  |      our $depext = $target{dep_extension} || ".d";
 | 
					
						
							|  |  |  |      our $exeext = $target{exe_extension} || "";
 | 
					
						
							|  |  |  |      our $libext = $target{lib_extension} || ".a";
 | 
					
						
							|  |  |  |      our $shlibext = $target{shared_extension} || ".so";
 | 
					
						
							|  |  |  |      our $shlibextsimple = $target{shared_extension_simple} || ".so";
 | 
					
						
							|  |  |  |      our $shlibextimport = $target{shared_import_extension} || "";
 | 
					
						
							|  |  |  |      our $dsoext = $target{dso_extension} || ".so";
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |      sub windowsdll { $config{target} =~ /^(?:Cygwin|mingw)/ }
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  |      our $sover_dirname = $config{shlib_version_number};
 | 
					
						
							|  |  |  |      $sover_dirname =~ s|\.|_|g
 | 
					
						
							|  |  |  |          if $config{target} =~ /^mingw/;
 | 
					
						
							| 
									
										
										
										
											2016-07-07 00:50:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |      # shlib and shlib_simple both take a static library name and figure
 | 
					
						
							|  |  |  |      # out what the shlib name should be.
 | 
					
						
							|  |  |  |      #
 | 
					
						
							|  |  |  |      # When OpenSSL is configured "no-shared", these functions will just
 | 
					
						
							|  |  |  |      # return empty lists, making them suitable to join().
 | 
					
						
							|  |  |  |      #
 | 
					
						
							|  |  |  |      # With Windows DLL producers, shlib($libname) will return the shared
 | 
					
						
							|  |  |  |      # library name (which usually is different from the static library
 | 
					
						
							|  |  |  |      # name) with the default shared extension appended to it, while
 | 
					
						
							|  |  |  |      # shlib_simple($libname) will return the static library name with
 | 
					
						
							|  |  |  |      # the shared extension followed by ".a" appended to it.  The former
 | 
					
						
							|  |  |  |      # result is used as the runtime shared library while the latter is
 | 
					
						
							|  |  |  |      # used as the DLL import library.
 | 
					
						
							|  |  |  |      #
 | 
					
						
							|  |  |  |      # On all Unix systems, shlib($libname) will return the library name
 | 
					
						
							|  |  |  |      # with the default shared extension, while shlib_simple($libname)
 | 
					
						
							|  |  |  |      # will return the name from shlib($libname) with any SO version number
 | 
					
						
							|  |  |  |      # removed.  On some systems, they may therefore return the exact same
 | 
					
						
							|  |  |  |      # string.
 | 
					
						
							|  |  |  |      sub shlib {
 | 
					
						
							|  |  |  |          my $lib = shift;
 | 
					
						
							| 
									
										
										
										
											2017-04-18 22:24:23 +08:00
										 |  |  |          return () if $disabled{shared} || $lib =~ /\.a$/;
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  |          return $unified_info{sharednames}->{$lib} . '$(SHLIB_EXT)';
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |      }
 | 
					
						
							|  |  |  |      sub shlib_simple {
 | 
					
						
							|  |  |  |          my $lib = shift;
 | 
					
						
							| 
									
										
										
										
											2017-04-18 22:24:23 +08:00
										 |  |  |          return () if $disabled{shared} || $lib =~ /\.a$/;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |          if (windowsdll()) {
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  |              return $lib . '$(SHLIB_EXT_IMPORT)';
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |          }
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  |          return $lib .  '$(SHLIB_EXT_SIMPLE)';
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |      }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 22:24:23 +08:00
										 |  |  |      # Easy fixing of static library names
 | 
					
						
							|  |  |  |      sub lib {
 | 
					
						
							|  |  |  |          (my $lib = shift) =~ s/\.a$//;
 | 
					
						
							|  |  |  |          return $lib . $libext;
 | 
					
						
							|  |  |  |      }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |      # dso is a complement to shlib / shlib_simple that returns the
 | 
					
						
							|  |  |  |      # given libname with the simple shared extension (possible SO version
 | 
					
						
							|  |  |  |      # removed).  This differs from shlib_simple() by being unconditional.
 | 
					
						
							|  |  |  |      sub dso {
 | 
					
						
							|  |  |  |          my $engine = shift;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  |          return $engine . $dsoext;
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |      }
 | 
					
						
							| 
									
										
										
										
											2016-06-26 20:09:23 +08:00
										 |  |  |      # This makes sure things get built in the order they need
 | 
					
						
							|  |  |  |      # to. You're welcome.
 | 
					
						
							|  |  |  |      sub dependmagic {
 | 
					
						
							|  |  |  |          my $target = shift;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
 | 
					
						
							|  |  |  |      }
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  |      '';
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | -}
 | 
					
						
							|  |  |  | PLATFORM={- $config{target} -}
 | 
					
						
							|  |  |  | OPTIONS={- $config{options} -}
 | 
					
						
							|  |  |  | CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
 | 
					
						
							|  |  |  | SRCDIR={- $config{sourcedir} -}
 | 
					
						
							|  |  |  | BLDDIR={- $config{builddir} -}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | VERSION={- $config{version} -}
 | 
					
						
							|  |  |  | MAJOR={- $config{major} -}
 | 
					
						
							|  |  |  | MINOR={- $config{minor} -}
 | 
					
						
							|  |  |  | SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
 | 
					
						
							|  |  |  | SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
 | 
					
						
							|  |  |  | SHLIB_MAJOR={- $config{shlib_major} -}
 | 
					
						
							|  |  |  | SHLIB_MINOR={- $config{shlib_minor} -}
 | 
					
						
							|  |  |  | SHLIB_TARGET={- $target{shared_target} -}
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  | SHLIB_EXT={- $shlibext -}
 | 
					
						
							|  |  |  | SHLIB_EXT_SIMPLE={- $shlibextsimple -}
 | 
					
						
							|  |  |  | SHLIB_EXT_IMPORT={- $shlibextimport -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 22:24:23 +08:00
										 |  |  | LIBS={- join(" ", map { lib($_) } @{$unified_info{libraries}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  | SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{libraries}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  | ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-07-08 23:58:36 +08:00
										 |  |  | PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{programs}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  | {- output_off() if $disabled{makedepend}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  | DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
 | 
					
						
							| 
									
										
										
										
											2016-02-19 02:41:57 +08:00
										 |  |  |                   grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
 | 
					
						
							|  |  |  |                   keys %{$unified_info{sources}}); -}
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  | {- output_on() if $disabled{makedepend}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-06-14 04:02:11 +08:00
										 |  |  | GENERATED_MANDATORY={- join(" ", @{$unified_info{depends}->{""}} ) -}
 | 
					
						
							| 
									
										
										
										
											2016-05-16 20:54:39 +08:00
										 |  |  | GENERATED={- join(" ",
 | 
					
						
							|  |  |  |                   ( map { (my $x = $_) =~ s|\.S$|\.s|; $x }
 | 
					
						
							|  |  |  |                     grep { defined $unified_info{generate}->{$_} }
 | 
					
						
							|  |  |  |                     map { @{$unified_info{sources}->{$_}} }
 | 
					
						
							|  |  |  |                     grep { /\.o$/ } keys %{$unified_info{sources}} ),
 | 
					
						
							|  |  |  |                   ( grep { /\.h$/ } keys %{$unified_info{generate}} )) -}
 | 
					
						
							| 
									
										
										
										
											2016-02-19 02:41:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 22:24:23 +08:00
										 |  |  | INSTALL_LIBS={- join(" ", map { lib($_) } @{$unified_info{install}->{libraries}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | INSTALL_SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{install}->{libraries}}) -}
 | 
					
						
							|  |  |  | INSTALL_SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{install}->{libraries}}) -}
 | 
					
						
							|  |  |  | INSTALL_ENGINES={- join(" ", map { dso($_) } @{$unified_info{install}->{engines}}) -}
 | 
					
						
							|  |  |  | INSTALL_PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{install}->{programs}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-04-14 23:04:56 +08:00
										 |  |  | {- output_off() if $disabled{apps}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | BIN_SCRIPTS=$(BLDDIR)/tools/c_rehash
 | 
					
						
							| 
									
										
										
										
											2016-05-21 04:16:07 +08:00
										 |  |  | MISC_SCRIPTS=$(BLDDIR)/apps/CA.pl $(BLDDIR)/apps/tsget
 | 
					
						
							| 
									
										
										
										
											2016-04-14 23:04:56 +08:00
										 |  |  | {- output_on() if $disabled{apps}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-16 01:31:01 +08:00
										 |  |  | APPS_OPENSSL={- use File::Spec::Functions;
 | 
					
						
							|  |  |  |                 catfile("apps","openssl") -}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | # DESTDIR is for package builders so that they can configure for, say,
 | 
					
						
							|  |  |  | # /usr/ and yet have everything installed to /tmp/somedir/usr/.
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | # Normally it is left empty.
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | DESTDIR=
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Do not edit these manually. Use Configure with --prefix or --openssldir
 | 
					
						
							|  |  |  | # to change this!  Short explanation in the top comment in Configure
 | 
					
						
							|  |  |  | INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
 | 
					
						
							|  |  |  | 	      #
 | 
					
						
							|  |  |  | 	      our $prefix = $config{prefix} || "/usr/local";
 | 
					
						
							|  |  |  |               $prefix -}
 | 
					
						
							|  |  |  | OPENSSLDIR={- #
 | 
					
						
							|  |  |  | 	      # The logic here is that if no --openssldir was given,
 | 
					
						
							|  |  |  | 	      # OPENSSLDIR will get the value from $prefix plus "/ssl".
 | 
					
						
							|  |  |  | 	      # If --openssldir was given and the value is an absolute
 | 
					
						
							|  |  |  | 	      # path, OPENSSLDIR will get its value without change.
 | 
					
						
							|  |  |  | 	      # If the value from --openssldir is a relative path,
 | 
					
						
							|  |  |  | 	      # OPENSSLDIR will get $prefix with the --openssldir
 | 
					
						
							|  |  |  | 	      # value appended as a subdirectory.
 | 
					
						
							|  |  |  | 	      #
 | 
					
						
							|  |  |  |               use File::Spec::Functions;
 | 
					
						
							|  |  |  |               our $openssldir =
 | 
					
						
							|  |  |  |                   $config{openssldir} ?
 | 
					
						
							|  |  |  |                       (file_name_is_absolute($config{openssldir}) ?
 | 
					
						
							|  |  |  |                            $config{openssldir}
 | 
					
						
							|  |  |  |                            : catdir($prefix, $config{openssldir}))
 | 
					
						
							|  |  |  |                       : catdir($prefix, "ssl");
 | 
					
						
							|  |  |  |               $openssldir -}
 | 
					
						
							|  |  |  | LIBDIR={- #
 | 
					
						
							|  |  |  |           # if $prefix/lib$target{multilib} is not an existing
 | 
					
						
							|  |  |  |           # directory, then assume that it's not searched by linker
 | 
					
						
							|  |  |  |           # automatically, in which case adding $target{multilib} suffix
 | 
					
						
							|  |  |  |           # causes more grief than we're ready to tolerate, so don't...
 | 
					
						
							|  |  |  |           our $multilib =
 | 
					
						
							|  |  |  |               -d "$prefix/lib$target{multilib}" ? $target{multilib} : "";
 | 
					
						
							|  |  |  |           our $libdir = $config{libdir} || "lib$multilib";
 | 
					
						
							|  |  |  |           $libdir -}
 | 
					
						
							|  |  |  | ENGINESDIR={- use File::Spec::Functions;
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  |               catdir($prefix,$libdir,"engines-$sover_dirname") -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-12 23:05:35 +08:00
										 |  |  | # Convenience variable for those who want to set the rpath in shared
 | 
					
						
							|  |  |  | # libraries and applications
 | 
					
						
							|  |  |  | LIBRPATH=$(INSTALLTOP)/$(LIBDIR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 00:55:48 +08:00
										 |  |  | MANDIR=$(INSTALLTOP)/share/man
 | 
					
						
							| 
									
										
										
										
											2016-02-19 17:38:15 +08:00
										 |  |  | DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
 | 
					
						
							|  |  |  | HTMLDIR=$(DOCDIR)/html
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-15 20:37:17 +08:00
										 |  |  | # MANSUFFIX is for the benefit of anyone who may want to have a suffix
 | 
					
						
							|  |  |  | # appended after the manpage file section number.  "ssl" is popular,
 | 
					
						
							|  |  |  | # resulting in files such as config.5ssl rather than config.5.
 | 
					
						
							|  |  |  | MANSUFFIX=
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | HTMLSUFFIX=html
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | # For "optional" echo messages, to get "real" silence
 | 
					
						
							|  |  |  | ECHO = echo
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | CROSS_COMPILE= {- $config{cross_compile_prefix} -}
 | 
					
						
							|  |  |  | CC= $(CROSS_COMPILE){- $target{cc} -}
 | 
					
						
							| 
									
										
										
										
											2016-03-02 17:57:05 +08:00
										 |  |  | CFLAGS={- our $cflags2 = join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $target{cflags} -} {- $config{cflags} -}
 | 
					
						
							| 
									
										
										
										
											2016-02-11 02:09:05 +08:00
										 |  |  | CFLAGS_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -}
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | CXX= $(CROSS_COMPILE){- $target{cxx} -}
 | 
					
						
							| 
									
										
										
										
											2016-10-15 03:32:18 +08:00
										 |  |  | CXXFLAGS={- our $cxxflags2 = join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $target{cxxflags} -} {- $config{cxxflags} -} -std=c++11
 | 
					
						
							| 
									
										
										
										
											2016-02-27 18:42:13 +08:00
										 |  |  | LDFLAGS= {- $target{lflags} -}
 | 
					
						
							|  |  |  | PLIB_LDFLAGS= {- $target{plib_lflags} -}
 | 
					
						
							| 
									
										
										
										
											2016-03-02 17:57:05 +08:00
										 |  |  | EX_LIBS= {- $target{ex_libs} -} {- $config{ex_libs} -}
 | 
					
						
							| 
									
										
										
										
											2016-03-12 16:38:20 +08:00
										 |  |  | LIB_CFLAGS={- $target{shared_cflag} || "" -}
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | LIB_CXXFLAGS={- $target{shared_cxxflag} || "" -}
 | 
					
						
							| 
									
										
										
										
											2016-10-12 23:18:11 +08:00
										 |  |  | LIB_LDFLAGS={- $target{shared_ldflag}." ".$config{shared_ldflag} -}
 | 
					
						
							| 
									
										
										
										
											2016-02-20 05:02:41 +08:00
										 |  |  | DSO_CFLAGS={- $target{shared_cflag} || "" -}
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | DSO_CXXFLAGS={- $target{shared_cxxflag} || "" -}
 | 
					
						
							| 
									
										
										
										
											2016-03-12 16:38:20 +08:00
										 |  |  | DSO_LDFLAGS=$(LIB_LDFLAGS)
 | 
					
						
							| 
									
										
										
										
											2016-05-01 19:35:31 +08:00
										 |  |  | BIN_CFLAGS={- $target{bin_cflags} -}
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | BIN_CXXFLAGS={- $target{bin_cxxflag} || "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | PERL={- $config{perl} -}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ARFLAGS= {- $target{arflags} -}
 | 
					
						
							|  |  |  | AR=$(CROSS_COMPILE){- $target{ar} || "ar" -} $(ARFLAGS) r
 | 
					
						
							|  |  |  | RANLIB= {- $target{ranlib} -}
 | 
					
						
							|  |  |  | NM= $(CROSS_COMPILE){- $target{nm} || "nm" -}
 | 
					
						
							| 
									
										
										
										
											2016-05-16 23:08:13 +08:00
										 |  |  | RCFLAGS={- $target{shared_rcflag} -}
 | 
					
						
							|  |  |  | RC= $(CROSS_COMPILE){- $target{rc} || "windres" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | RM= rm -f
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:12:24 +08:00
										 |  |  | RMDIR= rmdir
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | TAR= {- $target{tar} || "tar" -}
 | 
					
						
							|  |  |  | TARFLAGS= {- $target{tarflags} -}
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  | MAKEDEPEND={- $config{makedepprog} -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | BASENAME=       openssl
 | 
					
						
							|  |  |  | NAME=           $(BASENAME)-$(VERSION)
 | 
					
						
							|  |  |  | TARFILE=        ../$(NAME).tar
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # We let the C compiler driver to take care of .s files. This is done in
 | 
					
						
							|  |  |  | # order to be excused from maintaining a separate set of architecture
 | 
					
						
							|  |  |  | # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
 | 
					
						
							|  |  |  | # gcc, then the driver will automatically translate it to -xarch=v8plus
 | 
					
						
							|  |  |  | # and pass it down to assembler.
 | 
					
						
							|  |  |  | AS=$(CC) -c
 | 
					
						
							|  |  |  | ASFLAG=$(CFLAGS)
 | 
					
						
							|  |  |  | PERLASM_SCHEME= {- $target{perlasm_scheme} -}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # For x86 assembler: Set PROCESSOR to 386 if you want to support
 | 
					
						
							|  |  |  | # the 80386.
 | 
					
						
							|  |  |  | PROCESSOR= {- $config{processor} -}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-29 05:05:32 +08:00
										 |  |  | # We want error [and other] messages in English. Trouble is that make(1)
 | 
					
						
							|  |  |  | # doesn't pass macros down as environment variables unless there already
 | 
					
						
							|  |  |  | # was corresponding variable originally set. In other words we can only
 | 
					
						
							|  |  |  | # reassign environment variables, but not set new ones, not in portable
 | 
					
						
							|  |  |  | # manner that is. That's why we reassign several, just to be sure...
 | 
					
						
							|  |  |  | LC_ALL=C
 | 
					
						
							|  |  |  | LC_MESSAGES=C
 | 
					
						
							|  |  |  | LANG=C
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | # The main targets ###################################################
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-08 23:58:36 +08:00
										 |  |  | {- dependmagic('all'); -}: build_libs_nodep build_engines_nodep build_programs_nodep link-utils
 | 
					
						
							| 
									
										
										
										
											2016-06-26 20:09:23 +08:00
										 |  |  | {- dependmagic('build_libs'); -}: build_libs_nodep
 | 
					
						
							|  |  |  | {- dependmagic('build_engines'); -}: build_engines_nodep
 | 
					
						
							| 
									
										
										
										
											2016-07-08 23:58:36 +08:00
										 |  |  | {- dependmagic('build_programs'); -}: build_programs_nodep
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-26 20:09:23 +08:00
										 |  |  | build_generated: $(GENERATED_MANDATORY)
 | 
					
						
							| 
									
										
										
										
											2016-02-19 02:41:57 +08:00
										 |  |  | build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
 | 
					
						
							|  |  |  | build_engines_nodep: $(ENGINES)
 | 
					
						
							| 
									
										
										
										
											2016-07-08 23:58:36 +08:00
										 |  |  | build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Kept around for backward compatibility
 | 
					
						
							|  |  |  | build_apps build_tests: build_programs
 | 
					
						
							| 
									
										
										
										
											2016-02-14 01:15:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-16 09:46:41 +08:00
										 |  |  | # Convenience target to prebuild all generated files, not just the mandatory
 | 
					
						
							|  |  |  | # ones
 | 
					
						
							|  |  |  | build_all_generated: $(GENERATED_MANDATORY) $(GENERATED)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-18 20:09:36 +08:00
										 |  |  | test: tests
 | 
					
						
							| 
									
										
										
										
											2016-07-08 23:58:36 +08:00
										 |  |  | {- dependmagic('tests'); -}: build_programs_nodep build_engines_nodep link-utils
 | 
					
						
							| 
									
										
										
										
											2016-04-14 20:44:15 +08:00
										 |  |  | 	@ : {- output_off() if $disabled{tests}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	( cd test; \
 | 
					
						
							|  |  |  | 	  SRCTOP=../$(SRCDIR) \
 | 
					
						
							|  |  |  | 	  BLDTOP=../$(BLDDIR) \
 | 
					
						
							| 
									
										
										
										
											2016-05-27 23:18:57 +08:00
										 |  |  | 	  PERL="$(PERL)" \
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  | 	  EXE_EXT={- $exeext -} \
 | 
					
						
							| 
									
										
										
										
											2016-03-05 20:11:37 +08:00
										 |  |  | 	  OPENSSL_ENGINES=../$(BLDDIR)/engines \
 | 
					
						
							| 
									
										
										
										
											2016-11-04 00:08:10 +08:00
										 |  |  | 	  OPENSSL_DEBUG_MEMORY=on \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	    $(PERL) ../$(SRCDIR)/test/run_tests.pl $(TESTS) )
 | 
					
						
							| 
									
										
										
										
											2016-04-14 20:44:15 +08:00
										 |  |  | 	@ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
 | 
					
						
							|  |  |  | 	@echo "Tests are not supported with your chosen Configure options"
 | 
					
						
							|  |  |  | 	@ : {- output_on() if !$disabled{tests}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | list-tests:
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 	@ : {- output_off() if $disabled{tests}; "" -}
 | 
					
						
							|  |  |  | 	@SRCTOP="$(SRCDIR)" \
 | 
					
						
							|  |  |  | 	 $(PERL) $(SRCDIR)/test/run_tests.pl list
 | 
					
						
							|  |  |  | 	@ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
 | 
					
						
							|  |  |  | 	@echo "Tests are not supported with your chosen Configure options"
 | 
					
						
							|  |  |  | 	@ : {- output_on() if !$disabled{tests}; "" -}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install: install_sw install_ssldirs install_docs
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uninstall: uninstall_docs uninstall_sw
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | libclean:
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:13:41 +08:00
										 |  |  | 	@set -e; for s in $(SHLIB_INFO); do \
 | 
					
						
							|  |  |  | 		s1=`echo "$$s" | cut -f1 -d";"`; \
 | 
					
						
							|  |  |  | 		s2=`echo "$$s" | cut -f2 -d";"`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) $(RM) $$s1; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:13:41 +08:00
										 |  |  | 		$(RM) $$s1; \
 | 
					
						
							|  |  |  | 		if [ "$$s1" != "$$s2" ]; then \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 			$(ECHO) $(RM) $$s2; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:13:41 +08:00
										 |  |  | 			$(RM) $$s2; \
 | 
					
						
							|  |  |  | 		fi; \
 | 
					
						
							|  |  |  | 	done
 | 
					
						
							|  |  |  | 	$(RM) $(LIBS)
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 	$(RM) *.map
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | clean: libclean
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 	$(RM) $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
 | 
					
						
							|  |  |  | 	$(RM) $(GENERATED)
 | 
					
						
							|  |  |  | 	-$(RM) `find . -name '*{- $depext -}' -a \! -path "./.git/*"`
 | 
					
						
							|  |  |  | 	-$(RM) `find . -name '*{- $objext -}' -a \! -path "./.git/*"`
 | 
					
						
							|  |  |  | 	$(RM) core
 | 
					
						
							| 
									
										
										
										
											2017-03-11 21:56:44 +08:00
										 |  |  | 	$(RM) tags TAGS doc-nits
 | 
					
						
							| 
									
										
										
										
											2017-02-02 02:10:03 +08:00
										 |  |  | 	$(RM) test/.rnd
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 	$(RM) openssl.pc libcrypto.pc libssl.pc
 | 
					
						
							|  |  |  | 	-$(RM) `find . -type l -a \! -path "./.git/*"`
 | 
					
						
							|  |  |  | 	$(RM) $(TARFILE)
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 04:02:11 +08:00
										 |  |  | distclean: clean
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 	$(RM) configdata.pm
 | 
					
						
							|  |  |  | 	$(RM) Makefile
 | 
					
						
							| 
									
										
										
										
											2016-06-14 04:02:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-21 23:09:36 +08:00
										 |  |  | # We check if any depfile is newer than Makefile and decide to
 | 
					
						
							| 
									
										
										
										
											2016-03-19 03:52:29 +08:00
										 |  |  | # concatenate only if that is true.
 | 
					
						
							| 
									
										
										
										
											2016-02-21 00:29:23 +08:00
										 |  |  | depend:
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  | 	@: {- output_off() if $disabled{makedepend}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-10-01 19:40:58 +08:00
										 |  |  | 	@if egrep "^# DO NOT DELETE THIS LINE" Makefile >/dev/null && [ -z "`find $(DEPS) -newer Makefile 2>/dev/null; exit 0`" ]; then :; else \
 | 
					
						
							| 
									
										
										
										
											2016-11-01 00:38:36 +08:00
										 |  |  | 	  ( $(PERL) -pe 'exit 0 if /^# DO NOT DELETE THIS LINE.*/' < Makefile; \
 | 
					
						
							| 
									
										
										
										
											2016-02-21 23:09:36 +08:00
										 |  |  | 	    echo '# DO NOT DELETE THIS LINE -- make depend depends on it.'; \
 | 
					
						
							|  |  |  | 	    echo; \
 | 
					
						
							| 
									
										
										
										
											2016-03-19 03:52:29 +08:00
										 |  |  | 	    for f in $(DEPS); do \
 | 
					
						
							|  |  |  | 	      if [ -f $$f ]; then cat $$f; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-02-21 23:09:36 +08:00
										 |  |  | 	    done ) > Makefile.new; \
 | 
					
						
							| 
									
										
										
										
											2016-03-15 16:05:20 +08:00
										 |  |  | 	  if cmp Makefile.new Makefile >/dev/null 2>&1; then \
 | 
					
						
							| 
									
										
										
										
											2016-02-21 23:09:36 +08:00
										 |  |  | 	    rm -f Makefile.new; \
 | 
					
						
							| 
									
										
										
										
											2016-03-15 16:05:20 +08:00
										 |  |  | 	  else \
 | 
					
						
							|  |  |  | 	    mv -f Makefile.new Makefile; \
 | 
					
						
							| 
									
										
										
										
											2016-02-21 23:09:36 +08:00
										 |  |  | 	  fi; \
 | 
					
						
							| 
									
										
										
										
											2016-02-19 02:41:57 +08:00
										 |  |  | 	fi
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  | 	@: {- output_on() if $disabled{makedepend}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Install helper targets #############################################
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install_sw: all install_dev install_engines install_runtime
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:13:41 +08:00
										 |  |  | uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | install_docs: install_man_docs install_html_docs
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uninstall_docs: uninstall_man_docs uninstall_html_docs
 | 
					
						
							| 
									
										
										
										
											2016-02-19 17:38:15 +08:00
										 |  |  | 	$(RM) -r -v $(DESTDIR)$(DOCDIR)
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 00:55:48 +08:00
										 |  |  | install_ssldirs:
 | 
					
						
							|  |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
 | 
					
						
							|  |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
 | 
					
						
							| 
									
										
										
										
											2016-08-02 05:15:50 +08:00
										 |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 	@set -e; for x in dummy $(MISC_SCRIPTS); do \
 | 
					
						
							|  |  |  | 		if [ "$$x" = "dummy" ]; then continue; fi; \
 | 
					
						
							|  |  |  | 		fn=`basename $$x`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$x -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 		cp $$x $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
 | 
					
						
							|  |  |  | 		chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
 | 
					
						
							|  |  |  | 		mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
 | 
					
						
							|  |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
 | 
					
						
							| 
									
										
										
										
											2016-06-17 06:23:43 +08:00
										 |  |  | 	@cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
 | 
					
						
							|  |  |  | 	@chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
 | 
					
						
							| 
									
										
										
										
											2016-08-02 05:18:25 +08:00
										 |  |  | 	@mv -f  $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
 | 
					
						
							| 
									
										
										
										
											2016-09-10 06:05:41 +08:00
										 |  |  | 	@if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
 | 
					
						
							| 
									
										
										
										
											2016-08-02 05:18:25 +08:00
										 |  |  | 		cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
 | 
					
						
							|  |  |  | 		chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
 | 
					
						
							|  |  |  | 	fi
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
 | 
					
						
							| 
									
										
										
										
											2016-09-10 06:05:41 +08:00
										 |  |  | 	@cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
 | 
					
						
							|  |  |  | 	@chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
 | 
					
						
							|  |  |  | 	@mv -f  $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist
 | 
					
						
							|  |  |  | 	@if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
 | 
					
						
							| 
									
										
										
										
											2016-09-10 06:05:41 +08:00
										 |  |  | 		cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
 | 
					
						
							|  |  |  | 		chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
 | 
					
						
							|  |  |  | 	fi
 | 
					
						
							| 
									
										
										
										
											2016-02-14 00:55:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | install_dev:
 | 
					
						
							|  |  |  | 	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Installing development files"
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
 | 
					
						
							| 
									
										
										
										
											2016-07-15 03:11:46 +08:00
										 |  |  | 	@ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
 | 
					
						
							| 
									
										
										
										
											2016-07-15 03:11:46 +08:00
										 |  |  | 	@cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
 | 
					
						
							|  |  |  | 	@chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
 | 
					
						
							|  |  |  | 	@ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	@set -e; for i in $(SRCDIR)/include/openssl/*.h \
 | 
					
						
							|  |  |  | 			  $(BLDDIR)/include/openssl/*.h; do \
 | 
					
						
							|  |  |  | 		fn=`basename $$i`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
 | 
					
						
							|  |  |  | 		chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for l in $(INSTALL_LIBS); do \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$l`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$l -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		cp $$l $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
 | 
					
						
							|  |  |  | 		$(RANLIB) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
 | 
					
						
							|  |  |  | 		chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
 | 
					
						
							|  |  |  | 		mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-02-22 20:52:46 +08:00
										 |  |  | 	@ : {- output_off() if $disabled{shared}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for s in $(INSTALL_SHLIB_INFO); do \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		s1=`echo "$$s" | cut -f1 -d";"`; \
 | 
					
						
							|  |  |  | 		s2=`echo "$$s" | cut -f2 -d";"`; \
 | 
					
						
							|  |  |  | 		fn1=`basename $$s1`; \
 | 
					
						
							|  |  |  | 		fn2=`basename $$s2`; \
 | 
					
						
							|  |  |  | 		: {- output_off() if windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$s1 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		cp $$s1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
 | 
					
						
							| 
									
										
										
										
											2016-07-08 19:33:27 +08:00
										 |  |  | 		chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
 | 
					
						
							|  |  |  | 		if [ "$$fn1" != "$$fn2" ]; then \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 			$(ECHO) "link $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 			ln -sf $$fn1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fi; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		: {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$s2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		cp $$s2 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
 | 
					
						
							| 
									
										
										
										
											2016-07-08 19:33:27 +08:00
										 |  |  | 		chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
 | 
					
						
							| 
									
										
										
										
											2016-02-20 05:23:28 +08:00
										 |  |  | 		: {- output_on() unless windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-02-22 20:52:46 +08:00
										 |  |  | 	@ : {- output_on() if $disabled{shared}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc"
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 	@cp libcrypto.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
 | 
					
						
							|  |  |  | 	@chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "install libssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc"
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 	@cp libssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
 | 
					
						
							|  |  |  | 	@chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "install openssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc"
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 	@cp openssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
 | 
					
						
							|  |  |  | 	@chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | uninstall_dev:
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Uninstalling development files"
 | 
					
						
							| 
									
										
										
										
											2016-07-15 03:11:46 +08:00
										 |  |  | 	@ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
 | 
					
						
							| 
									
										
										
										
											2016-07-15 03:11:46 +08:00
										 |  |  | 	@$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
 | 
					
						
							|  |  |  | 	@ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	@set -e; for i in $(SRCDIR)/include/openssl/*.h \
 | 
					
						
							|  |  |  | 			  $(BLDDIR)/include/openssl/*.h; do \
 | 
					
						
							|  |  |  | 		fn=`basename $$i`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:12:24 +08:00
										 |  |  | 	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
 | 
					
						
							|  |  |  | 	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for l in $(INSTALL_LIBS); do \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$l`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-02-22 20:52:46 +08:00
										 |  |  | 	@ : {- output_off() if $disabled{shared}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for s in $(INSTALL_SHLIB_INFO); do \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		s1=`echo "$$s" | cut -f1 -d";"`; \
 | 
					
						
							|  |  |  | 		s2=`echo "$$s" | cut -f2 -d";"`; \
 | 
					
						
							|  |  |  | 		fn1=`basename $$s1`; \
 | 
					
						
							|  |  |  | 		fn2=`basename $$s2`; \
 | 
					
						
							|  |  |  | 		: {- output_off() if windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
 | 
					
						
							|  |  |  | 		if [ "$$fn1" != "$$fn2" ]; then \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 			$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 			$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fi; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		: {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:39:49 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
 | 
					
						
							| 
									
										
										
										
											2016-02-20 05:23:28 +08:00
										 |  |  | 		: {- output_on() unless windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-03-04 12:43:15 +08:00
										 |  |  | 	@ : {- output_on() if $disabled{shared}; "" -}
 | 
					
						
							| 
									
										
										
										
											2016-03-04 00:45:14 +08:00
										 |  |  | 	$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
 | 
					
						
							|  |  |  | 	$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
 | 
					
						
							|  |  |  | 	$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
 | 
					
						
							|  |  |  | 	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
 | 
					
						
							|  |  |  | 	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | install_engines:
 | 
					
						
							|  |  |  | 	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
 | 
					
						
							| 
									
										
										
										
											2016-07-07 00:50:47 +08:00
										 |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Installing engines"
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for e in dummy $(INSTALL_ENGINES); do \
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 		if [ "$$e" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$e`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-07-07 00:50:47 +08:00
										 |  |  | 		cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
 | 
					
						
							|  |  |  | 		chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
 | 
					
						
							|  |  |  | 		mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(ENGINESDIR)/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uninstall_engines:
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Uninstalling engines"
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for e in dummy $(INSTALL_ENGINES); do \
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 		if [ "$$e" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$e`; \
 | 
					
						
							| 
									
										
										
										
											2016-02-19 17:39:12 +08:00
										 |  |  | 		if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
 | 
					
						
							|  |  |  | 			continue; \
 | 
					
						
							|  |  |  | 		fi; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-07-07 00:50:47 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-07-07 00:50:47 +08:00
										 |  |  | 	-$(RMDIR) $(DESTDIR)$(ENGINESDIR)
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | install_runtime:
 | 
					
						
							|  |  |  | 	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
 | 
					
						
							| 
									
										
										
										
											2016-07-19 19:24:57 +08:00
										 |  |  | 	@ : {- output_off() if windowsdll(); "" -}
 | 
					
						
							|  |  |  | 	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
 | 
					
						
							|  |  |  | 	@ : {- output_on() if windowsdll(); "" -}
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Installing runtime files"
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for s in dummy $(INSTALL_SHLIBS); do \
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 		if [ "$$s" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:13:41 +08:00
										 |  |  | 		fn=`basename $$s`; \
 | 
					
						
							| 
									
										
										
										
											2016-07-19 19:24:57 +08:00
										 |  |  | 		: {- output_off() unless windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
 | 
					
						
							|  |  |  | 		chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
 | 
					
						
							|  |  |  | 		mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-07-19 19:24:57 +08:00
										 |  |  | 		: {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-07-19 19:24:57 +08:00
										 |  |  | 		cp $$s $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
 | 
					
						
							|  |  |  | 		chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
 | 
					
						
							|  |  |  | 		mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
 | 
					
						
							|  |  |  | 		: {- output_on() if windowsdll(); "" -}; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 12:45:29 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for x in dummy $(INSTALL_PROGRAMS); do \
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 		if [ "$$x" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$x`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
 | 
					
						
							|  |  |  | 		chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
 | 
					
						
							|  |  |  | 		mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 	@set -e; for x in dummy $(BIN_SCRIPTS); do \
 | 
					
						
							|  |  |  | 		if [ "$$x" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$x`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
 | 
					
						
							|  |  |  | 		chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
 | 
					
						
							|  |  |  | 		mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
 | 
					
						
							|  |  |  | 		      $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uninstall_runtime:
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Uninstalling runtime files"
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for x in dummy $(INSTALL_PROGRAMS); \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	do  \
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 		if [ "$$x" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$x`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done;
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 	@set -e; for x in dummy $(BIN_SCRIPTS); \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	do  \
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 		if [ "$$x" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		fn=`basename $$x`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-07-15 03:13:24 +08:00
										 |  |  | 	@ : {- output_off() unless windowsdll(); "" -}
 | 
					
						
							| 
									
										
										
										
											2016-07-08 20:52:09 +08:00
										 |  |  | 	@set -e; for s in dummy $(INSTALL_SHLIBS); do \
 | 
					
						
							| 
									
										
										
										
											2016-03-21 15:11:14 +08:00
										 |  |  | 		if [ "$$s" = "dummy" ]; then continue; fi; \
 | 
					
						
							| 
									
										
										
										
											2016-02-16 05:13:41 +08:00
										 |  |  | 		fn=`basename $$s`; \
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
 | 
					
						
							| 
									
										
										
										
											2016-02-13 04:14:03 +08:00
										 |  |  | 		$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 12:45:29 +08:00
										 |  |  | 	done
 | 
					
						
							| 
									
										
										
										
											2016-07-15 03:13:24 +08:00
										 |  |  | 	@ : {- output_on() unless windowsdll(); "" -}
 | 
					
						
							| 
									
										
										
										
											2016-03-04 00:45:14 +08:00
										 |  |  | 	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install_man_docs:
 | 
					
						
							|  |  |  | 	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Installing manpages"
 | 
					
						
							| 
									
										
										
										
											2017-03-07 04:17:32 +08:00
										 |  |  | 	$(PERL) $(SRCDIR)/util/process_docs.pl \
 | 
					
						
							|  |  |  | 		--destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX)
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | uninstall_man_docs:
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Uninstalling manpages"
 | 
					
						
							| 
									
										
										
										
											2017-03-07 04:17:32 +08:00
										 |  |  | 	$(PERL) $(SRCDIR)/util/process_docs.pl \
 | 
					
						
							|  |  |  | 		--destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX) \
 | 
					
						
							|  |  |  | 		--remove
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | install_html_docs:
 | 
					
						
							|  |  |  | 	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Installing HTML manpages"
 | 
					
						
							| 
									
										
										
										
											2017-03-07 04:17:32 +08:00
										 |  |  | 	$(PERL) $(SRCDIR)/util/process_docs.pl \
 | 
					
						
							|  |  |  | 		--destdir=$(DESTDIR)$(HTMLDIR) --type=html
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | uninstall_html_docs:
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 	@$(ECHO) "*** Uninstalling manpages"
 | 
					
						
							| 
									
										
										
										
											2017-03-07 04:17:32 +08:00
										 |  |  | 	$(PERL) $(SRCDIR)/util/process_docs.pl \
 | 
					
						
							|  |  |  | 		--destdir=$(DESTDIR)$(HTMLDIR) --type=html --remove
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Developer targets (note: these are only available on Unix) #########
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 03:00:57 +08:00
										 |  |  | update: generate errors ordinals
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:09:20 +08:00
										 |  |  | generate: generate_apps generate_crypto_bn generate_crypto_objects \
 | 
					
						
							|  |  |  |           generate_crypto_conf generate_crypto_asn1
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-12 21:20:54 +08:00
										 |  |  | doc-nits:
 | 
					
						
							| 
									
										
										
										
											2017-06-09 03:18:38 +08:00
										 |  |  | 	(cd $(SRCDIR); $(PERL) util/find-doc-nits -n -p ) >doc-nits
 | 
					
						
							| 
									
										
										
										
											2017-03-11 21:56:44 +08:00
										 |  |  | 	if [ -s doc-nits ] ; then cat doc-nits; rm doc-nits ; exit 1; fi
 | 
					
						
							| 
									
										
										
										
											2017-01-12 21:20:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | # Test coverage is a good idea for the future
 | 
					
						
							|  |  |  | #coverage: $(PROGRAMS) $(TESTPROGRAMS)
 | 
					
						
							|  |  |  | #	...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lint:
 | 
					
						
							|  |  |  | 	lint -DLINT $(INCLUDES) $(SRCS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												Don't let 'generate' target depend on generated files, act directly instead
One of the 'generate' targets depended on $(SRCDIR)/apps/progs.h,
which depended on...  nothing.  This meant it never got regenerated
once it existed, regardless of need.  Of course, we could have it
depend on all the files checked to generate it, but they also depend
on progs.h, so we'd end up getting cricular dependencies, which makes
make unhappy.
Furthermore, and this applies for the other generated files, having
them as targets means that they may be regenerated on the fly in some
cases, and since they get written to the source tree, this isn't such
a good idea if that tree is read-only (which is a possible situation
in an out-of-tree build).
So, we move all the actions to the 'generate' targets themselves, thus
making sure they get regenerated in a controlled manner and regardless
of dependencies.
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
											
										 
											2016-03-20 03:04:51 +08:00
										 |  |  | generate_apps:
 | 
					
						
							|  |  |  | 	( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
 | 
					
						
							|  |  |  | 				< apps/openssl.cnf > apps/openssl-vms.cnf )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | generate_crypto_bn:
 | 
					
						
							|  |  |  | 	( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | generate_crypto_objects:
 | 
					
						
							|  |  |  | 	( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
 | 
					
						
							|  |  |  | 				crypto/objects/objects.txt \
 | 
					
						
							|  |  |  | 				crypto/objects/obj_mac.num \
 | 
					
						
							|  |  |  | 				include/openssl/obj_mac.h )
 | 
					
						
							| 
									
										
										
										
											2016-04-24 08:01:25 +08:00
										 |  |  | 	( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
 | 
					
						
							|  |  |  | 				include/openssl/obj_mac.h \
 | 
					
						
							|  |  |  | 				crypto/objects/obj_dat.h )
 | 
					
						
							| 
									
										
										
											
												Don't let 'generate' target depend on generated files, act directly instead
One of the 'generate' targets depended on $(SRCDIR)/apps/progs.h,
which depended on...  nothing.  This meant it never got regenerated
once it existed, regardless of need.  Of course, we could have it
depend on all the files checked to generate it, but they also depend
on progs.h, so we'd end up getting cricular dependencies, which makes
make unhappy.
Furthermore, and this applies for the other generated files, having
them as targets means that they may be regenerated on the fly in some
cases, and since they get written to the source tree, this isn't such
a good idea if that tree is read-only (which is a possible situation
in an out-of-tree build).
So, we move all the actions to the 'generate' targets themselves, thus
making sure they get regenerated in a controlled manner and regardless
of dependencies.
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
											
										 
											2016-03-20 03:04:51 +08:00
										 |  |  | 	( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
 | 
					
						
							|  |  |  | 				crypto/objects/obj_mac.num \
 | 
					
						
							|  |  |  | 				crypto/objects/obj_xref.txt \
 | 
					
						
							|  |  |  | 				> crypto/objects/obj_xref.h )
 | 
					
						
							| 
									
										
										
										
											2016-02-12 03:00:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:09:20 +08:00
										 |  |  | generate_crypto_conf:
 | 
					
						
							|  |  |  | 	( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
 | 
					
						
							|  |  |  | 			        > crypto/conf/conf_def.h )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | generate_crypto_asn1:
 | 
					
						
							|  |  |  | 	( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
 | 
					
						
							|  |  |  | 			        > crypto/asn1/charmap.h )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-08 03:12:03 +08:00
										 |  |  | # Set to -force to force a rebuild
 | 
					
						
							|  |  |  | ERROR_REBUILD=
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | errors:
 | 
					
						
							|  |  |  | 	( cd $(SRCDIR); $(PERL) util/ck_errf.pl -strict */*.c */*/*.c )
 | 
					
						
							| 
									
										
										
										
											2017-06-08 03:12:03 +08:00
										 |  |  | 	( cd $(SRCDIR); $(PERL) util/mkerr.pl $(ERROR_REBUILD) -internal )
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	( cd $(SRCDIR)/engines; \
 | 
					
						
							| 
									
										
										
										
											2017-06-08 03:12:03 +08:00
										 |  |  |           for E in *.ec ; do \
 | 
					
						
							|  |  |  |               $(PERL) ../util/mkerr.pl $(ERROR_REBUILD) -static \
 | 
					
						
							|  |  |  |                 -conf $$E `basename $$E .ec`.c ; \
 | 
					
						
							|  |  |  |           done )
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ordinals:
 | 
					
						
							|  |  |  | 	( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
 | 
					
						
							|  |  |  | 	( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl ssl update )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test_ordinals:
 | 
					
						
							|  |  |  | 	( cd test; \
 | 
					
						
							|  |  |  | 	  SRCTOP=../$(SRCDIR) \
 | 
					
						
							|  |  |  | 	  BLDTOP=../$(BLDDIR) \
 | 
					
						
							|  |  |  | 	    $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tags TAGS: FORCE
 | 
					
						
							|  |  |  | 	rm -f TAGS tags
 | 
					
						
							|  |  |  | 	-ctags -R .
 | 
					
						
							|  |  |  | 	-etags `find . -name '*.[ch]' -o -name '*.pm'`
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Release targets (note: only available on Unix) #####################
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-10 19:07:32 +08:00
										 |  |  | TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf -
 | 
					
						
							| 
									
										
										
										
											2016-03-08 18:49:26 +08:00
										 |  |  | PREPARE_CMD=:
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | tar:
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:04:18 +08:00
										 |  |  | 	set -e; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	TMPDIR=/var/tmp/openssl-copy.$$$$; \
 | 
					
						
							| 
									
										
										
										
											2016-03-08 18:49:26 +08:00
										 |  |  | 	DISTDIR=$(NAME); \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	mkdir -p $$TMPDIR/$$DISTDIR; \
 | 
					
						
							|  |  |  | 	(cd $(SRCDIR); \
 | 
					
						
							| 
									
										
										
										
											2017-08-17 15:38:02 +08:00
										 |  |  | 	 excl_re=`git submodule status | sed -e 's/^.//' | cut -d' ' -f2`; \
 | 
					
						
							|  |  |  | 	 excl_re="^(fuzz/corpora|`echo $$excl_re | sed -e 's/ /$$|/g'`\$$)"; \
 | 
					
						
							|  |  |  | 	 echo "$$excl_re"; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	 git ls-tree -r --name-only --full-tree HEAD \
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:04:36 +08:00
										 |  |  | 	 | egrep -v "$$excl_re" \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	 | while read F; do \
 | 
					
						
							|  |  |  | 	       mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
 | 
					
						
							|  |  |  | 	       cp $$F $$TMPDIR/$$DISTDIR/$$F; \
 | 
					
						
							|  |  |  | 	   done); \
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:04:36 +08:00
										 |  |  | 	(cd $$TMPDIR/$$DISTDIR; \
 | 
					
						
							| 
									
										
										
										
											2016-03-08 18:49:26 +08:00
										 |  |  | 	 $(PREPARE_CMD); \
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:04:36 +08:00
										 |  |  | 	 find . -type d -print | xargs chmod 755; \
 | 
					
						
							|  |  |  | 	 find . -type f -print | xargs chmod a+r; \
 | 
					
						
							|  |  |  | 	 find . -type f -perm -0100 -print | xargs chmod a+x); \
 | 
					
						
							|  |  |  | 	(cd $$TMPDIR; $(TAR_COMMAND) $$DISTDIR) \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	| (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
 | 
					
						
							|  |  |  | 	rm -rf $$TMPDIR
 | 
					
						
							|  |  |  | 	cd $(SRCDIR); ls -l $(TARFILE).gz
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | dist:
 | 
					
						
							| 
									
										
										
										
											2016-11-09 07:14:56 +08:00
										 |  |  | 	@$(MAKE) PREPARE_CMD='$(PERL) ./Configure dist' tar
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Helper targets #####################################################
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-08 02:56:20 +08:00
										 |  |  | link-utils: $(BLDDIR)/util/opensslwrap.sh
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-19 09:30:51 +08:00
										 |  |  | $(BLDDIR)/util/opensslwrap.sh: configdata.pm
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	@if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
 | 
					
						
							|  |  |  | 	    mkdir -p "$(BLDDIR)/util"; \
 | 
					
						
							|  |  |  | 	    ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
 | 
					
						
							|  |  |  | 	fi
 | 
					
						
							| 
									
										
										
										
											2016-09-08 02:56:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-19 02:41:57 +08:00
										 |  |  | FORCE:
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Building targets ###################################################
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 09:07:16 +08:00
										 |  |  | libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { shlib_simple($_) } @{$unified_info{libraries}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | libcrypto.pc:
 | 
					
						
							|  |  |  | 	@ ( echo 'prefix=$(INSTALLTOP)'; \
 | 
					
						
							|  |  |  | 	    echo 'exec_prefix=$${prefix}'; \
 | 
					
						
							|  |  |  | 	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
 | 
					
						
							|  |  |  | 	    echo 'includedir=$${prefix}/include'; \
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  | 	    echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	    echo ''; \
 | 
					
						
							|  |  |  | 	    echo 'Name: OpenSSL-libcrypto'; \
 | 
					
						
							|  |  |  | 	    echo 'Description: OpenSSL cryptography library'; \
 | 
					
						
							|  |  |  | 	    echo 'Version: '$(VERSION); \
 | 
					
						
							|  |  |  | 	    echo 'Libs: -L$${libdir} -lcrypto'; \
 | 
					
						
							|  |  |  | 	    echo 'Libs.private: $(EX_LIBS)'; \
 | 
					
						
							|  |  |  | 	    echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | libssl.pc:
 | 
					
						
							|  |  |  | 	@ ( echo 'prefix=$(INSTALLTOP)'; \
 | 
					
						
							|  |  |  | 	    echo 'exec_prefix=$${prefix}'; \
 | 
					
						
							|  |  |  | 	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
 | 
					
						
							|  |  |  | 	    echo 'includedir=$${prefix}/include'; \
 | 
					
						
							|  |  |  | 	    echo ''; \
 | 
					
						
							|  |  |  | 	    echo 'Name: OpenSSL-libssl'; \
 | 
					
						
							|  |  |  | 	    echo 'Description: Secure Sockets Layer and cryptography libraries'; \
 | 
					
						
							|  |  |  | 	    echo 'Version: '$(VERSION); \
 | 
					
						
							|  |  |  | 	    echo 'Requires.private: libcrypto'; \
 | 
					
						
							|  |  |  | 	    echo 'Libs: -L$${libdir} -lssl'; \
 | 
					
						
							|  |  |  | 	    echo 'Libs.private: $(EX_LIBS)'; \
 | 
					
						
							|  |  |  | 	    echo 'Cflags: -I$${includedir}' ) > libssl.pc
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | openssl.pc:
 | 
					
						
							|  |  |  | 	@ ( echo 'prefix=$(INSTALLTOP)'; \
 | 
					
						
							|  |  |  | 	    echo 'exec_prefix=$${prefix}'; \
 | 
					
						
							|  |  |  | 	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
 | 
					
						
							|  |  |  | 	    echo 'includedir=$${prefix}/include'; \
 | 
					
						
							|  |  |  | 	    echo ''; \
 | 
					
						
							|  |  |  | 	    echo 'Name: OpenSSL'; \
 | 
					
						
							|  |  |  | 	    echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
 | 
					
						
							|  |  |  | 	    echo 'Version: '$(VERSION); \
 | 
					
						
							|  |  |  | 	    echo 'Requires: libssl libcrypto' ) > openssl.pc
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-18 02:50:56 +08:00
										 |  |  | configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
 | 
					
						
							| 
									
										
										
										
											2016-02-19 09:30:51 +08:00
										 |  |  | 	@echo "Detected changed: $?"
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	@echo "Reconfiguring..."
 | 
					
						
							| 
									
										
										
										
											2016-11-09 07:14:56 +08:00
										 |  |  | 	$(PERL) $(SRCDIR)/Configure reconf
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	@echo "**************************************************"
 | 
					
						
							|  |  |  | 	@echo "***                                            ***"
 | 
					
						
							|  |  |  | 	@echo "***   Please run the same make command again   ***"
 | 
					
						
							|  |  |  | 	@echo "***                                            ***"
 | 
					
						
							|  |  |  | 	@echo "**************************************************"
 | 
					
						
							|  |  |  | 	@false
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {-
 | 
					
						
							|  |  |  |   use File::Basename;
 | 
					
						
							|  |  |  |   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Helper function to figure out dependencies on libraries
 | 
					
						
							|  |  |  |   # It takes a list of library names and outputs a list of dependencies
 | 
					
						
							|  |  |  |   sub compute_lib_depends {
 | 
					
						
							| 
									
										
										
										
											2016-02-22 20:52:46 +08:00
										 |  |  |       if ($disabled{shared}) {
 | 
					
						
							| 
									
										
										
										
											2017-04-18 22:24:23 +08:00
										 |  |  |           return map { lib($_) } @_;
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  |       }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       # Depending on shared libraries:
 | 
					
						
							|  |  |  |       # On Windows POSIX layers, we depend on {libname}.dll.a
 | 
					
						
							|  |  |  |       # On Unix platforms, we depend on {shlibname}.so
 | 
					
						
							| 
									
										
										
										
											2016-11-10 03:01:51 +08:00
										 |  |  |       return map { $_ =~ /\.a$/ ? $`.$libext : shlib_simple($_) } @_;
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  |   }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  |   sub generatesrc {
 | 
					
						
							|  |  |  |       my %args = @_;
 | 
					
						
							|  |  |  |       my $generator = join(" ", @{$args{generator}});
 | 
					
						
							| 
									
										
										
										
											2016-04-21 20:30:08 +08:00
										 |  |  |       my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
 | 
					
						
							| 
									
										
										
										
											2016-03-10 16:04:09 +08:00
										 |  |  |       my $incs = join("", map { " -I".$_ } @{$args{incs}});
 | 
					
						
							| 
									
										
										
										
											2016-04-21 20:30:08 +08:00
										 |  |  |       my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       if ($args{src} !~ /\.[sS]$/) {
 | 
					
						
							| 
									
										
										
										
											2016-06-14 04:02:11 +08:00
										 |  |  |           if ($args{generator}->[0] =~ m|^.*\.in$|) {
 | 
					
						
							|  |  |  |               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
 | 
					
						
							|  |  |  |                                                    "util", "dofile.pl")),
 | 
					
						
							|  |  |  |                                    rel2abs($config{builddir}));
 | 
					
						
							|  |  |  |               return <<"EOF";
 | 
					
						
							|  |  |  | $args{src}: $args{generator}->[0] $deps
 | 
					
						
							|  |  |  | 	\$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
 | 
					
						
							|  |  |  | 	    "-o$target{build_file}" $generator > \$@
 | 
					
						
							|  |  |  | EOF
 | 
					
						
							|  |  |  | 	  } else {
 | 
					
						
							|  |  |  |               return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:57:35 +08:00
										 |  |  | $args{src}: $args{generator}->[0] $deps
 | 
					
						
							| 
									
										
										
										
											2016-04-21 20:30:08 +08:00
										 |  |  | 	\$(PERL)$generator_incs $generator > \$@
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2016-06-14 04:02:11 +08:00
										 |  |  | 	  }
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  |       } else {
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  |           if ($args{generator}->[0] =~ /\.pl$/) {
 | 
					
						
							| 
									
										
										
										
											2016-04-21 20:30:08 +08:00
										 |  |  |               $generator = 'CC="$(CC)" $(PERL)'.$generator_incs.' '.$generator;
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  |           } elsif ($args{generator}->[0] =~ /\.m4$/) {
 | 
					
						
							| 
									
										
										
										
											2016-04-21 20:30:08 +08:00
										 |  |  |               $generator = 'm4 -B 8192'.$generator_incs.' '.$generator.' >'
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  |           } elsif ($args{generator}->[0] =~ /\.S$/) {
 | 
					
						
							|  |  |  |               $generator = undef;
 | 
					
						
							|  |  |  |           } else {
 | 
					
						
							|  |  |  |               die "Generator type for $args{src} unknown: $generator\n";
 | 
					
						
							|  |  |  |           }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           if (defined($generator)) {
 | 
					
						
							|  |  |  |               # If the target is named foo.S in build.info, we want to
 | 
					
						
							|  |  |  |               # end up generating foo.s in two steps.
 | 
					
						
							|  |  |  |               if ($args{src} =~ /\.S$/) {
 | 
					
						
							|  |  |  |                    (my $target = $args{src}) =~ s|\.S$|.s|;
 | 
					
						
							|  |  |  |                    return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:57:35 +08:00
										 |  |  | $target: $args{generator}->[0] $deps
 | 
					
						
							| 
									
										
										
										
											2016-03-11 18:55:44 +08:00
										 |  |  | 	( trap "rm -f \$@.*" INT 0; \\
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  | 	  $generator \$@.S; \\
 | 
					
						
							| 
									
										
										
										
											2016-06-28 03:24:07 +08:00
										 |  |  | 	  \$(CC) $incs \$(CFLAGS) -E \$@.S | \\
 | 
					
						
							| 
									
										
										
										
											2016-05-03 05:38:11 +08:00
										 |  |  | 	  \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@.i && \\
 | 
					
						
							|  |  |  | 	  mv -f \$@.i \$@ )
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  |               }
 | 
					
						
							|  |  |  |               # Otherwise....
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  |               return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:57:35 +08:00
										 |  |  | $args{src}: $args{generator}->[0] $deps
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  | 	$generator \$@
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  | EOF
 | 
					
						
							|  |  |  |           }
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  |           return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:57:35 +08:00
										 |  |  | $args{src}: $args{generator}->[0] $deps
 | 
					
						
							| 
									
										
										
										
											2016-06-28 03:24:07 +08:00
										 |  |  | 	\$(CC) $incs \$(CFLAGS) -E \$< | \\
 | 
					
						
							| 
									
										
										
										
											2016-05-03 05:38:11 +08:00
										 |  |  | 	\$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2016-03-07 21:38:54 +08:00
										 |  |  |       }
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-11 20:25:48 +08:00
										 |  |  |   # Should one wonder about the end of the Perl snippet, it's because this
 | 
					
						
							|  |  |  |   # second regexp eats up line endings as well, if the removed path is the
 | 
					
						
							|  |  |  |   # last in the line.  We may therefore need to put back a line ending.
 | 
					
						
							| 
									
										
										
										
											2016-02-18 20:04:05 +08:00
										 |  |  |   sub src2obj {
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       my %args = @_;
 | 
					
						
							| 
									
										
										
										
											2016-02-18 20:04:05 +08:00
										 |  |  |       my $obj = $args{obj};
 | 
					
						
							| 
									
										
										
										
											2016-03-20 01:59:48 +08:00
										 |  |  |       my @srcs = map { if ($unified_info{generate}->{$_}) {
 | 
					
						
							|  |  |  |                            (my $x = $_) =~ s/\.S$/.s/; $x
 | 
					
						
							|  |  |  |                        } else {
 | 
					
						
							|  |  |  |                            $_
 | 
					
						
							|  |  |  |                        }
 | 
					
						
							|  |  |  |                      } ( @{$args{srcs}} );
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:19:53 +08:00
										 |  |  |       my $srcs = join(" ",  @srcs);
 | 
					
						
							|  |  |  |       my $deps = join(" ", @srcs, @{$args{deps}});
 | 
					
						
							| 
									
										
										
										
											2016-02-20 05:02:41 +08:00
										 |  |  |       my $incs = join("", map { " -I".$_ } @{$args{incs}});
 | 
					
						
							| 
									
										
										
										
											2016-04-12 22:35:32 +08:00
										 |  |  |       unless ($disabled{zlib}) {
 | 
					
						
							|  |  |  |           if ($withargs{zlib_include}) {
 | 
					
						
							|  |  |  |               $incs .= " -I".$withargs{zlib_include};
 | 
					
						
							|  |  |  |           }
 | 
					
						
							|  |  |  |       }
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  |       my $cc = '$(CC)';
 | 
					
						
							|  |  |  |       my $cflags = '$(CFLAGS)';
 | 
					
						
							|  |  |  |       if (grep /\.(cc|cpp)$/, @srcs) {
 | 
					
						
							|  |  |  |           $cc = '$(CXX)';
 | 
					
						
							|  |  |  |           $cflags = '$(CXXFLAGS)';
 | 
					
						
							|  |  |  |           $cflags .= ' ' . { lib => '$(LIB_CXXFLAGS)',
 | 
					
						
							|  |  |  |                              dso => '$(DSO_CXXFLAGS)',
 | 
					
						
							|  |  |  |                              bin => '$(BIN_CXXFLAGS)' } -> {$args{intent}};
 | 
					
						
							|  |  |  |       } else {
 | 
					
						
							|  |  |  |           $cflags .= ' ' . { lib => '$(LIB_CFLAGS)',
 | 
					
						
							|  |  |  |                              dso => '$(DSO_CFLAGS)',
 | 
					
						
							|  |  |  |                              bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
 | 
					
						
							|  |  |  |       }
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       my $makedepprog = $config{makedepprog};
 | 
					
						
							| 
									
										
										
										
											2016-09-04 14:10:22 +08:00
										 |  |  |       my $recipe = <<"EOF";
 | 
					
						
							|  |  |  | $obj$objext: $deps
 | 
					
						
							|  |  |  | EOF
 | 
					
						
							|  |  |  |       if (!$disabled{makedepend} && $makedepprog !~ /\/makedepend/) {
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  |           $recipe .= <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | 	$cc $incs $cflags -MMD -MF $obj$depext.tmp -MT \$\@ -c -o \$\@ $srcs
 | 
					
						
							| 
									
										
										
										
											2016-09-04 14:10:22 +08:00
										 |  |  | 	\@touch $obj$depext.tmp
 | 
					
						
							|  |  |  | 	\@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
 | 
					
						
							|  |  |  | 		rm -f $obj$depext.tmp; \\
 | 
					
						
							| 
									
										
										
										
											2016-03-15 16:05:20 +08:00
										 |  |  | 	else \\
 | 
					
						
							| 
									
										
										
										
											2016-09-04 14:10:22 +08:00
										 |  |  | 		mv $obj$depext.tmp $obj$depext; \\
 | 
					
						
							| 
									
										
										
										
											2016-03-11 16:26:49 +08:00
										 |  |  | 	fi
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2016-09-04 14:10:22 +08:00
										 |  |  |       } else {
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  |           $recipe .= <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | 	$cc $incs $cflags -c -o \$\@ $srcs
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2016-09-04 14:10:22 +08:00
										 |  |  |           if (!$disabled{makedepend} && $makedepprog =~ /\/makedepend/) {
 | 
					
						
							|  |  |  |               $recipe .= <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | 	-\$(MAKEDEPEND) -f- -o"|\$\@" -- $incs $cflags -- $srcs \\
 | 
					
						
							| 
									
										
										
										
											2016-09-04 14:10:22 +08:00
										 |  |  | 	    >$obj$depext.tmp 2>/dev/null
 | 
					
						
							|  |  |  | 	-\$(PERL) -i -pe 's/^.*\\|//; s/ \\/(\\\\.|[^ ])*//; \$\$_ = undef if (/: *\$\$/ || /^(#.*| *)\$\$/); \$\$_.="\\n" unless !defined(\$\$_) or /\\R\$\$/g;' $obj$depext.tmp
 | 
					
						
							| 
									
										
										
										
											2016-03-15 16:05:20 +08:00
										 |  |  | 	\@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
 | 
					
						
							| 
									
										
										
										
											2016-03-11 16:26:49 +08:00
										 |  |  | 		rm -f $obj$depext.tmp; \\
 | 
					
						
							| 
									
										
										
										
											2016-03-15 16:05:20 +08:00
										 |  |  | 	else \\
 | 
					
						
							|  |  |  | 		mv $obj$depext.tmp $obj$depext; \\
 | 
					
						
							| 
									
										
										
										
											2016-02-28 07:20:50 +08:00
										 |  |  | 	fi
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | EOF
 | 
					
						
							| 
									
										
										
										
											2016-09-04 14:10:22 +08:00
										 |  |  |           }
 | 
					
						
							| 
									
										
										
										
											2016-03-09 08:17:27 +08:00
										 |  |  |       }
 | 
					
						
							|  |  |  |       return $recipe;
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |   }
 | 
					
						
							|  |  |  |   # On Unix, we build shlibs from static libs, so we're ignoring the
 | 
					
						
							|  |  |  |   # object file array.  We *know* this routine is only called when we've
 | 
					
						
							|  |  |  |   # configure 'shared'.
 | 
					
						
							|  |  |  |   sub libobj2shlib {
 | 
					
						
							|  |  |  |       my %args = @_;
 | 
					
						
							|  |  |  |       my $lib = $args{lib};
 | 
					
						
							|  |  |  |       my $shlib = $args{shlib};
 | 
					
						
							|  |  |  |       my $libd = dirname($lib);
 | 
					
						
							|  |  |  |       my $libn = basename($lib);
 | 
					
						
							|  |  |  |       (my $libname = $libn) =~ s/^lib//;
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  |       my $linklibs = join("", map { my $d = dirname($_);
 | 
					
						
							|  |  |  |                                     my $f = basename($_);
 | 
					
						
							|  |  |  |                                     (my $l = $f) =~ s/^lib//;
 | 
					
						
							|  |  |  |                                     " -L$d -l$l" } @{$args{deps}});
 | 
					
						
							|  |  |  |       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       my $shlib_target = $target{shared_target};
 | 
					
						
							|  |  |  |       my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  |       my $target = shlib_simple($lib);
 | 
					
						
							| 
									
										
										
										
											2017-07-22 00:04:51 +08:00
										 |  |  |       my $target_full = shlib($lib);
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       return <<"EOF"
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  | # With a build on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
 | 
					
						
							|  |  |  | # that two files get produced, {shlibname}.dll and {libname}.dll.a.
 | 
					
						
							|  |  |  | # With all other Unix platforms, we often build a shared library with the
 | 
					
						
							|  |  |  | # SO version built into the file name and a symlink without the SO version
 | 
					
						
							|  |  |  | # It's not necessary to have both as targets.  The choice falls on the
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  | # simplest, {libname}\$(SHLIB_EXT_IMPORT) for Windows POSIX layers and
 | 
					
						
							|  |  |  | # {libname}\$(SHLIB_EXT_SIMPLE) for the Unix platforms.
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  | $target: $lib$libext $deps $ordinalsfile
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	\$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
 | 
					
						
							| 
									
										
										
										
											2017-06-29 23:40:19 +08:00
										 |  |  | 		ECHO=\$(ECHO) \\
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  | 		PLATFORM=\$(PLATFORM) \\
 | 
					
						
							| 
									
										
										
										
											2016-05-27 23:18:57 +08:00
										 |  |  | 		PERL="\$(PERL)" SRCDIR='\$(SRCDIR)' DSTDIR="$libd" \\
 | 
					
						
							| 
									
										
										
										
											2016-03-12 17:46:14 +08:00
										 |  |  | 		INSTALLTOP='\$(INSTALLTOP)' LIBDIR='\$(LIBDIR)' \\
 | 
					
						
							|  |  |  | 		LIBDEPS='\$(PLIB_LDFLAGS) '"$linklibs"' \$(EX_LIBS)' \\
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  | 		LIBNAME=$libname SHLIBVERSION=\$(SHLIB_VERSION_NUMBER) \\
 | 
					
						
							| 
									
										
										
										
											2017-07-22 00:04:51 +08:00
										 |  |  | 		STLIBNAME=$lib$libext \\
 | 
					
						
							|  |  |  | 		SHLIBNAME=$target SHLIBNAME_FULL=$target_full \\
 | 
					
						
							| 
									
										
										
										
											2016-03-12 17:46:14 +08:00
										 |  |  | 		CC='\$(CC)' CFLAGS='\$(CFLAGS) \$(LIB_CFLAGS)' \\
 | 
					
						
							| 
									
										
										
										
											2017-07-22 00:04:51 +08:00
										 |  |  | 		LDFLAGS='\$(LDFLAGS)' SHARED_LDFLAGS='\$(LIB_LDFLAGS)' \\
 | 
					
						
							| 
									
										
										
										
											2016-05-16 23:08:13 +08:00
										 |  |  | 		RC='\$(RC)' SHARED_RCFLAGS='\$(RCFLAGS)' \\
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:02:52 +08:00
										 |  |  | 		link_shlib.$shlib_target
 | 
					
						
							| 
									
										
										
										
											2016-01-30 12:45:29 +08:00
										 |  |  | EOF
 | 
					
						
							|  |  |  | 	  . (windowsdll() ? <<"EOF" : "");
 | 
					
						
							| 
									
										
										
										
											2017-07-19 16:13:41 +08:00
										 |  |  | 	rm -f apps/$shlib'\$(SHLIB_EXT)'
 | 
					
						
							|  |  |  | 	rm -f test/$shlib'\$(SHLIB_EXT)'
 | 
					
						
							|  |  |  | 	cp -p $shlib'\$(SHLIB_EXT)' apps/
 | 
					
						
							|  |  |  | 	cp -p $shlib'\$(SHLIB_EXT)' test/
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | EOF
 | 
					
						
							|  |  |  |   }
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:45:54 +08:00
										 |  |  |   sub obj2dso {
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       my %args = @_;
 | 
					
						
							| 
									
										
										
										
											2017-07-22 00:04:51 +08:00
										 |  |  |       my $dso = $args{lib};
 | 
					
						
							|  |  |  |       my $dsod = dirname($dso);
 | 
					
						
							|  |  |  |       my $dson = basename($dso);
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       my $shlibdeps = join("", map { my $d = dirname($_);
 | 
					
						
							|  |  |  |                                      my $f = basename($_);
 | 
					
						
							|  |  |  |                                      (my $l = $f) =~ s/^lib//;
 | 
					
						
							|  |  |  |                                      " -L$d -l$l" } @{$args{deps}});
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  |       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       my $shlib_target = $target{shared_target};
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  |       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
 | 
					
						
							| 
									
										
										
										
											2017-07-22 00:04:51 +08:00
										 |  |  |       my $target = dso($dso);
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-02-16 00:42:14 +08:00
										 |  |  | $target: $objs $deps
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	\$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  | 		PLATFORM=\$(PLATFORM) \\
 | 
					
						
							| 
									
										
										
										
											2017-07-22 00:04:51 +08:00
										 |  |  | 		PERL="\$(PERL)" SRCDIR='\$(SRCDIR)' DSTDIR="$dsod" \\
 | 
					
						
							| 
									
										
										
										
											2016-03-12 17:46:14 +08:00
										 |  |  | 		LIBDEPS='\$(PLIB_LDFLAGS) '"$shlibdeps"' \$(EX_LIBS)' \\
 | 
					
						
							| 
									
										
										
										
											2017-07-22 00:04:51 +08:00
										 |  |  | 		SHLIBNAME_FULL=$target LDFLAGS='\$(LDFLAGS)' \\
 | 
					
						
							| 
									
										
										
										
											2016-03-12 17:46:14 +08:00
										 |  |  | 		CC='\$(CC)' CFLAGS='\$(CFLAGS) \$(DSO_CFLAGS)' \\
 | 
					
						
							|  |  |  | 		SHARED_LDFLAGS='\$(DSO_LDFLAGS)' \\
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		LIBEXTRAS="$objs" \\
 | 
					
						
							| 
									
										
										
										
											2016-02-16 01:02:52 +08:00
										 |  |  | 		link_dso.$shlib_target
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | EOF
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  |   sub obj2lib {
 | 
					
						
							|  |  |  |       my %args = @_;
 | 
					
						
							| 
									
										
										
										
											2017-04-18 22:24:23 +08:00
										 |  |  |       (my $lib = $args{lib}) =~ s/\.a$//;
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  |       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  | $lib$libext: $objs
 | 
					
						
							| 
									
										
										
										
											2016-04-03 20:11:12 +08:00
										 |  |  | 	\$(AR) \$\@ \$\?
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	\$(RANLIB) \$\@ || echo Never mind.
 | 
					
						
							|  |  |  | EOF
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  |   sub obj2bin {
 | 
					
						
							|  |  |  |       my %args = @_;
 | 
					
						
							|  |  |  |       my $bin = $args{bin};
 | 
					
						
							|  |  |  |       my $bind = dirname($bin);
 | 
					
						
							|  |  |  |       my $binn = basename($bin);
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  |       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
 | 
					
						
							| 
									
										
										
										
											2016-02-11 20:10:11 +08:00
										 |  |  |       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
 | 
					
						
							| 
									
										
										
										
											2016-11-10 03:01:51 +08:00
										 |  |  |       my $linklibs = join("", map { if ($_ =~ /\.a$/) {
 | 
					
						
							|  |  |  |                                         " $_";
 | 
					
						
							|  |  |  |                                     } else {
 | 
					
						
							|  |  |  |                                         my $d = dirname($_);
 | 
					
						
							|  |  |  |                                         my $f = basename($_);
 | 
					
						
							|  |  |  |                                         $d = "." if $d eq $f;
 | 
					
						
							|  |  |  |                                         (my $l = $f) =~ s/^lib//;
 | 
					
						
							|  |  |  |                                         " -L$d -l$l"
 | 
					
						
							|  |  |  |                                     }
 | 
					
						
							|  |  |  |                                   } @{$args{deps}});
 | 
					
						
							| 
									
										
										
										
											2016-02-22 20:52:46 +08:00
										 |  |  |       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  |       my $cc = '$(CC)';
 | 
					
						
							|  |  |  |       my $cflags = '$(CFLAGS) $(BIN_CFLAGS)';
 | 
					
						
							|  |  |  |       if (grep /_cc$/, @{$args{objs}}) {
 | 
					
						
							|  |  |  |           $cc = '$(CXX)';
 | 
					
						
							|  |  |  |           $cflags = '$(CXXFLAGS) $(BIN_CXXFLAGS)';
 | 
					
						
							|  |  |  |       }
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  |       return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  | $bin$exeext: $objs $deps
 | 
					
						
							|  |  |  | 	\$(RM) $bin$exeext
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	\$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
 | 
					
						
							| 
									
										
										
										
											2016-05-27 23:18:57 +08:00
										 |  |  | 		PERL="\$(PERL)" SRCDIR=\$(SRCDIR) \\
 | 
					
						
							| 
									
										
										
										
											2016-02-20 23:27:27 +08:00
										 |  |  | 		APPNAME=$bin$exeext OBJECTS="$objs" \\
 | 
					
						
							| 
									
										
										
										
											2016-03-12 17:46:14 +08:00
										 |  |  | 		LIBDEPS='\$(PLIB_LDFLAGS) '"$linklibs"' \$(EX_LIBS)' \\
 | 
					
						
							| 
									
										
										
										
											2016-10-12 21:30:43 +08:00
										 |  |  | 		CC='$cc' CFLAGS='$cflags' \\
 | 
					
						
							| 
									
										
										
										
											2016-10-12 23:05:35 +08:00
										 |  |  | 		LDFLAGS='\$(LDFLAGS)' \\
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 		link_app.$shlib_target
 | 
					
						
							|  |  |  | EOF
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  |   sub in2script {
 | 
					
						
							|  |  |  |       my %args = @_;
 | 
					
						
							|  |  |  |       my $script = $args{script};
 | 
					
						
							|  |  |  |       my $sources = join(" ", @{$args{sources}});
 | 
					
						
							|  |  |  |       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
 | 
					
						
							|  |  |  |                                            "util", "dofile.pl")),
 | 
					
						
							|  |  |  |                            rel2abs($config{builddir}));
 | 
					
						
							|  |  |  |       return <<"EOF";
 | 
					
						
							| 
									
										
										
										
											2016-02-18 20:04:05 +08:00
										 |  |  | $script: $sources
 | 
					
						
							| 
									
										
										
										
											2016-02-14 13:55:45 +08:00
										 |  |  | 	\$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
 | 
					
						
							| 
									
										
										
										
											2016-02-14 15:47:47 +08:00
										 |  |  | 	    "-o$target{build_file}" $sources > "$script"
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | 	chmod a+x $script
 | 
					
						
							| 
									
										
										
										
											2016-04-03 04:26:38 +08:00
										 |  |  | EOF
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  |   sub generatedir {
 | 
					
						
							|  |  |  |       my %args = @_;
 | 
					
						
							|  |  |  |       my $dir = $args{dir};
 | 
					
						
							|  |  |  |       my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
 | 
					
						
							|  |  |  |       my @actions = ();
 | 
					
						
							|  |  |  |       my %extinfo = ( dso => $dsoext,
 | 
					
						
							|  |  |  |                       lib => $libext,
 | 
					
						
							|  |  |  |                       bin => $exeext );
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       foreach my $type (("dso", "lib", "bin", "script")) {
 | 
					
						
							|  |  |  |           next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
 | 
					
						
							| 
									
										
										
										
											2016-06-28 20:02:44 +08:00
										 |  |  |           # For lib object files, we could update the library.  However, it
 | 
					
						
							|  |  |  |           # was decided that it's enough to build the directory local object
 | 
					
						
							|  |  |  |           # files, so we don't need to add any actions, and the dependencies
 | 
					
						
							|  |  |  |           # are already taken care of.
 | 
					
						
							|  |  |  |           if ($type ne "lib") {
 | 
					
						
							| 
									
										
										
										
											2016-04-03 04:26:38 +08:00
										 |  |  |               foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
 | 
					
						
							|  |  |  |                   if (dirname($prod) eq $dir) {
 | 
					
						
							|  |  |  |                       push @deps, $prod.$extinfo{$type};
 | 
					
						
							|  |  |  |                   } else {
 | 
					
						
							|  |  |  |                       push @actions, "\t@ : No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
 | 
					
						
							|  |  |  |                   }
 | 
					
						
							|  |  |  |               }
 | 
					
						
							|  |  |  |           }
 | 
					
						
							|  |  |  |       }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       my $deps = join(" ", @deps);
 | 
					
						
							|  |  |  |       my $actions = join("\n", "", @actions);
 | 
					
						
							|  |  |  |       return <<"EOF";
 | 
					
						
							|  |  |  | $args{dir} $args{dir}/: $deps$actions
 | 
					
						
							| 
									
										
										
										
											2016-01-30 10:25:40 +08:00
										 |  |  | EOF
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  |   ""    # Important!  This becomes part of the template result.
 | 
					
						
							|  |  |  | -}
 |