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