f5a027421c99fb20d313a2492df147c435d79610
[openssl.git] / Configurations / unix-Makefile.tmpl
1 ##
2 ## Makefile for OpenSSL
3 ##
4 ## {- join("\n## ", @autowarntext) -}
5 {-
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";
14
15      sub windowsdll { $config{target} =~ /^(?:Cygwin|mingw)/ }
16
17      our $sover = $config{target} =~ /^mingw/
18          ? $config{shlib_major}."_".$config{shlib_minor}
19          : $config{shlib_major}.".".$config{shlib_minor};
20
21      # shlib and shlib_simple both take a static library name and figure
22      # out what the shlib name should be.
23      #
24      # When OpenSSL is configured "no-shared", these functions will just
25      # return empty lists, making them suitable to join().
26      #
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.
34      #
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
39      # string.
40      sub shlib {
41          return () if $disabled{shared};
42          my $lib = shift;
43          return $unified_info{sharednames}->{$lib} . $shlibext;
44      }
45      sub shlib_simple {
46          return () if $disabled{shared};
47
48          my $lib = shift;
49          if (windowsdll()) {
50              return $lib . $shlibextimport;
51          }
52          return $lib .  $shlibextsimple;
53      }
54
55      # dso is a complement to shlib / shlib_simple that returns the
56      # given libname with the simple shared extension (possible SO version
57      # removed).  This differs from shlib_simple() by being unconditional.
58      sub dso {
59          my $engine = shift;
60
61          return $engine . $dsoext;
62      }
63      # This makes sure things get built in the order they need
64      # to. You're welcome.
65      sub dependmagic {
66          my $target = shift;
67
68          return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
69      }
70      '';
71 -}
72 PLATFORM={- $config{target} -}
73 OPTIONS={- $config{options} -}
74 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
75 SRCDIR={- $config{sourcedir} -}
76 BLDDIR={- $config{builddir} -}
77
78 VERSION={- $config{version} -}
79 MAJOR={- $config{major} -}
80 MINOR={- $config{minor} -}
81 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
82 SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
83 SHLIB_MAJOR={- $config{shlib_major} -}
84 SHLIB_MINOR={- $config{shlib_minor} -}
85 SHLIB_TARGET={- $target{shared_target} -}
86
87 LIBS={- join(" ", map { $_.$libext } @{$unified_info{libraries}}) -}
88 SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
89 SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{libraries}}) -}
90 ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
91 PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{programs}}) -}
92 SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
93 {- output_off() if $disabled{makedepend}; "" -}
94 DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
95                   grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
96                   keys %{$unified_info{sources}}); -}
97 {- output_on() if $disabled{makedepend}; "" -}
98 GENERATED_MANDATORY={- join(" ", @{$unified_info{depends}->{""}} ) -}
99 GENERATED={- join(" ",
100                   ( map { (my $x = $_) =~ s|\.S$|\.s|; $x }
101                     grep { defined $unified_info{generate}->{$_} }
102                     map { @{$unified_info{sources}->{$_}} }
103                     grep { /\.o$/ } keys %{$unified_info{sources}} ),
104                   ( grep { /\.h$/ } keys %{$unified_info{generate}} )) -}
105
106 INSTALL_LIBS={- join(" ", map { $_.$libext } @{$unified_info{install}->{libraries}}) -}
107 INSTALL_SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{install}->{libraries}}) -}
108 INSTALL_SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{install}->{libraries}}) -}
109 INSTALL_ENGINES={- join(" ", map { dso($_) } @{$unified_info{install}->{engines}}) -}
110 INSTALL_PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{install}->{programs}}) -}
111 {- output_off() if $disabled{apps}; "" -}
112 BIN_SCRIPTS=$(BLDDIR)/tools/c_rehash
113 MISC_SCRIPTS=$(BLDDIR)/apps/CA.pl $(BLDDIR)/apps/tsget
114 {- output_on() if $disabled{apps}; "" -}
115
116 # DESTDIR is for package builders so that they can configure for, say,
117 # /usr/ and yet have everything installed to /tmp/somedir/usr/.
118 # Normally it is left empty.
119 DESTDIR=
120
121 # Do not edit these manually. Use Configure with --prefix or --openssldir
122 # to change this!  Short explanation in the top comment in Configure
123 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
124               #
125               our $prefix = $config{prefix} || "/usr/local";
126               $prefix -}
127 OPENSSLDIR={- #
128               # The logic here is that if no --openssldir was given,
129               # OPENSSLDIR will get the value from $prefix plus "/ssl".
130               # If --openssldir was given and the value is an absolute
131               # path, OPENSSLDIR will get its value without change.
132               # If the value from --openssldir is a relative path,
133               # OPENSSLDIR will get $prefix with the --openssldir
134               # value appended as a subdirectory.
135               #
136               use File::Spec::Functions;
137               our $openssldir =
138                   $config{openssldir} ?
139                       (file_name_is_absolute($config{openssldir}) ?
140                            $config{openssldir}
141                            : catdir($prefix, $config{openssldir}))
142                       : catdir($prefix, "ssl");
143               $openssldir -}
144 LIBDIR={- #
145           # if $prefix/lib$target{multilib} is not an existing
146           # directory, then assume that it's not searched by linker
147           # automatically, in which case adding $target{multilib} suffix
148           # causes more grief than we're ready to tolerate, so don't...
149           our $multilib =
150               -d "$prefix/lib$target{multilib}" ? $target{multilib} : "";
151           our $libdir = $config{libdir} || "lib$multilib";
152           $libdir -}
153 ENGINESDIR={- use File::Spec::Functions;
154               catdir($prefix,$libdir,"engines-$sover") -}
155
156 MANDIR=$(INSTALLTOP)/share/man
157 DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
158 HTMLDIR=$(DOCDIR)/html
159
160 # MANSUFFIX is for the benefit of anyone who may want to have a suffix
161 # appended after the manpage file section number.  "ssl" is popular,
162 # resulting in files such as config.5ssl rather than config.5.
163 MANSUFFIX=
164 HTMLSUFFIX=html
165
166
167
168 CROSS_COMPILE= {- $config{cross_compile_prefix} -}
169 CC= $(CROSS_COMPILE){- $target{cc} -}
170 CFLAGS={- our $cflags2 = join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $target{cflags} -} {- $config{cflags} -}
171 CFLAGS_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -}
172 LDFLAGS= {- $target{lflags} -}
173 PLIB_LDFLAGS= {- $target{plib_lflags} -}
174 EX_LIBS= {- $target{ex_libs} -} {- $config{ex_libs} -}
175 LIB_CFLAGS={- $target{shared_cflag} || "" -}
176 LIB_LDFLAGS={- $target{shared_ldflag}." ".$config{shared_ldflag}
177                # Unlike other OSes (like Solaris, Linux, Tru64,
178                # IRIX) BSD run-time linkers (tested OpenBSD, NetBSD
179                # and FreeBSD) "demand" RPATH set on .so objects.
180                # Apparently application RPATH is not global and
181                # does not apply to .so linked with other .so.
182                # Problem manifests itself when libssl.so fails to
183                # load libcrypto.so. One can argue that we should
184                # engrave this into Makefile.shared rules or into
185                # BSD-* config lines above. Meanwhile let's try to
186                # be cautious and pass -rpath to linker only when
187                # $prefix is not /usr.
188                . ($config{target} =~ m|^BSD-| && $prefix !~ m|^/usr/.*$|
189                   ? " -Wl,-rpath,\$\$(LIBRPATH)" : "") -}
190 DSO_CFLAGS={- $target{shared_cflag} || "" -}
191 DSO_LDFLAGS=$(LIB_LDFLAGS)
192 BIN_CFLAGS={- $target{bin_cflags} -}
193
194 PERL={- $config{perl} -}
195
196 ARFLAGS= {- $target{arflags} -}
197 AR=$(CROSS_COMPILE){- $target{ar} || "ar" -} $(ARFLAGS) r
198 RANLIB= {- $target{ranlib} -}
199 NM= $(CROSS_COMPILE){- $target{nm} || "nm" -}
200 RCFLAGS={- $target{shared_rcflag} -}
201 RC= $(CROSS_COMPILE){- $target{rc} || "windres" -}
202 RM= rm -f
203 RMDIR= rmdir
204 TAR= {- $target{tar} || "tar" -}
205 TARFLAGS= {- $target{tarflags} -}
206 MAKEDEPEND={- $config{makedepprog} -}
207
208 BASENAME=       openssl
209 NAME=           $(BASENAME)-$(VERSION)
210 TARFILE=        ../$(NAME).tar
211
212 # We let the C compiler driver to take care of .s files. This is done in
213 # order to be excused from maintaining a separate set of architecture
214 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
215 # gcc, then the driver will automatically translate it to -xarch=v8plus
216 # and pass it down to assembler.
217 AS=$(CC) -c
218 ASFLAG=$(CFLAGS)
219 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
220
221 # For x86 assembler: Set PROCESSOR to 386 if you want to support
222 # the 80386.
223 PROCESSOR= {- $config{processor} -}
224
225 # We want error [and other] messages in English. Trouble is that make(1)
226 # doesn't pass macros down as environment variables unless there already
227 # was corresponding variable originally set. In other words we can only
228 # reassign environment variables, but not set new ones, not in portable
229 # manner that is. That's why we reassign several, just to be sure...
230 LC_ALL=C
231 LC_MESSAGES=C
232 LANG=C
233
234 # The main targets ###################################################
235
236 {- dependmagic('all'); -}: build_libs_nodep build_engines_nodep build_programs_nodep link-utils
237 {- dependmagic('build_libs'); -}: build_libs_nodep
238 {- dependmagic('build_engines'); -}: build_engines_nodep
239 {- dependmagic('build_programs'); -}: build_programs_nodep
240
241 build_generated: $(GENERATED_MANDATORY)
242 build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
243 build_engines_nodep: $(ENGINES)
244 build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
245
246 # Kept around for backward compatibility
247 build_apps build_tests: build_programs
248
249 test: tests
250 {- dependmagic('tests'); -}: build_programs_nodep build_engines_nodep link-utils
251         @ : {- output_off() if $disabled{tests}; "" -}
252         ( cd test; \
253           SRCTOP=../$(SRCDIR) \
254           BLDTOP=../$(BLDDIR) \
255           PERL="$(PERL)" \
256           EXE_EXT={- $exeext -} \
257           OPENSSL_ENGINES=../$(BLDDIR)/engines \
258             $(PERL) ../$(SRCDIR)/test/run_tests.pl $(TESTS) )
259         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
260         @echo "Tests are not supported with your chosen Configure options"
261         @ : {- output_on() if !$disabled{tests}; "" -}
262
263 list-tests:
264         @ : {- output_off() if $disabled{tests}; "" -}
265         @SRCTOP="$(SRCDIR)" \
266          $(PERL) $(SRCDIR)/test/run_tests.pl list
267         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
268         @echo "Tests are not supported with your chosen Configure options"
269         @ : {- output_on() if !$disabled{tests}; "" -}
270
271 install: install_sw install_ssldirs install_docs
272
273 uninstall: uninstall_docs uninstall_sw
274
275 libclean:
276         @set -e; for s in $(SHLIB_INFO); do \
277                 s1=`echo "$$s" | cut -f1 -d";"`; \
278                 s2=`echo "$$s" | cut -f2 -d";"`; \
279                 echo $(RM) $$s1; \
280                 $(RM) $$s1; \
281                 if [ "$$s1" != "$$s2" ]; then \
282                         echo $(RM) $$s2; \
283                         $(RM) $$s2; \
284                 fi; \
285         done
286         $(RM) $(LIBS)
287         $(RM) *.map
288
289 clean: libclean
290         $(RM) $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
291         $(RM) $(GENERATED)
292         -$(RM) `find . -name '*{- $depext -}' -a \! -path "./.git/*"`
293         -$(RM) `find . -name '*{- $objext -}' -a \! -path "./.git/*"`
294         $(RM) core
295         $(RM) tags TAGS
296         $(RM) openssl.pc libcrypto.pc libssl.pc
297         -$(RM) `find . -type l -a \! -path "./.git/*"`
298         $(RM) $(TARFILE)
299
300 distclean: clean
301         $(RM) configdata.pm
302         $(RM) Makefile
303
304 # This exists solely for those who still type 'make depend'
305 #
306 # We check if any depfile is newer than Makefile and decide to
307 # concatenate only if that is true.
308 depend:
309         @: {- output_off() if $disabled{makedepend}; "" -}
310         @if [ -n "`find $(DEPS) -newer Makefile 2>/dev/null; exit 0`" ]; then \
311           ( sed -e '/^# DO NOT DELETE THIS LINE.*/,$$d' < Makefile; \
312             echo '# DO NOT DELETE THIS LINE -- make depend depends on it.'; \
313             echo; \
314             for f in $(DEPS); do \
315               if [ -f $$f ]; then cat $$f; fi; \
316             done ) > Makefile.new; \
317           if cmp Makefile.new Makefile >/dev/null 2>&1; then \
318             rm -f Makefile.new; \
319           else \
320             mv -f Makefile.new Makefile; \
321           fi; \
322         fi
323         @: {- output_on() if $disabled{makedepend}; "" -}
324
325 # Install helper targets #############################################
326
327 install_sw: all install_dev install_engines install_runtime
328
329 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
330
331 install_docs: install_man_docs install_html_docs
332
333 uninstall_docs: uninstall_man_docs uninstall_html_docs
334         $(RM) -r -v $(DESTDIR)$(DOCDIR)
335
336 install_ssldirs:
337         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
338         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
339         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
340         @set -e; for x in dummy $(MISC_SCRIPTS); do \
341                 if [ "$$x" = "dummy" ]; then continue; fi; \
342                 fn=`basename $$x`; \
343                 echo "install $$x -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
344                 cp $$x $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
345                 chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
346                 mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
347                       $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
348         done
349         @echo "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
350         @cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
351         @chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
352         @mv -f  $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
353         @if ! [ -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
354                 echo "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
355                 cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
356                 chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
357         fi
358
359 install_dev:
360         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
361         @echo "*** Installing development files"
362         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
363         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
364         @echo "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
365         @cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
366         @chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
367         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
368         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
369                           $(BLDDIR)/include/openssl/*.h; do \
370                 fn=`basename $$i`; \
371                 echo "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
372                 cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
373                 chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
374         done
375         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
376         @set -e; for l in $(INSTALL_LIBS); do \
377                 fn=`basename $$l`; \
378                 echo "install $$l -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
379                 cp $$l $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
380                 $(RANLIB) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
381                 chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
382                 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new \
383                       $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
384         done
385         @ : {- output_off() if $disabled{shared}; "" -}
386         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
387                 s1=`echo "$$s" | cut -f1 -d";"`; \
388                 s2=`echo "$$s" | cut -f2 -d";"`; \
389                 fn1=`basename $$s1`; \
390                 fn2=`basename $$s2`; \
391                 : {- output_off() if windowsdll(); "" -}; \
392                 echo "install $$s1 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
393                 cp $$s1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
394                 chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
395                 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new \
396                       $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
397                 if [ "$$fn1" != "$$fn2" ]; then \
398                         echo "link $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
399                         ln -sf $$fn1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
400                 fi; \
401                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
402                 echo "install $$s2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
403                 cp $$s2 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
404                 chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
405                 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new \
406                       $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
407                 : {- output_on() unless windowsdll(); "" -}; \
408         done
409         @ : {- output_on() if $disabled{shared}; "" -}
410         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
411         @echo "install libcrypto.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc"
412         @cp libcrypto.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
413         @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
414         @echo "install libssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc"
415         @cp libssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
416         @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
417         @echo "install openssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc"
418         @cp openssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
419         @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
420
421 uninstall_dev:
422         @echo "*** Uninstalling development files"
423         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
424         @echo "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
425         @$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
426         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
427         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
428                           $(BLDDIR)/include/openssl/*.h; do \
429                 fn=`basename $$i`; \
430                 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
431                 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
432         done
433         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
434         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
435         @set -e; for l in $(INSTALL_LIBS); do \
436                 fn=`basename $$l`; \
437                 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
438                 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
439         done
440         @ : {- output_off() if $disabled{shared}; "" -}
441         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
442                 s1=`echo "$$s" | cut -f1 -d";"`; \
443                 s2=`echo "$$s" | cut -f2 -d";"`; \
444                 fn1=`basename $$s1`; \
445                 fn2=`basename $$s2`; \
446                 : {- output_off() if windowsdll(); "" -}; \
447                 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
448                 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
449                 if [ "$$fn1" != "$$fn2" ]; then \
450                         echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
451                         $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
452                 fi; \
453                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
454                 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
455                 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
456                 : {- output_on() unless windowsdll(); "" -}; \
457         done
458         @ : {- output_on() if $disabled{shared}; "" -}
459         $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
460         $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
461         $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
462         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
463         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
464
465 install_engines:
466         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
467         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
468         @echo "*** Installing engines"
469         @set -e; for e in dummy $(INSTALL_ENGINES); do \
470                 if [ "$$e" = "dummy" ]; then continue; fi; \
471                 fn=`basename $$e`; \
472                 echo "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
473                 cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
474                 chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
475                 mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
476                       $(DESTDIR)$(ENGINESDIR)/$$fn; \
477         done
478
479 uninstall_engines:
480         @echo "*** Uninstalling engines"
481         @set -e; for e in dummy $(INSTALL_ENGINES); do \
482                 if [ "$$e" = "dummy" ]; then continue; fi; \
483                 fn=`basename $$e`; \
484                 if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
485                         continue; \
486                 fi; \
487                 echo "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
488                 $(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
489         done
490         -$(RMDIR) $(DESTDIR)$(ENGINESDIR)
491
492 install_runtime:
493         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
494         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
495         @ : {- output_off() if windowsdll(); "" -}
496         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
497         @ : {- output_on() if windowsdll(); "" -}
498         @echo "*** Installing runtime files"
499         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
500                 if [ "$$s" = "dummy" ]; then continue; fi; \
501                 fn=`basename $$s`; \
502                 : {- output_off() unless windowsdll(); "" -}; \
503                 echo "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
504                 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
505                 chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
506                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
507                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
508                 : {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
509                 echo "install $$s -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
510                 cp $$s $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
511                 chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
512                 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new \
513                       $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
514                 : {- output_on() if windowsdll(); "" -}; \
515         done
516         @set -e; for x in dummy $(INSTALL_PROGRAMS); do \
517                 if [ "$$x" = "dummy" ]; then continue; fi; \
518                 fn=`basename $$x`; \
519                 echo "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
520                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
521                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
522                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
523                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
524         done
525         @set -e; for x in dummy $(BIN_SCRIPTS); do \
526                 if [ "$$x" = "dummy" ]; then continue; fi; \
527                 fn=`basename $$x`; \
528                 echo "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
529                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
530                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
531                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
532                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
533         done
534
535 uninstall_runtime:
536         @echo "*** Uninstalling runtime files"
537         @set -e; for x in dummy $(INSTALL_PROGRAMS); \
538         do  \
539                 if [ "$$x" = "dummy" ]; then continue; fi; \
540                 fn=`basename $$x`; \
541                 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
542                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
543         done;
544         @set -e; for x in dummy $(BIN_SCRIPTS); \
545         do  \
546                 if [ "$$x" = "dummy" ]; then continue; fi; \
547                 fn=`basename $$x`; \
548                 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
549                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
550         done
551         @ : {- output_off() unless windowsdll(); "" -}
552         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
553                 if [ "$$s" = "dummy" ]; then continue; fi; \
554                 fn=`basename $$s`; \
555                 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
556                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
557         done
558         @ : {- output_on() unless windowsdll(); "" -}
559         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
560
561 # A method to extract all names from a .pod file
562 # The first sed extracts everything between "=head1 NAME" and the next =head1
563 # The perl command joins all the lines into one
564 # The second sed removes the description and turns all commas into spaces
565 # Voilà, you have a space separated list of names!
566 EXTRACT_NAMES=sed -e '1,/^=head1  *NAME *$$/d;/^=head1/,$$d' | \
567               $(PERL) -p -0 -e 's/\n/ /g; END {print "\n"}' | \
568               sed -e 's/ - .*$$//;s/,/ /g'
569 PROCESS_PODS=\
570         set -e; \
571         here=`cd $(SRCDIR); pwd`; \
572         point=$$here/util/point.sh; \
573         for ds in apps:1 crypto:3 ssl:3; do \
574             defdir=`echo $$ds | cut -f1 -d:`; \
575             defsec=`echo $$ds | cut -f2 -d:`; \
576             for p in $(SRCDIR)/doc/$$defdir/*.pod; do \
577                 SEC=`sed -ne 's/^=for  *comment  *openssl_manual_section: *\([0-9]\) *$$/\1/p' $$p`; \
578                 [ -z "$$SEC" ] && SEC=$$defsec; \
579                 fn=`basename $$p .pod`; \
580                 Name=$$fn; \
581                 NAME=`echo $$fn | tr '[a-z]' '[A-Z]'`; \
582                 suf=`eval "echo $$OUTSUFFIX"`; \
583                 top=`eval "echo $$OUTTOP"`; \
584                 $(PERL) $(SRCDIR)/util/mkdir-p.pl $$top/man$$SEC; \
585                 echo "install $$p -> $$top/man$$SEC/$$fn$$suf"; \
586                 cat $$p | eval "$$GENERATE" \
587                         >  $$top/man$$SEC/$$fn$$suf; \
588                 names=`cat $$p | $(EXTRACT_NAMES)`; \
589                 ( cd $$top/man$$SEC; \
590                   for n in $$names; do \
591                       comp_n="$$n"; \
592                       comp_fn="$$fn"; \
593                       case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
594                           comp_n=`echo "$$n" | tr '[A-Z]' '[a-z]'`; \
595                           comp_fn=`echo "$$fn" | tr '[A-Z]' '[a-z]'`; \
596                           ;; \
597                       esac; \
598                       if [ "$$comp_n" != "$$comp_fn" ]; then \
599                           echo "link $$top/man$$SEC/$$n$$suf -> $$top/man$$SEC/$$fn$$suf"; \
600                           PLATFORM=$(PLATFORM) $$point $$fn$$suf $$n$$suf; \
601                       fi; \
602                   done ); \
603             done; \
604         done
605 UNINSTALL_DOCS=\
606         set -e; \
607         here=`cd $(SRCDIR); pwd`; \
608         for ds in apps:1 crypto:3 ssl:3; do \
609             defdir=`echo $$ds | cut -f1 -d:`; \
610             defsec=`echo $$ds | cut -f2 -d:`; \
611             for p in $(SRCDIR)/doc/$$defdir/*.pod; do \
612                 SEC=`sed -ne 's/^=for  *comment  *openssl_manual_section: *\([0-9]\) *$$/\1/p' $$p`; \
613                 [ -z "$$SEC" ] && SEC=$$defsec; \
614                 fn=`basename $$p .pod`; \
615                 suf=`eval "echo $$OUTSUFFIX"`; \
616                 top=`eval "echo $$OUTTOP"`; \
617                 echo "$(RM) $$top/man$$SEC/$$fn$$suf"; \
618                 $(RM) $$top/man$$SEC/$$fn$$suf; \
619                 names=`cat $$p | $(EXTRACT_NAMES)`; \
620                 for n in $$names; do \
621                     comp_n="$$n"; \
622                     comp_fn="$$fn"; \
623                     case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
624                         comp_n=`echo "$$n" | tr '[A-Z]' '[a-z]'`; \
625                         comp_fn=`echo "$$fn" | tr '[A-Z]' '[a-z]'`; \
626                         ;; \
627                     esac; \
628                     if [ "$$comp_n" != "$$comp_fn" ]; then \
629                         echo "$(RM) $$top/man$$SEC/$$n$$suf"; \
630                         $(RM) $$top/man$$SEC/$$n$$suf; \
631                     fi; \
632                 done; \
633                 ( $(RMDIR) $$top/man$$SEC 2>/dev/null || exit 0 ); \
634             done; \
635         done
636
637 install_man_docs:
638         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
639         @echo "*** Installing manpages"
640         @\
641         OUTSUFFIX='.$${SEC}$(MANSUFFIX)'; \
642         OUTTOP="$(DESTDIR)$(MANDIR)"; \
643         GENERATE='pod2man --name=$$NAME --section=$$SEC --center=OpenSSL --release=$(VERSION)'; \
644         $(PROCESS_PODS)
645
646 uninstall_man_docs:
647         @echo "*** Uninstalling manpages"
648         @\
649         OUTSUFFIX='.$${SEC}$(MANSUFFIX)'; \
650         OUTTOP="$(DESTDIR)$(MANDIR)"; \
651         $(UNINSTALL_DOCS)
652
653 install_html_docs:
654         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
655         @echo "*** Installing HTML manpages"
656         @\
657         OUTSUFFIX='.$(HTMLSUFFIX)'; \
658         OUTTOP="$(DESTDIR)$(HTMLDIR)"; \
659         GENERATE="pod2html --podroot=$(SRCDIR)/doc --htmldir=.. \
660                            --podpath=apps:crypto:ssl --title=\$$Name \
661                   | perl -pe 's|href=\"http://man.he.net/man|href=\"../man|g; s|href=\"(.*/man.*)(?<!\.html)\">|href=\"\$$1.html\">|g;'"; \
662         $(PROCESS_PODS)
663
664 uninstall_html_docs:
665         @echo "*** Uninstalling manpages"
666         @\
667         OUTSUFFIX='.$(HTMLSUFFIX)'; \
668         OUTTOP="$(DESTDIR)$(HTMLDIR)"; \
669         $(UNINSTALL_DOCS)
670
671
672 # Developer targets (note: these are only available on Unix) #########
673
674 update: generate errors ordinals
675
676 generate: generate_apps generate_crypto_bn generate_crypto_objects \
677           generate_crypto_conf generate_crypto_asn1
678
679 # Test coverage is a good idea for the future
680 #coverage: $(PROGRAMS) $(TESTPROGRAMS)
681 #       ...
682
683 lint:
684         lint -DLINT $(INCLUDES) $(SRCS)
685
686 {- # because the program apps/openssl has object files as sources, and
687    # they then have the corresponding C files as source, we need to chain
688    # the lookups in %unified_info
689    my $apps_openssl = catfile("apps","openssl");
690    our @openssl_source = map { @{$unified_info{sources}->{$_}} }
691                          @{$unified_info{sources}->{$apps_openssl}};
692    ""; -}
693 generate_apps:
694         ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
695                                 < apps/openssl.cnf > apps/openssl-vms.cnf )
696         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b apps/progs.pl \
697                                         {- join(" ", @openssl_source) -} \
698                                         > apps/progs.h )
699
700 generate_crypto_bn:
701         ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
702
703 generate_crypto_objects:
704         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
705                                 crypto/objects/objects.txt \
706                                 crypto/objects/obj_mac.num \
707                                 include/openssl/obj_mac.h )
708         ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
709                                 include/openssl/obj_mac.h \
710                                 crypto/objects/obj_dat.h )
711         ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
712                                 crypto/objects/obj_mac.num \
713                                 crypto/objects/obj_xref.txt \
714                                 > crypto/objects/obj_xref.h )
715
716 generate_crypto_conf:
717         ( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
718                                 > crypto/conf/conf_def.h )
719
720 generate_crypto_asn1:
721         ( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
722                                 > crypto/asn1/charmap.h )
723
724 errors:
725         ( cd $(SRCDIR); $(PERL) util/ck_errf.pl -strict */*.c */*/*.c )
726         ( cd $(SRCDIR); $(PERL) util/mkerr.pl -recurse -write )
727         ( cd $(SRCDIR)/engines; \
728           for e in *.ec; do \
729               $(PERL) ../util/mkerr.pl -conf $$e \
730                       -nostatic -staticloader -write *.c; \
731           done )
732
733 ordinals:
734         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
735         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl ssl update )
736
737 test_ordinals:
738         ( cd test; \
739           SRCTOP=../$(SRCDIR) \
740           BLDTOP=../$(BLDDIR) \
741             $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
742
743 tags TAGS: FORCE
744         rm -f TAGS tags
745         -ctags -R .
746         -etags `find . -name '*.[ch]' -o -name '*.pm'`
747
748 # Release targets (note: only available on Unix) #####################
749
750 TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf -
751 PREPARE_CMD=:
752 tar:
753         TMPDIR=/var/tmp/openssl-copy.$$$$; \
754         DISTDIR=$(NAME); \
755         mkdir -p $$TMPDIR/$$DISTDIR; \
756         (cd $(SRCDIR); \
757          git ls-tree -r --name-only --full-tree HEAD \
758          | grep -v '^fuzz/corpora' \
759          | while read F; do \
760                mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
761                cp $$F $$TMPDIR/$$DISTDIR/$$F; \
762            done); \
763         (cd $$TMPDIR; \
764          $(PREPARE_CMD); \
765          find $$TMPDIR/$$DISTDIR -type d -print | xargs chmod 755; \
766          find $$TMPDIR/$$DISTDIR -type f -print | xargs chmod a+r; \
767          find $$TMPDIR/$$DISTDIR -type f -perm -0100 -print | xargs chmod a+x; \
768          $(TAR_COMMAND) $$DISTDIR) \
769         | (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
770         rm -rf $$TMPDIR
771         cd $(SRCDIR); ls -l $(TARFILE).gz
772
773 dist:
774         @$(MAKE) PREPARE_CMD='./Configure dist' tar
775
776 # Helper targets #####################################################
777
778 link-utils: $(BLDDIR)/util/opensslwrap.sh
779
780 $(BLDDIR)/util/opensslwrap.sh: configdata.pm
781         @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
782             mkdir -p "$(BLDDIR)/util"; \
783             ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
784         fi
785
786 FORCE:
787
788 # Building targets ###################################################
789
790 libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { shlib_simple($_) } @{$unified_info{libraries}}) -}
791 libcrypto.pc:
792         @ ( echo 'prefix=$(INSTALLTOP)'; \
793             echo 'exec_prefix=$${prefix}'; \
794             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
795             echo 'includedir=$${prefix}/include'; \
796             echo 'enginesdir=$${libdir}/engines-{- $sover -}'; \
797             echo ''; \
798             echo 'Name: OpenSSL-libcrypto'; \
799             echo 'Description: OpenSSL cryptography library'; \
800             echo 'Version: '$(VERSION); \
801             echo 'Libs: -L$${libdir} -lcrypto'; \
802             echo 'Libs.private: $(EX_LIBS)'; \
803             echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
804
805 libssl.pc:
806         @ ( echo 'prefix=$(INSTALLTOP)'; \
807             echo 'exec_prefix=$${prefix}'; \
808             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
809             echo 'includedir=$${prefix}/include'; \
810             echo ''; \
811             echo 'Name: OpenSSL-libssl'; \
812             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
813             echo 'Version: '$(VERSION); \
814             echo 'Requires.private: libcrypto'; \
815             echo 'Libs: -L$${libdir} -lssl'; \
816             echo 'Libs.private: $(EX_LIBS)'; \
817             echo 'Cflags: -I$${includedir}' ) > libssl.pc
818
819 openssl.pc:
820         @ ( echo 'prefix=$(INSTALLTOP)'; \
821             echo 'exec_prefix=$${prefix}'; \
822             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
823             echo 'includedir=$${prefix}/include'; \
824             echo ''; \
825             echo 'Name: OpenSSL'; \
826             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
827             echo 'Version: '$(VERSION); \
828             echo 'Requires: libssl libcrypto' ) > openssl.pc
829
830 configdata.pm: {- $config{build_file_template} -} $(SRCDIR)/Configurations/common.tmpl $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_infos}}) -}
831         @echo "Detected changed: $?"
832         @echo "Reconfiguring..."
833         $(SRCDIR)/Configure reconf
834         @echo "**************************************************"
835         @echo "***                                            ***"
836         @echo "***   Please run the same make command again   ***"
837         @echo "***                                            ***"
838         @echo "**************************************************"
839         @false
840
841 {-
842   use File::Basename;
843   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
844
845   # Helper function to figure out dependencies on libraries
846   # It takes a list of library names and outputs a list of dependencies
847   sub compute_lib_depends {
848       if ($disabled{shared}) {
849           return map { $_.$libext } @_;
850       }
851
852       # Depending on shared libraries:
853       # On Windows POSIX layers, we depend on {libname}.dll.a
854       # On Unix platforms, we depend on {shlibname}.so
855       return map { shlib_simple($_) } @_;
856   }
857
858   sub generatesrc {
859       my %args = @_;
860       my $generator = join(" ", @{$args{generator}});
861       my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
862       my $incs = join("", map { " -I".$_ } @{$args{incs}});
863       my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
864
865       if ($args{src} !~ /\.[sS]$/) {
866           if ($args{generator}->[0] =~ m|^.*\.in$|) {
867               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
868                                                    "util", "dofile.pl")),
869                                    rel2abs($config{builddir}));
870               return <<"EOF";
871 $args{src}: $args{generator}->[0] $deps
872         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
873             "-o$target{build_file}" $generator > \$@
874 EOF
875           } else {
876               return <<"EOF";
877 $args{src}: $args{generator}->[0] $deps
878         \$(PERL)$generator_incs $generator > \$@
879 EOF
880           }
881       } else {
882           if ($args{generator}->[0] =~ /\.pl$/) {
883               $generator = 'CC="$(CC)" $(PERL)'.$generator_incs.' '.$generator;
884           } elsif ($args{generator}->[0] =~ /\.m4$/) {
885               $generator = 'm4 -B 8192'.$generator_incs.' '.$generator.' >'
886           } elsif ($args{generator}->[0] =~ /\.S$/) {
887               $generator = undef;
888           } else {
889               die "Generator type for $args{src} unknown: $generator\n";
890           }
891
892           if (defined($generator)) {
893               # If the target is named foo.S in build.info, we want to
894               # end up generating foo.s in two steps.
895               if ($args{src} =~ /\.S$/) {
896                    (my $target = $args{src}) =~ s|\.S$|.s|;
897                    return <<"EOF";
898 $target: $args{generator}->[0] $deps
899         ( trap "rm -f \$@.*" INT 0; \\
900           $generator \$@.S; \\
901           \$(CC) $incs \$(CFLAGS) -E \$@.S | \\
902           \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@.i && \\
903           mv -f \$@.i \$@ )
904 EOF
905               }
906               # Otherwise....
907               return <<"EOF";
908 $args{src}: $args{generator}->[0] $deps
909         $generator \$@
910 EOF
911           }
912           return <<"EOF";
913 $args{src}: $args{generator}->[0] $deps
914         \$(CC) $incs \$(CFLAGS) -E \$< | \\
915         \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
916 EOF
917       }
918   }
919
920   # Should one wonder about the end of the Perl snippet, it's because this
921   # second regexp eats up line endings as well, if the removed path is the
922   # last in the line.  We may therefore need to put back a line ending.
923   sub src2obj {
924       my %args = @_;
925       my $obj = $args{obj};
926       my @srcs = map { if ($unified_info{generate}->{$_}) {
927                            (my $x = $_) =~ s/\.S$/.s/; $x
928                        } else {
929                            $_
930                        }
931                      } ( @{$args{srcs}} );
932       my $srcs = join(" ",  @srcs);
933       my $deps = join(" ", @srcs, @{$args{deps}});
934       my $incs = join("", map { " -I".$_ } @{$args{incs}});
935       unless ($disabled{zlib}) {
936           if ($withargs{zlib_include}) {
937               $incs .= " -I".$withargs{zlib_include};
938           }
939       }
940       my $ecflags = { lib => '$(LIB_CFLAGS)',
941                       dso => '$(DSO_CFLAGS)',
942                       bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
943       my $makedepprog = $config{makedepprog};
944       my $recipe = <<"EOF";
945 $obj$objext: $deps
946 EOF
947       if (!$disabled{makedepend} && $makedepprog !~ /\/makedepend/) {
948           $recipe .= <<"EOF";
949         \$(CC) $incs \$(CFLAGS) $ecflags -MMD -MF $obj$depext.tmp -MT \$\@ -c -o \$\@ $srcs
950         \@touch $obj$depext.tmp
951         \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
952                 rm -f $obj$depext.tmp; \\
953         else \\
954                 mv $obj$depext.tmp $obj$depext; \\
955         fi
956 EOF
957       } else {
958           $recipe .= <<"EOF";
959         \$(CC) $incs \$(CFLAGS) $ecflags -c -o \$\@ $srcs
960 EOF
961           if (!$disabled{makedepend} && $makedepprog =~ /\/makedepend/) {
962               $recipe .= <<"EOF";
963         -\$(MAKEDEPEND) -f- -o"|\$\@" -- $incs \$(CFLAGS) $ecflags -- $srcs \\
964             >$obj$depext.tmp 2>/dev/null
965         -\$(PERL) -i -pe 's/^.*\\|//; s/ \\/(\\\\.|[^ ])*//; \$\$_ = undef if (/: *\$\$/ || /^(#.*| *)\$\$/); \$\$_.="\\n" unless !defined(\$\$_) or /\\R\$\$/g;' $obj$depext.tmp
966         \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
967                 rm -f $obj$depext.tmp; \\
968         else \\
969                 mv $obj$depext.tmp $obj$depext; \\
970         fi
971 EOF
972           }
973       }
974       return $recipe;
975   }
976   # On Unix, we build shlibs from static libs, so we're ignoring the
977   # object file array.  We *know* this routine is only called when we've
978   # configure 'shared'.
979   sub libobj2shlib {
980       my %args = @_;
981       my $lib = $args{lib};
982       my $shlib = $args{shlib};
983       my $libd = dirname($lib);
984       my $libn = basename($lib);
985       (my $libname = $libn) =~ s/^lib//;
986       my $linklibs = join("", map { my $d = dirname($_);
987                                     my $f = basename($_);
988                                     (my $l = $f) =~ s/^lib//;
989                                     " -L$d -l$l" } @{$args{deps}});
990       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
991       my $shlib_target = $target{shared_target};
992       my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
993       my $target = shlib_simple($lib);
994       return <<"EOF"
995 # With a build on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
996 # that two files get produced, {shlibname}.dll and {libname}.dll.a.
997 # With all other Unix platforms, we often build a shared library with the
998 # SO version built into the file name and a symlink without the SO version
999 # It's not necessary to have both as targets.  The choice falls on the
1000 # simplest, {libname}$shlibextimport for Windows POSIX layers and
1001 # {libname}$shlibextsimple for the Unix platforms.
1002 $target: $lib$libext $deps $ordinalsfile
1003         \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
1004                 PLATFORM=\$(PLATFORM) \\
1005                 PERL="\$(PERL)" SRCDIR='\$(SRCDIR)' DSTDIR="$libd" \\
1006                 INSTALLTOP='\$(INSTALLTOP)' LIBDIR='\$(LIBDIR)' \\
1007                 LIBDEPS='\$(PLIB_LDFLAGS) '"$linklibs"' \$(EX_LIBS)' \\
1008                 LIBNAME=$libname LIBVERSION=\$(SHLIB_MAJOR).\$(SHLIB_MINOR) \\
1009                 LIBCOMPATVERSIONS=';\$(SHLIB_VERSION_HISTORY)' \\
1010                 CC='\$(CC)' CFLAGS='\$(CFLAGS) \$(LIB_CFLAGS)' \\
1011                 LDFLAGS='\$(LDFLAGS)' \\
1012                 SHARED_LDFLAGS='\$(LIB_LDFLAGS)' SHLIB_EXT=$shlibext \\
1013                 RC='\$(RC)' SHARED_RCFLAGS='\$(RCFLAGS)' \\
1014                 link_shlib.$shlib_target
1015 EOF
1016           . (windowsdll() ? <<"EOF" : "");
1017         rm -f apps/$shlib$shlibext
1018         rm -f test/$shlib$shlibext
1019         cp -p $shlib$shlibext apps/
1020         cp -p $shlib$shlibext test/
1021 EOF
1022   }
1023   sub obj2dso {
1024       my %args = @_;
1025       my $lib = $args{lib};
1026       my $libd = dirname($lib);
1027       my $libn = basename($lib);
1028       (my $libname = $libn) =~ s/^lib//;
1029       my $shlibdeps = join("", map { my $d = dirname($_);
1030                                      my $f = basename($_);
1031                                      (my $l = $f) =~ s/^lib//;
1032                                      " -L$d -l$l" } @{$args{deps}});
1033       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
1034       my $shlib_target = $target{shared_target};
1035       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
1036       my $target = dso($lib);
1037       return <<"EOF";
1038 $target: $objs $deps
1039         \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
1040                 PLATFORM=\$(PLATFORM) \\
1041                 PERL="\$(PERL)" SRCDIR='\$(SRCDIR)' DSTDIR="$libd" \\
1042                 LIBDEPS='\$(PLIB_LDFLAGS) '"$shlibdeps"' \$(EX_LIBS)' \\
1043                 LIBNAME=$libname LDFLAGS='\$(LDFLAGS)' \\
1044                 CC='\$(CC)' CFLAGS='\$(CFLAGS) \$(DSO_CFLAGS)' \\
1045                 SHARED_LDFLAGS='\$(DSO_LDFLAGS)' \\
1046                 SHLIB_EXT=$dsoext \\
1047                 LIBEXTRAS="$objs" \\
1048                 link_dso.$shlib_target
1049 EOF
1050   }
1051   sub obj2lib {
1052       my %args = @_;
1053       my $lib = $args{lib};
1054       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
1055       return <<"EOF";
1056 $lib$libext: $objs
1057         \$(AR) \$\@ \$\?
1058         \$(RANLIB) \$\@ || echo Never mind.
1059 EOF
1060   }
1061   sub obj2bin {
1062       my %args = @_;
1063       my $bin = $args{bin};
1064       my $bind = dirname($bin);
1065       my $binn = basename($bin);
1066       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
1067       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
1068       my $linklibs = join("", map { my $d = dirname($_);
1069                                     my $f = basename($_);
1070                                     $d = "." if $d eq $f;
1071                                     (my $l = $f) =~ s/^lib//;
1072                                     " -L$d -l$l" } @{$args{deps}});
1073       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
1074       return <<"EOF";
1075 $bin$exeext: $objs $deps
1076         \$(RM) $bin$exeext
1077         \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
1078                 PERL="\$(PERL)" SRCDIR=\$(SRCDIR) \\
1079                 APPNAME=$bin$exeext OBJECTS="$objs" \\
1080                 LIBDEPS='\$(PLIB_LDFLAGS) '"$linklibs"' \$(EX_LIBS)' \\
1081                 CC='\$(CC)' CFLAGS='\$(CFLAGS) \$(BIN_CFLAGS)' \\
1082                 LDFLAGS='\$(LDFLAGS)' LIBRPATH='\$(INSTALLTOP)/\$(LIBDIR)' \\
1083                 link_app.$shlib_target
1084 EOF
1085   }
1086   sub in2script {
1087       my %args = @_;
1088       my $script = $args{script};
1089       my $sources = join(" ", @{$args{sources}});
1090       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1091                                            "util", "dofile.pl")),
1092                            rel2abs($config{builddir}));
1093       return <<"EOF";
1094 $script: $sources
1095         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
1096             "-o$target{build_file}" $sources > "$script"
1097         chmod a+x $script
1098 EOF
1099   }
1100   sub generatedir {
1101       my %args = @_;
1102       my $dir = $args{dir};
1103       my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
1104       my @actions = ();
1105       my %extinfo = ( dso => $dsoext,
1106                       lib => $libext,
1107                       bin => $exeext );
1108
1109       foreach my $type (("dso", "lib", "bin", "script")) {
1110           next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
1111           # For lib object files, we could update the library.  However, it
1112           # was decided that it's enough to build the directory local object
1113           # files, so we don't need to add any actions, and the dependencies
1114           # are already taken care of.
1115           if ($type ne "lib") {
1116               foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1117                   if (dirname($prod) eq $dir) {
1118                       push @deps, $prod.$extinfo{$type};
1119                   } else {
1120                       push @actions, "\t@ : No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
1121                   }
1122               }
1123           }
1124       }
1125
1126       my $deps = join(" ", @deps);
1127       my $actions = join("\n", "", @actions);
1128       return <<"EOF";
1129 $args{dir} $args{dir}/: $deps$actions
1130 EOF
1131   }
1132   ""    # Important!  This becomes part of the template result.
1133 -}