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