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