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