2 ## Makefile for OpenSSL
4 ## {- join("\n## ", @autowarntext) -}
6 our $objext = $target{obj_extension} || ".o";
7 our $depext = $target{dep_extension} || ".d";
8 our $exeext = $target{exe_extension} || "";
9 our $libext = $target{lib_extension} || ".a";
10 our $shlibext = $target{shared_extension} || ".so";
11 our $shlibextsimple = $target{shared_extension_simple} || ".so";
12 our $shlibextimport = $target{shared_import_extension} || "";
13 our $dsoext = $target{dso_extension} || ".so";
15 sub windowsdll { $config{target} =~ /^(?:Cygwin|mingw)/ }
17 our $sover_dirname = $config{shlib_version_number};
18 $sover_dirname =~ s|\.|_|g
19 if $config{target} =~ /^mingw/;
21 # shlib and shlib_simple both take a static library name and figure
22 # out what the shlib name should be.
24 # When OpenSSL is configured "no-shared", these functions will just
25 # return empty lists, making them suitable to join().
27 # With Windows DLL producers, shlib($libname) will return the shared
28 # library name (which usually is different from the static library
29 # name) with the default shared extension appended to it, while
30 # shlib_simple($libname) will return the static library name with
31 # the shared extension followed by ".a" appended to it. The former
32 # result is used as the runtime shared library while the latter is
33 # used as the DLL import library.
35 # On all Unix systems, shlib($libname) will return the library name
36 # with the default shared extension, while shlib_simple($libname)
37 # will return the name from shlib($libname) with any SO version number
38 # removed. On some systems, they may therefore return the exact same
42 return () if $disabled{shared} || $lib =~ /\.a$/;
43 return $unified_info{sharednames}->{$lib} . '$(SHLIB_EXT)';
47 return () if $disabled{shared} || $lib =~ /\.a$/;
50 return $lib . '$(SHLIB_EXT_IMPORT)';
52 return $lib . '$(SHLIB_EXT_SIMPLE)';
55 # Easy fixing of static library names
57 (my $lib = shift) =~ s/\.a$//;
58 return $lib . $libext;
61 # dso is a complement to shlib / shlib_simple that returns the
62 # given libname with the simple shared extension (possible SO version
63 # removed). This differs from shlib_simple() by being unconditional.
67 return $engine . $dsoext;
69 # This makes sure things get built in the order they need
74 return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
78 PLATFORM={- $config{target} -}
79 OPTIONS={- $config{options} -}
80 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
81 SRCDIR={- $config{sourcedir} -}
82 BLDDIR={- $config{builddir} -}
84 VERSION={- $config{version} -}
85 MAJOR={- $config{major} -}
86 MINOR={- $config{minor} -}
87 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
88 SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
89 SHLIB_MAJOR={- $config{shlib_major} -}
90 SHLIB_MINOR={- $config{shlib_minor} -}
91 SHLIB_TARGET={- $target{shared_target} -}
92 SHLIB_EXT={- $shlibext -}
93 SHLIB_EXT_SIMPLE={- $shlibextsimple -}
94 SHLIB_EXT_IMPORT={- $shlibextimport -}
96 LIBS={- join(" ", map { lib($_) } @{$unified_info{libraries}}) -}
97 SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
98 SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{libraries}}) -}
99 ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
100 PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{programs}}) -}
101 SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
102 {- output_off() if $disabled{makedepend}; "" -}
103 DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
104 grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
105 keys %{$unified_info{sources}}); -}
106 {- output_on() if $disabled{makedepend}; "" -}
107 GENERATED_MANDATORY={- join(" ", @{$unified_info{depends}->{""}} ) -}
108 GENERATED={- join(" ",
109 ( map { (my $x = $_) =~ s|\.S$|\.s|; $x }
110 grep { defined $unified_info{generate}->{$_} }
111 map { @{$unified_info{sources}->{$_}} }
112 grep { /\.o$/ } keys %{$unified_info{sources}} ),
113 ( grep { /\.h$/ } keys %{$unified_info{generate}} )) -}
115 INSTALL_LIBS={- join(" ", map { lib($_) } @{$unified_info{install}->{libraries}}) -}
116 INSTALL_SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{install}->{libraries}}) -}
117 INSTALL_SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{install}->{libraries}}) -}
118 INSTALL_ENGINES={- join(" ", map { dso($_) } @{$unified_info{install}->{engines}}) -}
119 INSTALL_PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{install}->{programs}}) -}
120 {- output_off() if $disabled{apps}; "" -}
121 BIN_SCRIPTS=$(BLDDIR)/tools/c_rehash
122 MISC_SCRIPTS=$(BLDDIR)/apps/CA.pl $(BLDDIR)/apps/tsget
123 {- output_on() if $disabled{apps}; "" -}
125 APPS_OPENSSL={- use File::Spec::Functions;
126 catfile("apps","openssl") -}
128 # DESTDIR is for package builders so that they can configure for, say,
129 # /usr/ and yet have everything installed to /tmp/somedir/usr/.
130 # Normally it is left empty.
133 # Do not edit these manually. Use Configure with --prefix or --openssldir
134 # to change this! Short explanation in the top comment in Configure
135 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
137 our $prefix = $config{prefix} || "/usr/local";
140 # The logic here is that if no --openssldir was given,
141 # OPENSSLDIR will get the value from $prefix plus "/ssl".
142 # If --openssldir was given and the value is an absolute
143 # path, OPENSSLDIR will get its value without change.
144 # If the value from --openssldir is a relative path,
145 # OPENSSLDIR will get $prefix with the --openssldir
146 # value appended as a subdirectory.
148 use File::Spec::Functions;
150 $config{openssldir} ?
151 (file_name_is_absolute($config{openssldir}) ?
153 : catdir($prefix, $config{openssldir}))
154 : catdir($prefix, "ssl");
157 # if $prefix/lib$target{multilib} is not an existing
158 # directory, then assume that it's not searched by linker
159 # automatically, in which case adding $target{multilib} suffix
160 # causes more grief than we're ready to tolerate, so don't...
162 -d "$prefix/lib$target{multilib}" ? $target{multilib} : "";
163 our $libdir = $config{libdir} || "lib$multilib";
165 ENGINESDIR={- use File::Spec::Functions;
166 catdir($prefix,$libdir,"engines-$sover_dirname") -}
168 # Convenience variable for those who want to set the rpath in shared
169 # libraries and applications
170 LIBRPATH=$(INSTALLTOP)/$(LIBDIR)
172 MANDIR=$(INSTALLTOP)/share/man
173 DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
174 HTMLDIR=$(DOCDIR)/html
176 # MANSUFFIX is for the benefit of anyone who may want to have a suffix
177 # appended after the manpage file section number. "ssl" is popular,
178 # resulting in files such as config.5ssl rather than config.5.
182 # For "optional" echo messages, to get "real" silence
185 CROSS_COMPILE= {- $config{cross_compile_prefix} -}
186 CC= $(CROSS_COMPILE){- $target{cc} -}
187 CFLAGS={- our $cflags2 = join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $target{cflags} -} {- $config{cflags} -}
188 CFLAGS_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -}
189 CXX= $(CROSS_COMPILE){- $target{cxx} -}
190 CXXFLAGS={- our $cxxflags2 = join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $target{cxxflags} -} {- $config{cxxflags} -} -std=c++11
191 LDFLAGS= {- $target{lflags} -}
192 PLIB_LDFLAGS= {- $target{plib_lflags} -}
193 EX_LIBS= {- $target{ex_libs} -} {- $config{ex_libs} -}
194 LIB_CFLAGS={- $target{shared_cflag} || "" -}
195 LIB_CXXFLAGS={- $target{shared_cxxflag} || "" -}
196 LIB_LDFLAGS={- $target{shared_ldflag}." ".$config{shared_ldflag} -}
197 DSO_CFLAGS={- $target{shared_cflag} || "" -}
198 DSO_CXXFLAGS={- $target{shared_cxxflag} || "" -}
199 DSO_LDFLAGS=$(LIB_LDFLAGS)
200 BIN_CFLAGS={- $target{bin_cflags} -}
201 BIN_CXXFLAGS={- $target{bin_cxxflag} || "" -}
203 PERL={- $config{perl} -}
205 ARFLAGS= {- $target{arflags} -}
206 AR=$(CROSS_COMPILE){- $target{ar} || "ar" -} $(ARFLAGS) r
207 RANLIB= {- $target{ranlib} -}
208 NM= $(CROSS_COMPILE){- $target{nm} || "nm" -}
209 RCFLAGS={- $target{shared_rcflag} -}
210 RC= $(CROSS_COMPILE){- $target{rc} || "windres" -}
213 TAR= {- $target{tar} || "tar" -}
214 TARFLAGS= {- $target{tarflags} -}
215 MAKEDEPEND={- $config{makedepprog} -}
218 NAME= $(BASENAME)-$(VERSION)
219 TARFILE= ../$(NAME).tar
221 # We let the C compiler driver to take care of .s files. This is done in
222 # order to be excused from maintaining a separate set of architecture
223 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
224 # gcc, then the driver will automatically translate it to -xarch=v8plus
225 # and pass it down to assembler.
228 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
230 # For x86 assembler: Set PROCESSOR to 386 if you want to support
232 PROCESSOR= {- $config{processor} -}
234 # We want error [and other] messages in English. Trouble is that make(1)
235 # doesn't pass macros down as environment variables unless there already
236 # was corresponding variable originally set. In other words we can only
237 # reassign environment variables, but not set new ones, not in portable
238 # manner that is. That's why we reassign several, just to be sure...
243 # The main targets ###################################################
245 {- dependmagic('all'); -}: build_libs_nodep build_engines_nodep build_programs_nodep link-utils
246 {- dependmagic('build_libs'); -}: build_libs_nodep
247 {- dependmagic('build_engines'); -}: build_engines_nodep
248 {- dependmagic('build_programs'); -}: build_programs_nodep
250 build_generated: $(GENERATED_MANDATORY)
251 build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
252 build_engines_nodep: $(ENGINES)
253 build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
255 # Kept around for backward compatibility
256 build_apps build_tests: build_programs
258 # Convenience target to prebuild all generated files, not just the mandatory
260 build_all_generated: $(GENERATED_MANDATORY) $(GENERATED)
263 {- dependmagic('tests'); -}: build_programs_nodep build_engines_nodep link-utils
264 @ : {- output_off() if $disabled{tests}; "" -}
266 SRCTOP=../$(SRCDIR) \
267 BLDTOP=../$(BLDDIR) \
269 EXE_EXT={- $exeext -} \
270 OPENSSL_ENGINES=../$(BLDDIR)/engines \
271 OPENSSL_DEBUG_MEMORY=on \
272 $(PERL) ../$(SRCDIR)/test/run_tests.pl $(TESTS) )
273 @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
274 @echo "Tests are not supported with your chosen Configure options"
275 @ : {- output_on() if !$disabled{tests}; "" -}
278 @ : {- output_off() if $disabled{tests}; "" -}
279 @SRCTOP="$(SRCDIR)" \
280 $(PERL) $(SRCDIR)/test/run_tests.pl list
281 @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
282 @echo "Tests are not supported with your chosen Configure options"
283 @ : {- output_on() if !$disabled{tests}; "" -}
285 install: install_sw install_ssldirs install_docs
287 uninstall: uninstall_docs uninstall_sw
290 @set -e; for s in $(SHLIB_INFO); do \
291 s1=`echo "$$s" | cut -f1 -d";"`; \
292 s2=`echo "$$s" | cut -f2 -d";"`; \
293 $(ECHO) $(RM) $$s1; \
295 if [ "$$s1" != "$$s2" ]; then \
296 $(ECHO) $(RM) $$s2; \
304 $(RM) $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
306 -$(RM) `find . -name '*{- $depext -}' -a \! -path "./.git/*"`
307 -$(RM) `find . -name '*{- $objext -}' -a \! -path "./.git/*"`
309 $(RM) tags TAGS doc-nits
311 $(RM) openssl.pc libcrypto.pc libssl.pc
312 -$(RM) `find . -type l -a \! -path "./.git/*"`
319 # We check if any depfile is newer than Makefile and decide to
320 # concatenate only if that is true.
322 @: {- output_off() if $disabled{makedepend}; "" -}
323 @if egrep "^# DO NOT DELETE THIS LINE" Makefile >/dev/null && [ -z "`find $(DEPS) -newer Makefile 2>/dev/null; exit 0`" ]; then :; else \
324 ( $(PERL) -pe 'exit 0 if /^# DO NOT DELETE THIS LINE.*/' < Makefile; \
325 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.'; \
327 for f in $(DEPS); do \
328 if [ -f $$f ]; then cat $$f; fi; \
329 done ) > Makefile.new; \
330 if cmp Makefile.new Makefile >/dev/null 2>&1; then \
331 rm -f Makefile.new; \
333 mv -f Makefile.new Makefile; \
336 @: {- output_on() if $disabled{makedepend}; "" -}
338 # Install helper targets #############################################
340 install_sw: all install_dev install_engines install_runtime
342 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
344 install_docs: install_man_docs install_html_docs
346 uninstall_docs: uninstall_man_docs uninstall_html_docs
347 $(RM) -r -v $(DESTDIR)$(DOCDIR)
350 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
351 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
352 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
353 @set -e; for x in dummy $(MISC_SCRIPTS); do \
354 if [ "$$x" = "dummy" ]; then continue; fi; \
356 $(ECHO) "install $$x -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
357 cp $$x $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
358 chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
359 mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
360 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
362 @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
363 @cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
364 @chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
365 @mv -f $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
366 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
367 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
368 cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
369 chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
371 @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
372 @cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
373 @chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
374 @mv -f $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist
375 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
376 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
377 cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
378 chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
382 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
383 @$(ECHO) "*** Installing development files"
384 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
385 @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
386 @$(ECHO) "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
387 @cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
388 @chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
389 @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
390 @set -e; for i in $(SRCDIR)/include/openssl/*.h \
391 $(BLDDIR)/include/openssl/*.h; do \
393 $(ECHO) "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
394 cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
395 chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
397 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
398 @set -e; for l in $(INSTALL_LIBS); do \
400 $(ECHO) "install $$l -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
401 cp $$l $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
402 $(RANLIB) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
403 chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
404 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new \
405 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
407 @ : {- output_off() if $disabled{shared}; "" -}
408 @set -e; for s in $(INSTALL_SHLIB_INFO); do \
409 s1=`echo "$$s" | cut -f1 -d";"`; \
410 s2=`echo "$$s" | cut -f2 -d";"`; \
411 fn1=`basename $$s1`; \
412 fn2=`basename $$s2`; \
413 : {- output_off() if windowsdll(); "" -}; \
414 $(ECHO) "install $$s1 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
415 cp $$s1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
416 chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
417 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new \
418 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
419 if [ "$$fn1" != "$$fn2" ]; then \
420 $(ECHO) "link $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
421 ln -sf $$fn1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
423 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
424 $(ECHO) "install $$s2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
425 cp $$s2 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
426 chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
427 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new \
428 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
429 : {- output_on() unless windowsdll(); "" -}; \
431 @ : {- output_on() if $disabled{shared}; "" -}
432 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
433 @$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc"
434 @cp libcrypto.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
435 @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
436 @$(ECHO) "install libssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc"
437 @cp libssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
438 @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
439 @$(ECHO) "install openssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc"
440 @cp openssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
441 @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
444 @$(ECHO) "*** Uninstalling development files"
445 @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
446 @$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
447 @$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
448 @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
449 @set -e; for i in $(SRCDIR)/include/openssl/*.h \
450 $(BLDDIR)/include/openssl/*.h; do \
452 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
453 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
455 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
456 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
457 @set -e; for l in $(INSTALL_LIBS); do \
459 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
460 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
462 @ : {- output_off() if $disabled{shared}; "" -}
463 @set -e; for s in $(INSTALL_SHLIB_INFO); do \
464 s1=`echo "$$s" | cut -f1 -d";"`; \
465 s2=`echo "$$s" | cut -f2 -d";"`; \
466 fn1=`basename $$s1`; \
467 fn2=`basename $$s2`; \
468 : {- output_off() if windowsdll(); "" -}; \
469 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
470 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
471 if [ "$$fn1" != "$$fn2" ]; then \
472 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
473 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
475 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
476 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
477 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
478 : {- output_on() unless windowsdll(); "" -}; \
480 @ : {- output_on() if $disabled{shared}; "" -}
481 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
482 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
483 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
484 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
485 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
488 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
489 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
490 @$(ECHO) "*** Installing engines"
491 @set -e; for e in dummy $(INSTALL_ENGINES); do \
492 if [ "$$e" = "dummy" ]; then continue; fi; \
494 $(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
495 cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
496 chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
497 mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
498 $(DESTDIR)$(ENGINESDIR)/$$fn; \
502 @$(ECHO) "*** Uninstalling engines"
503 @set -e; for e in dummy $(INSTALL_ENGINES); do \
504 if [ "$$e" = "dummy" ]; then continue; fi; \
506 if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
509 $(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
510 $(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
512 -$(RMDIR) $(DESTDIR)$(ENGINESDIR)
515 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
516 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
517 @ : {- output_off() if windowsdll(); "" -}
518 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
519 @ : {- output_on() if windowsdll(); "" -}
520 @$(ECHO) "*** Installing runtime files"
521 @set -e; for s in dummy $(INSTALL_SHLIBS); do \
522 if [ "$$s" = "dummy" ]; then continue; fi; \
524 : {- output_off() unless windowsdll(); "" -}; \
525 $(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
526 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
527 chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
528 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
529 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
530 : {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
531 $(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
532 cp $$s $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
533 chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
534 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new \
535 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
536 : {- output_on() if windowsdll(); "" -}; \
538 @set -e; for x in dummy $(INSTALL_PROGRAMS); do \
539 if [ "$$x" = "dummy" ]; then continue; fi; \
541 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
542 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
543 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
544 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
545 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
547 @set -e; for x in dummy $(BIN_SCRIPTS); do \
548 if [ "$$x" = "dummy" ]; then continue; fi; \
550 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
551 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
552 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
553 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
554 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
558 @$(ECHO) "*** Uninstalling runtime files"
559 @set -e; for x in dummy $(INSTALL_PROGRAMS); \
561 if [ "$$x" = "dummy" ]; then continue; fi; \
563 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
564 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
566 @set -e; for x in dummy $(BIN_SCRIPTS); \
568 if [ "$$x" = "dummy" ]; then continue; fi; \
570 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
571 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
573 @ : {- output_off() unless windowsdll(); "" -}
574 @set -e; for s in dummy $(INSTALL_SHLIBS); do \
575 if [ "$$s" = "dummy" ]; then continue; fi; \
577 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
578 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
580 @ : {- output_on() unless windowsdll(); "" -}
581 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
585 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
586 @$(ECHO) "*** Installing manpages"
587 $(PERL) $(SRCDIR)/util/process_docs.pl \
588 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX)
591 @$(ECHO) "*** Uninstalling manpages"
592 $(PERL) $(SRCDIR)/util/process_docs.pl \
593 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX) \
597 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
598 @$(ECHO) "*** Installing HTML manpages"
599 $(PERL) $(SRCDIR)/util/process_docs.pl \
600 --destdir=$(DESTDIR)$(HTMLDIR) --type=html
603 @$(ECHO) "*** Uninstalling manpages"
604 $(PERL) $(SRCDIR)/util/process_docs.pl \
605 --destdir=$(DESTDIR)$(HTMLDIR) --type=html --remove
608 # Developer targets (note: these are only available on Unix) #########
610 update: generate errors ordinals
612 generate: generate_apps generate_crypto_bn generate_crypto_objects \
613 generate_crypto_conf generate_crypto_asn1
616 (cd $(SRCDIR); $(PERL) util/find-doc-nits -n -p ) >doc-nits
617 if [ -s doc-nits ] ; then cat doc-nits; rm doc-nits ; exit 1; fi
619 # Test coverage is a good idea for the future
620 #coverage: $(PROGRAMS) $(TESTPROGRAMS)
624 lint -DLINT $(INCLUDES) $(SRCS)
627 ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
628 < apps/openssl.cnf > apps/openssl-vms.cnf )
631 ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
633 generate_crypto_objects:
634 ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
635 crypto/objects/objects.txt \
636 crypto/objects/obj_mac.num \
637 include/openssl/obj_mac.h )
638 ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
639 include/openssl/obj_mac.h \
640 crypto/objects/obj_dat.h )
641 ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
642 crypto/objects/obj_mac.num \
643 crypto/objects/obj_xref.txt \
644 > crypto/objects/obj_xref.h )
646 generate_crypto_conf:
647 ( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
648 > crypto/conf/conf_def.h )
650 generate_crypto_asn1:
651 ( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
652 > crypto/asn1/charmap.h )
654 # Set to -force to force a rebuild
657 ( cd $(SRCDIR); $(PERL) util/ck_errf.pl -strict */*.c */*/*.c )
658 ( cd $(SRCDIR); $(PERL) util/mkerr.pl $(ERROR_REBUILD) -internal )
659 ( cd $(SRCDIR)/engines; \
661 $(PERL) ../util/mkerr.pl $(ERROR_REBUILD) -static \
662 -conf $$E `basename $$E .ec`.c ; \
666 ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
667 ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl ssl update )
671 SRCTOP=../$(SRCDIR) \
672 BLDTOP=../$(BLDDIR) \
673 $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
678 -etags `find . -name '*.[ch]' -o -name '*.pm'`
680 # Release targets (note: only available on Unix) #####################
682 # If your tar command doesn't support --owner and --group, make sure to
683 # use one that does, for example GNU tar
684 TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf -
688 TMPDIR=/var/tmp/openssl-copy.$$$$; \
690 mkdir -p $$TMPDIR/$$DISTDIR; \
692 excl_re=`git submodule status | sed -e 's/^.//' | cut -d' ' -f2`; \
693 excl_re="^(fuzz/corpora|`echo $$excl_re | sed -e 's/ /$$|/g'`\$$)"; \
695 git ls-tree -r --name-only --full-tree HEAD \
696 | egrep -v "$$excl_re" \
698 mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
699 cp $$F $$TMPDIR/$$DISTDIR/$$F; \
701 (cd $$TMPDIR/$$DISTDIR; \
703 find . -type d -print | xargs chmod 755; \
704 find . -type f -print | xargs chmod a+r; \
705 find . -type f -perm -0100 -print | xargs chmod a+x); \
706 (cd $$TMPDIR; $(TAR_COMMAND) $$DISTDIR) \
707 | (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
709 cd $(SRCDIR); ls -l $(TARFILE).gz
712 @$(MAKE) PREPARE_CMD='$(PERL) ./Configure dist' tar
714 # Helper targets #####################################################
716 link-utils: $(BLDDIR)/util/opensslwrap.sh
718 $(BLDDIR)/util/opensslwrap.sh: configdata.pm
719 @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
720 mkdir -p "$(BLDDIR)/util"; \
721 ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
726 # Building targets ###################################################
728 libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { shlib_simple($_) } @{$unified_info{libraries}}) -}
730 @ ( echo 'prefix=$(INSTALLTOP)'; \
731 echo 'exec_prefix=$${prefix}'; \
732 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
733 echo 'includedir=$${prefix}/include'; \
734 echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
736 echo 'Name: OpenSSL-libcrypto'; \
737 echo 'Description: OpenSSL cryptography library'; \
738 echo 'Version: '$(VERSION); \
739 echo 'Libs: -L$${libdir} -lcrypto'; \
740 echo 'Libs.private: $(EX_LIBS)'; \
741 echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
744 @ ( echo 'prefix=$(INSTALLTOP)'; \
745 echo 'exec_prefix=$${prefix}'; \
746 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
747 echo 'includedir=$${prefix}/include'; \
749 echo 'Name: OpenSSL-libssl'; \
750 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
751 echo 'Version: '$(VERSION); \
752 echo 'Requires.private: libcrypto'; \
753 echo 'Libs: -L$${libdir} -lssl'; \
754 echo 'Libs.private: $(EX_LIBS)'; \
755 echo 'Cflags: -I$${includedir}' ) > libssl.pc
758 @ ( echo 'prefix=$(INSTALLTOP)'; \
759 echo 'exec_prefix=$${prefix}'; \
760 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
761 echo 'includedir=$${prefix}/include'; \
763 echo 'Name: OpenSSL'; \
764 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
765 echo 'Version: '$(VERSION); \
766 echo 'Requires: libssl libcrypto' ) > openssl.pc
768 configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
769 @echo "Detected changed: $?"
770 @echo "Reconfiguring..."
771 $(PERL) $(SRCDIR)/Configure reconf
772 @echo "**************************************************"
774 @echo "*** Please run the same make command again ***"
776 @echo "**************************************************"
781 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
783 # Helper function to figure out dependencies on libraries
784 # It takes a list of library names and outputs a list of dependencies
785 sub compute_lib_depends {
786 if ($disabled{shared}) {
787 return map { lib($_) } @_;
790 # Depending on shared libraries:
791 # On Windows POSIX layers, we depend on {libname}.dll.a
792 # On Unix platforms, we depend on {shlibname}.so
793 return map { $_ =~ /\.a$/ ? $`.$libext : shlib_simple($_) } @_;
798 my $generator = join(" ", @{$args{generator}});
799 my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
800 my $incs = join("", map { " -I".$_ } @{$args{incs}});
801 my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
803 if ($args{src} !~ /\.[sS]$/) {
804 if ($args{generator}->[0] =~ m|^.*\.in$|) {
805 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
806 "util", "dofile.pl")),
807 rel2abs($config{builddir}));
809 $args{src}: $args{generator}->[0] $deps
810 \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
811 "-o$target{build_file}" $generator > \$@
815 $args{src}: $args{generator}->[0] $deps
816 \$(PERL)$generator_incs $generator > \$@
820 if ($args{generator}->[0] =~ /\.pl$/) {
821 $generator = 'CC="$(CC)" $(PERL)'.$generator_incs.' '.$generator;
822 } elsif ($args{generator}->[0] =~ /\.m4$/) {
823 $generator = 'm4 -B 8192'.$generator_incs.' '.$generator.' >'
824 } elsif ($args{generator}->[0] =~ /\.S$/) {
827 die "Generator type for $args{src} unknown: $generator\n";
830 if (defined($generator)) {
831 # If the target is named foo.S in build.info, we want to
832 # end up generating foo.s in two steps.
833 if ($args{src} =~ /\.S$/) {
834 (my $target = $args{src}) =~ s|\.S$|.s|;
836 $target: $args{generator}->[0] $deps
837 ( trap "rm -f \$@.*" INT 0; \\
839 \$(CC) $incs \$(CFLAGS) -E \$@.S | \\
840 \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@.i && \\
846 $args{src}: $args{generator}->[0] $deps
851 $args{src}: $args{generator}->[0] $deps
852 \$(CC) $incs \$(CFLAGS) -E \$< | \\
853 \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
858 # Should one wonder about the end of the Perl snippet, it's because this
859 # second regexp eats up line endings as well, if the removed path is the
860 # last in the line. We may therefore need to put back a line ending.
863 my $obj = $args{obj};
864 my @srcs = map { if ($unified_info{generate}->{$_}) {
865 (my $x = $_) =~ s/\.S$/.s/; $x
869 } ( @{$args{srcs}} );
870 my $srcs = join(" ", @srcs);
871 my $deps = join(" ", @srcs, @{$args{deps}});
872 my $incs = join("", map { " -I".$_ } @{$args{incs}});
873 unless ($disabled{zlib}) {
874 if ($withargs{zlib_include}) {
875 $incs .= " -I".$withargs{zlib_include};
879 my $cflags = '$(CFLAGS)';
880 if (grep /\.(cc|cpp)$/, @srcs) {
882 $cflags = '$(CXXFLAGS)';
883 $cflags .= ' ' . { lib => '$(LIB_CXXFLAGS)',
884 dso => '$(DSO_CXXFLAGS)',
885 bin => '$(BIN_CXXFLAGS)' } -> {$args{intent}};
887 $cflags .= ' ' . { lib => '$(LIB_CFLAGS)',
888 dso => '$(DSO_CFLAGS)',
889 bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
891 my $makedepprog = $config{makedepprog};
892 my $recipe = <<"EOF";
895 if (!$disabled{makedepend} && $makedepprog !~ /\/makedepend/) {
897 $cc $incs $cflags -MMD -MF $obj$depext.tmp -MT \$\@ -c -o \$\@ $srcs
898 \@touch $obj$depext.tmp
899 \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
900 rm -f $obj$depext.tmp; \\
902 mv $obj$depext.tmp $obj$depext; \\
907 $cc $incs $cflags -c -o \$\@ $srcs
909 if (!$disabled{makedepend} && $makedepprog =~ /\/makedepend/) {
911 -\$(MAKEDEPEND) -f- -o"|\$\@" -- $incs $cflags -- $srcs \\
912 >$obj$depext.tmp 2>/dev/null
913 -\$(PERL) -i -pe 's/^.*\\|//; s/ \\/(\\\\.|[^ ])*//; \$\$_ = undef if (/: *\$\$/ || /^(#.*| *)\$\$/); \$\$_.="\\n" unless !defined(\$\$_) or /\\R\$\$/g;' $obj$depext.tmp
914 \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
915 rm -f $obj$depext.tmp; \\
917 mv $obj$depext.tmp $obj$depext; \\
924 # On Unix, we build shlibs from static libs, so we're ignoring the
925 # object file array. We *know* this routine is only called when we've
926 # configure 'shared'.
929 my $lib = $args{lib};
930 my $shlib = $args{shlib};
931 my $libd = dirname($lib);
932 my $libn = basename($lib);
933 (my $libname = $libn) =~ s/^lib//;
934 my $linklibs = join("", map { my $d = dirname($_);
935 my $f = basename($_);
936 (my $l = $f) =~ s/^lib//;
937 " -L$d -l$l" } @{$args{deps}});
938 my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
939 my $shlib_target = $target{shared_target};
940 my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
941 my $target = shlib_simple($lib);
942 my $target_full = shlib($lib);
944 # With a build on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
945 # that two files get produced, {shlibname}.dll and {libname}.dll.a.
946 # With all other Unix platforms, we often build a shared library with the
947 # SO version built into the file name and a symlink without the SO version
948 # It's not necessary to have both as targets. The choice falls on the
949 # simplest, {libname}\$(SHLIB_EXT_IMPORT) for Windows POSIX layers and
950 # {libname}\$(SHLIB_EXT_SIMPLE) for the Unix platforms.
951 $target: $lib$libext $deps $ordinalsfile
952 \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
954 PLATFORM=\$(PLATFORM) \\
955 PERL="\$(PERL)" SRCDIR='\$(SRCDIR)' DSTDIR="$libd" \\
956 INSTALLTOP='\$(INSTALLTOP)' LIBDIR='\$(LIBDIR)' \\
957 LIBDEPS='\$(PLIB_LDFLAGS) '"$linklibs"' \$(EX_LIBS)' \\
958 LIBNAME=$libname SHLIBVERSION=\$(SHLIB_VERSION_NUMBER) \\
959 STLIBNAME=$lib$libext \\
960 SHLIBNAME=$target SHLIBNAME_FULL=$target_full \\
961 CC='\$(CC)' CFLAGS='\$(CFLAGS) \$(LIB_CFLAGS)' \\
962 LDFLAGS='\$(LDFLAGS)' SHARED_LDFLAGS='\$(LIB_LDFLAGS)' \\
963 RC='\$(RC)' SHARED_RCFLAGS='\$(RCFLAGS)' \\
964 link_shlib.$shlib_target
966 . (windowsdll() ? <<"EOF" : "");
967 rm -f apps/$shlib'\$(SHLIB_EXT)'
968 rm -f test/$shlib'\$(SHLIB_EXT)'
969 cp -p $shlib'\$(SHLIB_EXT)' apps/
970 cp -p $shlib'\$(SHLIB_EXT)' test/
975 my $dso = $args{lib};
976 my $dsod = dirname($dso);
977 my $dson = basename($dso);
978 my $shlibdeps = join("", map { my $d = dirname($_);
979 my $f = basename($_);
980 (my $l = $f) =~ s/^lib//;
981 " -L$d -l$l" } @{$args{deps}});
982 my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
983 my $shlib_target = $target{shared_target};
984 my $objs = join(" ", map { $_.$objext } @{$args{objs}});
985 my $target = dso($dso);
988 \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
989 PLATFORM=\$(PLATFORM) \\
990 PERL="\$(PERL)" SRCDIR='\$(SRCDIR)' DSTDIR="$dsod" \\
991 LIBDEPS='\$(PLIB_LDFLAGS) '"$shlibdeps"' \$(EX_LIBS)' \\
992 SHLIBNAME_FULL=$target LDFLAGS='\$(LDFLAGS)' \\
993 CC='\$(CC)' CFLAGS='\$(CFLAGS) \$(DSO_CFLAGS)' \\
994 SHARED_LDFLAGS='\$(DSO_LDFLAGS)' \\
996 link_dso.$shlib_target
1001 (my $lib = $args{lib}) =~ s/\.a$//;
1002 my $objs = join(" ", map { $_.$objext } @{$args{objs}});
1006 \$(RANLIB) \$\@ || echo Never mind.
1011 my $bin = $args{bin};
1012 my $bind = dirname($bin);
1013 my $binn = basename($bin);
1014 my $objs = join(" ", map { $_.$objext } @{$args{objs}});
1015 my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
1016 my $linklibs = join("", map { if ($_ =~ /\.a$/) {
1019 my $d = dirname($_);
1020 my $f = basename($_);
1021 $d = "." if $d eq $f;
1022 (my $l = $f) =~ s/^lib//;
1026 my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
1028 my $cflags = '$(CFLAGS) $(BIN_CFLAGS)';
1029 if (grep /_cc$/, @{$args{objs}}) {
1031 $cflags = '$(CXXFLAGS) $(BIN_CXXFLAGS)';
1034 $bin$exeext: $objs $deps
1036 \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
1037 PERL="\$(PERL)" SRCDIR=\$(SRCDIR) \\
1038 APPNAME=$bin$exeext OBJECTS="$objs" \\
1039 LIBDEPS='\$(PLIB_LDFLAGS) '"$linklibs"' \$(EX_LIBS)' \\
1040 CC='$cc' CFLAGS='$cflags' \\
1041 LDFLAGS='\$(LDFLAGS)' \\
1042 link_app.$shlib_target
1047 my $script = $args{script};
1048 my $sources = join(" ", @{$args{sources}});
1049 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1050 "util", "dofile.pl")),
1051 rel2abs($config{builddir}));
1054 \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
1055 "-o$target{build_file}" $sources > "$script"
1061 my $dir = $args{dir};
1062 my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
1064 my %extinfo = ( dso => $dsoext,
1068 foreach my $type (("dso", "lib", "bin", "script")) {
1069 next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
1070 # For lib object files, we could update the library. However, it
1071 # was decided that it's enough to build the directory local object
1072 # files, so we don't need to add any actions, and the dependencies
1073 # are already taken care of.
1074 if ($type ne "lib") {
1075 foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1076 if (dirname($prod) eq $dir) {
1077 push @deps, $prod.$extinfo{$type};
1079 push @actions, "\t@ : No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
1085 my $deps = join(" ", @deps);
1086 my $actions = join("\n", "", @actions);
1088 $args{dir} $args{dir}/: $deps$actions
1091 "" # Important! This becomes part of the template result.