78b1a5e514c009bff4d8122b244cbd0b17b4c8c5
[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.
244 AS={- $config{as} ? "\$(CROSS_COMPILE)$config{as}" : '$(CC) -c' -}
245 ASFLAGS={- join(' ', @{$config{asflags}}) || '$(CFLAGS)' -}
246 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
247
248 # For x86 assembler: Set PROCESSOR to 386 if you want to support
249 # the 80386.
250 PROCESSOR= {- $config{processor} -}
251
252 # We want error [and other] messages in English. Trouble is that make(1)
253 # doesn't pass macros down as environment variables unless there already
254 # was corresponding variable originally set. In other words we can only
255 # reassign environment variables, but not set new ones, not in portable
256 # manner that is. That's why we reassign several, just to be sure...
257 LC_ALL=C
258 LC_MESSAGES=C
259 LANG=C
260
261 # The main targets ###################################################
262
263 {- dependmagic('all'); -}: build_libs_nodep build_engines_nodep build_programs_nodep link-utils
264 {- dependmagic('build_libs'); -}: build_libs_nodep
265 {- dependmagic('build_engines'); -}: build_engines_nodep
266 {- dependmagic('build_programs'); -}: build_programs_nodep
267
268 build_generated: $(GENERATED_MANDATORY)
269 build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
270 build_engines_nodep: $(ENGINES)
271 build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
272
273 # Kept around for backward compatibility
274 build_apps build_tests: build_programs
275
276 # Convenience target to prebuild all generated files, not just the mandatory
277 # ones
278 build_all_generated: $(GENERATED_MANDATORY) $(GENERATED)
279
280 test: tests
281 {- dependmagic('tests'); -}: build_programs_nodep build_engines_nodep link-utils
282         @ : {- output_off() if $disabled{tests}; "" -}
283         ( cd test; \
284           mkdir -p test-runs; \
285           SRCTOP=../$(SRCDIR) \
286           BLDTOP=../$(BLDDIR) \
287           RESULT_D=test-runs \
288           PERL="$(PERL)" \
289           EXE_EXT={- $exeext -} \
290           OPENSSL_ENGINES=`cd ../$(BLDDIR)/engines; pwd` \
291           OPENSSL_DEBUG_MEMORY=on \
292             $(PERL) ../$(SRCDIR)/test/run_tests.pl $(TESTS) )
293         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
294         @echo "Tests are not supported with your chosen Configure options"
295         @ : {- output_on() if !$disabled{tests}; "" -}
296
297 list-tests:
298         @ : {- output_off() if $disabled{tests}; "" -}
299         @SRCTOP="$(SRCDIR)" \
300          $(PERL) $(SRCDIR)/test/run_tests.pl list
301         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
302         @echo "Tests are not supported with your chosen Configure options"
303         @ : {- output_on() if !$disabled{tests}; "" -}
304
305 install: install_sw install_ssldirs install_docs
306
307 uninstall: uninstall_docs uninstall_sw
308
309 libclean:
310         @set -e; for s in $(SHLIB_INFO); do \
311                 s1=`echo "$$s" | cut -f1 -d";"`; \
312                 s2=`echo "$$s" | cut -f2 -d";"`; \
313                 $(ECHO) $(RM) $$s1; \
314                 $(RM) $$s1; \
315                 if [ "$$s1" != "$$s2" ]; then \
316                         $(ECHO) $(RM) $$s2; \
317                         $(RM) $$s2; \
318                 fi; \
319         done
320         $(RM) $(LIBS)
321         $(RM) *.map
322
323 clean: libclean
324         $(RM) $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
325         $(RM) $(GENERATED)
326         -$(RM) `find . -name '*{- $depext -}' -a \! -path "./.git/*"`
327         -$(RM) `find . -name '*{- $objext -}' -a \! -path "./.git/*"`
328         $(RM) core
329         $(RM) tags TAGS doc-nits
330         $(RM) -r test/test-runs
331         $(RM) openssl.pc libcrypto.pc libssl.pc
332         -$(RM) `find . -type l -a \! -path "./.git/*"`
333         $(RM) $(TARFILE)
334
335 distclean: clean
336         $(RM) configdata.pm
337         $(RM) Makefile
338
339 # We check if any depfile is newer than Makefile and decide to
340 # concatenate only if that is true.
341 depend:
342         @: {- output_off() if $disabled{makedepend}; "" -}
343         @if egrep "^# DO NOT DELETE THIS LINE" Makefile >/dev/null && [ -z "`find $(DEPS) -newer Makefile 2>/dev/null; exit 0`" ]; then :; else \
344           ( $(PERL) -pe 'exit 0 if /^# DO NOT DELETE THIS LINE.*/' < Makefile; \
345             echo '# DO NOT DELETE THIS LINE -- make depend depends on it.'; \
346             echo; \
347             for f in $(DEPS); do \
348               if [ -f $$f ]; then cat $$f; fi; \
349             done ) > Makefile.new; \
350           if cmp Makefile.new Makefile >/dev/null 2>&1; then \
351             rm -f Makefile.new; \
352           else \
353             mv -f Makefile.new Makefile; \
354           fi; \
355         fi
356         @: {- output_on() if $disabled{makedepend}; "" -}
357
358 # Install helper targets #############################################
359
360 install_sw: all install_dev install_engines install_runtime
361
362 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
363
364 install_docs: install_man_docs install_html_docs
365
366 uninstall_docs: uninstall_man_docs uninstall_html_docs
367         $(RM) -r -v $(DESTDIR)$(DOCDIR)
368
369 install_ssldirs:
370         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
371         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
372         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
373         @set -e; for x in dummy $(MISC_SCRIPTS); do \
374                 if [ "$$x" = "dummy" ]; then continue; fi; \
375                 fn=`basename $$x`; \
376                 $(ECHO) "install $$x -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
377                 cp $$x $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
378                 chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
379                 mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
380                       $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
381         done
382         @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
383         @cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
384         @chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
385         @mv -f  $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
386         @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
387                 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
388                 cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
389                 chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
390         fi
391         @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
392         @cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
393         @chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
394         @mv -f  $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist
395         @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
396                 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
397                 cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
398                 chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
399         fi
400
401 install_dev:
402         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
403         @$(ECHO) "*** Installing development files"
404         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
405         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
406         @$(ECHO) "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
407         @cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
408         @chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
409         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
410         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
411                           $(BLDDIR)/include/openssl/*.h; do \
412                 fn=`basename $$i`; \
413                 $(ECHO) "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
414                 cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
415                 chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
416         done
417         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
418         @set -e; for l in $(INSTALL_LIBS); do \
419                 fn=`basename $$l`; \
420                 $(ECHO) "install $$l -> $(DESTDIR)$(libdir)/$$fn"; \
421                 cp $$l $(DESTDIR)$(libdir)/$$fn.new; \
422                 $(RANLIB) $(DESTDIR)$(libdir)/$$fn.new; \
423                 chmod 644 $(DESTDIR)$(libdir)/$$fn.new; \
424                 mv -f $(DESTDIR)$(libdir)/$$fn.new \
425                       $(DESTDIR)$(libdir)/$$fn; \
426         done
427         @ : {- output_off() if $disabled{shared}; "" -}
428         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
429                 s1=`echo "$$s" | cut -f1 -d";"`; \
430                 s2=`echo "$$s" | cut -f2 -d";"`; \
431                 fn1=`basename $$s1`; \
432                 fn2=`basename $$s2`; \
433                 : {- output_off() if windowsdll(); "" -}; \
434                 $(ECHO) "install $$s1 -> $(DESTDIR)$(libdir)/$$fn1"; \
435                 cp $$s1 $(DESTDIR)$(libdir)/$$fn1.new; \
436                 chmod 755 $(DESTDIR)$(libdir)/$$fn1.new; \
437                 mv -f $(DESTDIR)$(libdir)/$$fn1.new \
438                       $(DESTDIR)$(libdir)/$$fn1; \
439                 if [ "$$fn1" != "$$fn2" ]; then \
440                         $(ECHO) "link $(DESTDIR)$(libdir)/$$fn2 -> $(DESTDIR)$(libdir)/$$fn1"; \
441                         ln -sf $$fn1 $(DESTDIR)$(libdir)/$$fn2; \
442                 fi; \
443                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
444                 $(ECHO) "install $$s2 -> $(DESTDIR)$(libdir)/$$fn2"; \
445                 cp $$s2 $(DESTDIR)$(libdir)/$$fn2.new; \
446                 chmod 755 $(DESTDIR)$(libdir)/$$fn2.new; \
447                 mv -f $(DESTDIR)$(libdir)/$$fn2.new \
448                       $(DESTDIR)$(libdir)/$$fn2; \
449                 : {- output_on() unless windowsdll(); "" -}; \
450         done
451         @ : {- output_on() if $disabled{shared}; "" -}
452         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)/pkgconfig
453         @$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
454         @cp libcrypto.pc $(DESTDIR)$(libdir)/pkgconfig
455         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
456         @$(ECHO) "install libssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
457         @cp libssl.pc $(DESTDIR)$(libdir)/pkgconfig
458         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
459         @$(ECHO) "install openssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
460         @cp openssl.pc $(DESTDIR)$(libdir)/pkgconfig
461         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
462
463 uninstall_dev:
464         @$(ECHO) "*** Uninstalling development files"
465         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
466         @$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
467         @$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
468         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
469         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
470                           $(BLDDIR)/include/openssl/*.h; do \
471                 fn=`basename $$i`; \
472                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
473                 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
474         done
475         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
476         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
477         @set -e; for l in $(INSTALL_LIBS); do \
478                 fn=`basename $$l`; \
479                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn"; \
480                 $(RM) $(DESTDIR)$(libdir)/$$fn; \
481         done
482         @ : {- output_off() if $disabled{shared}; "" -}
483         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
484                 s1=`echo "$$s" | cut -f1 -d";"`; \
485                 s2=`echo "$$s" | cut -f2 -d";"`; \
486                 fn1=`basename $$s1`; \
487                 fn2=`basename $$s2`; \
488                 : {- output_off() if windowsdll(); "" -}; \
489                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn1"; \
490                 $(RM) $(DESTDIR)$(libdir)/$$fn1; \
491                 if [ "$$fn1" != "$$fn2" ]; then \
492                         $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
493                         $(RM) $(DESTDIR)$(libdir)/$$fn2; \
494                 fi; \
495                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
496                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
497                 $(RM) $(DESTDIR)$(libdir)/$$fn2; \
498                 : {- output_on() unless windowsdll(); "" -}; \
499         done
500         @ : {- output_on() if $disabled{shared}; "" -}
501         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
502         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
503         $(RM) $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
504         -$(RMDIR) $(DESTDIR)$(libdir)/pkgconfig
505         -$(RMDIR) $(DESTDIR)$(libdir)
506
507 install_engines:
508         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
509         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
510         @$(ECHO) "*** Installing engines"
511         @set -e; for e in dummy $(INSTALL_ENGINES); do \
512                 if [ "$$e" = "dummy" ]; then continue; fi; \
513                 fn=`basename $$e`; \
514                 $(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
515                 cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
516                 chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
517                 mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
518                       $(DESTDIR)$(ENGINESDIR)/$$fn; \
519         done
520
521 uninstall_engines:
522         @$(ECHO) "*** Uninstalling engines"
523         @set -e; for e in dummy $(INSTALL_ENGINES); do \
524                 if [ "$$e" = "dummy" ]; then continue; fi; \
525                 fn=`basename $$e`; \
526                 if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
527                         continue; \
528                 fi; \
529                 $(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
530                 $(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
531         done
532         -$(RMDIR) $(DESTDIR)$(ENGINESDIR)
533
534 install_runtime:
535         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
536         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
537         @ : {- output_off() if windowsdll(); "" -}
538         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
539         @ : {- output_on() if windowsdll(); "" -}
540         @$(ECHO) "*** Installing runtime files"
541         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
542                 if [ "$$s" = "dummy" ]; then continue; fi; \
543                 fn=`basename $$s`; \
544                 : {- output_off() unless windowsdll(); "" -}; \
545                 $(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
546                 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
547                 chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
548                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
549                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
550                 : {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
551                 $(ECHO) "install $$s -> $(DESTDIR)$(libdir)/$$fn"; \
552                 cp $$s $(DESTDIR)$(libdir)/$$fn.new; \
553                 chmod 755 $(DESTDIR)$(libdir)/$$fn.new; \
554                 mv -f $(DESTDIR)$(libdir)/$$fn.new \
555                       $(DESTDIR)$(libdir)/$$fn; \
556                 : {- output_on() if windowsdll(); "" -}; \
557         done
558         @set -e; for x in dummy $(INSTALL_PROGRAMS); do \
559                 if [ "$$x" = "dummy" ]; then continue; fi; \
560                 fn=`basename $$x`; \
561                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
562                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
563                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
564                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
565                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
566         done
567         @set -e; for x in dummy $(BIN_SCRIPTS); do \
568                 if [ "$$x" = "dummy" ]; then continue; fi; \
569                 fn=`basename $$x`; \
570                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
571                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
572                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
573                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
574                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
575         done
576
577 uninstall_runtime:
578         @$(ECHO) "*** Uninstalling runtime files"
579         @set -e; for x in dummy $(INSTALL_PROGRAMS); \
580         do  \
581                 if [ "$$x" = "dummy" ]; then continue; fi; \
582                 fn=`basename $$x`; \
583                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
584                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
585         done;
586         @set -e; for x in dummy $(BIN_SCRIPTS); \
587         do  \
588                 if [ "$$x" = "dummy" ]; then continue; fi; \
589                 fn=`basename $$x`; \
590                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
591                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
592         done
593         @ : {- output_off() unless windowsdll(); "" -}
594         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
595                 if [ "$$s" = "dummy" ]; then continue; fi; \
596                 fn=`basename $$s`; \
597                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
598                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
599         done
600         @ : {- output_on() unless windowsdll(); "" -}
601         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
602
603
604 install_man_docs:
605         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
606         @$(ECHO) "*** Installing manpages"
607         $(PERL) $(SRCDIR)/util/process_docs.pl \
608                 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX)
609
610 uninstall_man_docs:
611         @$(ECHO) "*** Uninstalling manpages"
612         $(PERL) $(SRCDIR)/util/process_docs.pl \
613                 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX) \
614                 --remove
615
616 install_html_docs:
617         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
618         @$(ECHO) "*** Installing HTML manpages"
619         $(PERL) $(SRCDIR)/util/process_docs.pl \
620                 --destdir=$(DESTDIR)$(HTMLDIR) --type=html
621
622 uninstall_html_docs:
623         @$(ECHO) "*** Uninstalling manpages"
624         $(PERL) $(SRCDIR)/util/process_docs.pl \
625                 --destdir=$(DESTDIR)$(HTMLDIR) --type=html --remove
626
627
628 # Developer targets (note: these are only available on Unix) #########
629
630 update: generate errors ordinals
631
632 generate: generate_apps generate_crypto_bn generate_crypto_objects \
633           generate_crypto_conf generate_crypto_asn1 generate_fuzz_oids
634
635 doc-nits:
636         (cd $(SRCDIR); $(PERL) util/find-doc-nits -n -p ) >doc-nits
637         if [ -s doc-nits ] ; then cat doc-nits; rm doc-nits ; exit 1; fi
638
639 # Test coverage is a good idea for the future
640 #coverage: $(PROGRAMS) $(TESTPROGRAMS)
641 #       ...
642
643 lint:
644         lint -DLINT $(INCLUDES) $(SRCS)
645
646 generate_apps:
647         ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
648                                 < apps/openssl.cnf > apps/openssl-vms.cnf )
649
650 generate_crypto_bn:
651         ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
652
653 generate_crypto_objects:
654         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
655                                 crypto/objects/objects.txt \
656                                 crypto/objects/obj_mac.num \
657                                 include/openssl/obj_mac.h )
658         ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
659                                 include/openssl/obj_mac.h \
660                                 crypto/objects/obj_dat.h )
661         ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
662                                 crypto/objects/obj_mac.num \
663                                 crypto/objects/obj_xref.txt \
664                                 > crypto/objects/obj_xref.h )
665
666 generate_crypto_conf:
667         ( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
668                                 > crypto/conf/conf_def.h )
669
670 generate_crypto_asn1:
671         ( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
672                                 > crypto/asn1/charmap.h )
673
674 generate_fuzz_oids:
675         ( cd $(SRCDIR); $(PERL) fuzz/mkfuzzoids.pl \
676                                 crypto/objects/obj_dat.h \
677                                 > fuzz/oids.txt )
678
679 # Set to -force to force a rebuild
680 ERROR_REBUILD=
681 errors:
682         ( cd $(SRCDIR); $(PERL) util/ck_errf.pl -strict */*.c */*/*.c )
683         ( b=`pwd`; cd $(SRCDIR); \
684           $(PERL) -I$$b util/mkerr.pl $(ERROR_REBUILD) -internal )
685         ( b=`pwd`; cd $(SRCDIR)/engines; \
686           for E in *.ec ; do \
687               $(PERL) -I$$b ../util/mkerr.pl $(ERROR_REBUILD) -static \
688                 -conf $$E `basename $$E .ec`.c ; \
689           done )
690
691 ordinals:
692         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
693         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl ssl update )
694
695 test_ordinals:
696         ( cd test; \
697           SRCTOP=../$(SRCDIR) \
698           BLDTOP=../$(BLDDIR) \
699             $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
700
701 tags TAGS: FORCE
702         rm -f TAGS tags
703         -ctags -R .
704         -etags `find . -name '*.[ch]' -o -name '*.pm'`
705
706 # Release targets (note: only available on Unix) #####################
707
708 # If your tar command doesn't support --owner and --group, make sure to
709 # use one that does, for example GNU tar
710 TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf -
711 PREPARE_CMD=:
712 tar:
713         set -e; \
714         TMPDIR=/var/tmp/openssl-copy.$$$$; \
715         DISTDIR=$(NAME); \
716         mkdir -p $$TMPDIR/$$DISTDIR; \
717         (cd $(SRCDIR); \
718          excl_re=`git submodule status | sed -e 's/^.//' | cut -d' ' -f2`; \
719          excl_re="^(fuzz/corpora|`echo $$excl_re | sed -e 's/ /$$|/g'`\$$)"; \
720          echo "$$excl_re"; \
721          git ls-tree -r --name-only --full-tree HEAD \
722          | egrep -v "$$excl_re" \
723          | while read F; do \
724                mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
725                cp $$F $$TMPDIR/$$DISTDIR/$$F; \
726            done); \
727         (cd $$TMPDIR/$$DISTDIR; \
728          $(PREPARE_CMD); \
729          find . -type d -print | xargs chmod 755; \
730          find . -type f -print | xargs chmod a+r; \
731          find . -type f -perm -0100 -print | xargs chmod a+x); \
732         (cd $$TMPDIR; $(TAR_COMMAND) $$DISTDIR) \
733         | (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
734         rm -rf $$TMPDIR
735         cd $(SRCDIR); ls -l $(TARFILE).gz
736
737 dist:
738         @$(MAKE) PREPARE_CMD='$(PERL) ./Configure dist' TARFILE="$(TARFILE)" NAME="$(NAME)" tar
739
740 # Helper targets #####################################################
741
742 link-utils: $(BLDDIR)/util/opensslwrap.sh
743
744 $(BLDDIR)/util/opensslwrap.sh: configdata.pm
745         @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
746             mkdir -p "$(BLDDIR)/util"; \
747             ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
748         fi
749
750 FORCE:
751
752 # Building targets ###################################################
753
754 libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { shlib_simple($_) } @{$unified_info{libraries}}) -}
755 libcrypto.pc:
756         @ ( echo 'prefix=$(INSTALLTOP)'; \
757             echo 'exec_prefix=$${prefix}'; \
758             if [ -n "$(LIBDIR)" ]; then \
759                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
760             else \
761                 echo 'libdir=$(libdir)'; \
762             fi; \
763             echo 'includedir=$${prefix}/include'; \
764             echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
765             echo ''; \
766             echo 'Name: OpenSSL-libcrypto'; \
767             echo 'Description: OpenSSL cryptography library'; \
768             echo 'Version: '$(VERSION); \
769             echo 'Libs: -L$${libdir} -lcrypto'; \
770             echo 'Libs.private: $(EX_LIBS)'; \
771             echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
772
773 libssl.pc:
774         @ ( echo 'prefix=$(INSTALLTOP)'; \
775             echo 'exec_prefix=$${prefix}'; \
776             if [ -n "$(LIBDIR)" ]; then \
777                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
778             else \
779                 echo 'libdir=$(libdir)'; \
780             fi; \
781             echo 'includedir=$${prefix}/include'; \
782             echo ''; \
783             echo 'Name: OpenSSL-libssl'; \
784             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
785             echo 'Version: '$(VERSION); \
786             echo 'Requires.private: libcrypto'; \
787             echo 'Libs: -L$${libdir} -lssl'; \
788             echo 'Cflags: -I$${includedir}' ) > libssl.pc
789
790 openssl.pc:
791         @ ( echo 'prefix=$(INSTALLTOP)'; \
792             echo 'exec_prefix=$${prefix}'; \
793             if [ -n "$(LIBDIR)" ]; then \
794                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
795             else \
796                 echo 'libdir=$(libdir)'; \
797             fi; \
798             echo 'includedir=$${prefix}/include'; \
799             echo ''; \
800             echo 'Name: OpenSSL'; \
801             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
802             echo 'Version: '$(VERSION); \
803             echo 'Requires: libssl libcrypto' ) > openssl.pc
804
805 configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
806         @echo "Detected changed: $?"
807         $(PERL) configdata.pm -r
808         @echo "**************************************************"
809         @echo "***                                            ***"
810         @echo "***   Please run the same make command again   ***"
811         @echo "***                                            ***"
812         @echo "**************************************************"
813         @false
814
815 reconfigure reconf:
816         $(PERL) configdata.pm -r
817
818 {-
819   use File::Basename;
820   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
821
822   # Helper function to figure out dependencies on libraries
823   # It takes a list of library names and outputs a list of dependencies
824   sub compute_lib_depends {
825       if ($disabled{shared}) {
826           return map { lib($_) } @_;
827       }
828
829       # Depending on shared libraries:
830       # On Windows POSIX layers, we depend on {libname}.dll.a
831       # On Unix platforms, we depend on {shlibname}.so
832       return map { $_ =~ /\.a$/ ? $`.$libext : shlib_simple($_) } @_;
833   }
834
835   sub generatesrc {
836       my %args = @_;
837       my $generator = join(" ", @{$args{generator}});
838       my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
839       my $incs = join("", map { " -I".$_ } @{$args{incs}});
840       my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
841
842       if ($args{src} !~ /\.[sS]$/) {
843           if ($args{generator}->[0] =~ m|^.*\.in$|) {
844               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
845                                                    "util", "dofile.pl")),
846                                    rel2abs($config{builddir}));
847               return <<"EOF";
848 $args{src}: $args{generator}->[0] $deps
849         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
850             "-o$target{build_file}" $generator > \$@
851 EOF
852           } else {
853               return <<"EOF";
854 $args{src}: $args{generator}->[0] $deps
855         \$(PERL)$generator_incs $generator > \$@
856 EOF
857           }
858       } else {
859           if ($args{generator}->[0] =~ /\.pl$/) {
860               $generator = 'CC="$(CC)" $(PERL)'.$generator_incs.' '.$generator;
861           } elsif ($args{generator}->[0] =~ /\.m4$/) {
862               $generator = 'm4 -B 8192'.$generator_incs.' '.$generator.' >'
863           } elsif ($args{generator}->[0] =~ /\.S$/) {
864               $generator = undef;
865           } else {
866               die "Generator type for $args{src} unknown: $generator\n";
867           }
868
869           my $cppflags = {
870               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
871               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
872               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
873           } -> {$args{intent}};
874           if (defined($generator)) {
875               # If the target is named foo.S in build.info, we want to
876               # end up generating foo.s in two steps.
877               if ($args{src} =~ /\.S$/) {
878                    (my $target = $args{src}) =~ s|\.S$|.s|;
879                    return <<"EOF";
880 $target: $args{generator}->[0] $deps
881         ( trap "rm -f \$@.*" INT 0; \\
882           $generator \$@.S; \\
883           \$(CPP) $incs $cppflags \$@.S | \\
884           \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@.i && \\
885           mv -f \$@.i \$@ )
886 EOF
887               }
888               # Otherwise....
889               return <<"EOF";
890 $args{src}: $args{generator}->[0] $deps
891         $generator \$@
892 EOF
893           }
894           return <<"EOF";
895 $args{src}: $args{generator}->[0] $deps
896         \$(CPP) $incs $cppflags $args{generator}->[0] | \\
897         \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
898 EOF
899       }
900   }
901
902   # Should one wonder about the end of the Perl snippet, it's because this
903   # second regexp eats up line endings as well, if the removed path is the
904   # last in the line.  We may therefore need to put back a line ending.
905   sub src2obj {
906       my %args = @_;
907       (my $obj = $args{obj}) =~ s|\.o$||;
908       my @srcs = map { if ($unified_info{generate}->{$_}) {
909                            (my $x = $_) =~ s/\.S$/.s/; $x
910                        } else {
911                            $_
912                        }
913                      } ( @{$args{srcs}} );
914       my $srcs = join(" ",  @srcs);
915       my $deps = join(" ", @srcs, @{$args{deps}});
916       my $incs = join("", map { " -I".$_ } @{$args{incs}});
917       my $cmd;
918       my $cmdflags;
919       my $cmdcompile;
920       my $makedepprog = $disabled{makedepend} ? undef : $config{makedepprog};
921       if (grep /\.rc$/, @srcs) {
922           $cmd = '$(RC)';
923           $cmdflags = '$(RCFLAGS)';
924           $cmdcompile = '';
925           $makedepprog = undef;
926       } elsif (grep /\.(cc|cpp)$/, @srcs) {
927           $cmd = '$(CXX)';
928           $cmdcompile = ' -c';
929           $cmdflags = {
930               lib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
931               dso => '$(DSO_CXXFLAGS) $(DSO_CPPFLAGS)',
932               bin => '$(BIN_CXXFLAGS) $(BIN_CPPFLAGS)'
933           } -> {$args{intent}};
934       } else {
935           $cmd = '$(CC)';
936           $cmdcompile = ' -c';
937           $cmdflags = {
938               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
939               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
940               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
941           } -> {$args{intent}};
942       }
943       $cmdflags .= $cmdcompile;
944       my $recipe = <<"EOF";
945 $obj$objext: $deps
946 EOF
947       if (defined $makedepprog && $makedepprog !~ /\/makedepend/) {
948           $recipe .= <<"EOF";
949         $cmd $incs $cmdflags -MMD -MF $obj$depext.tmp -MT \$\@ -c -o \$\@ $srcs
950         \@touch $obj$depext.tmp
951         \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
952                 rm -f $obj$depext.tmp; \\
953         else \\
954                 mv $obj$depext.tmp $obj$depext; \\
955         fi
956 EOF
957       } else {
958           $recipe .= <<"EOF";
959         $cmd $incs $cmdflags -o \$\@ $srcs
960 EOF
961           if (defined $makedepprog  && $makedepprog =~ /\/makedepend/) {
962               $recipe .= <<"EOF";
963         -\$(MAKEDEPEND) -f- -o"|\$\@" -- $incs $cmdflags -- $srcs \\
964             >$obj$depext.tmp 2>/dev/null
965         -\$(PERL) -i -pe 's/^.*\\|//; s/ \\/(\\\\.|[^ ])*//; \$\$_ = undef if (/: *\$\$/ || /^(#.*| *)\$\$/); \$\$_.="\\n" unless !defined(\$\$_) or /\\R\$\$/g;' $obj$depext.tmp
966         \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
967                 rm -f $obj$depext.tmp; \\
968         else \\
969                 mv $obj$depext.tmp $obj$depext; \\
970         fi
971 EOF
972           }
973       }
974       return $recipe;
975   }
976   # On Unix, we build shlibs from static libs, so we're ignoring the
977   # object file array.  We *know* this routine is only called when we've
978   # configure 'shared'.
979   sub libobj2shlib {
980       my %args = @_;
981       my $lib = $args{lib};
982       my $shlib = $args{shlib};
983       my $libd = dirname($lib);
984       my $libn = basename($lib);
985       (my $libname = $libn) =~ s/^lib//;
986       my @linkdirs = ();
987       foreach (@{args{deps}}) {
988           my $d = dirname($_);
989           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
990       }
991       my $linkflags = join("", map { "-L$_ " } @linkdirs);
992       my $linklibs = join("", map { my $f = basename($_);
993                                     (my $l = $f) =~ s/^lib//;
994                                     " -l$l" } @{$args{deps}});
995       my @objs = map { (my $x = $_) =~ s|\.o$|$objext|; $x }
996                  grep { $_ =~ m|\.o$| }
997                  @{$args{objs}};
998       my @defs = grep { $_ =~ /\.(def|map)$/ } @{$args{objs}};
999       my @deps = compute_lib_depends(@{$args{deps}});
1000       die "More than one exported symbol map" if scalar @defs > 1;
1001       my $objs = join(" ", @objs);
1002       my $deps = join(" ", @objs, @defs, @deps);
1003       my $target = shlib_simple($lib);
1004       my $target_full = shlib($lib);
1005       my $shared_soname = "";
1006       $shared_soname .= ' '.$target{shared_sonameflag}.basename($target_full)
1007           if defined $target{shared_sonameflag};
1008       my $shared_imp = "";
1009       $shared_imp .= ' '.$target{shared_impflag}.basename($target)
1010           if defined $target{shared_impflag};
1011       my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
1012       my $recipe = <<"EOF";
1013 # When building on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
1014 # that two files get produced, {shlibname}.dll and {libname}.dll.a.
1015 # With all other Unix platforms, we often build a shared library with the
1016 # SO version built into the file name and a symlink without the SO version
1017 # It's not necessary to have both as targets.  The choice falls on the
1018 # simplest, {libname}\$(SHLIB_EXT_IMPORT) for Windows POSIX layers and
1019 # {libname}\$(SHLIB_EXT_SIMPLE) for the Unix platforms.
1020 $target: $deps
1021         \$(CC) \$(LIB_CFLAGS) $linkflags\$(LIB_LDFLAGS)$shared_soname$shared_imp \\
1022                 -o $target_full$shared_def $objs \\
1023                 \$(PLIB_LDFLAGS) $linklibs \$(EX_LIBS)
1024 EOF
1025       if (windowsdll()) {
1026           $recipe .= <<"EOF";
1027         rm -f apps/$shlib'\$(SHLIB_EXT)'
1028         rm -f test/$shlib'\$(SHLIB_EXT)'
1029         rm -f fuzz/$shlib'\$(SHLIB_EXT)'
1030         cp -p $shlib'\$(SHLIB_EXT)' apps/
1031         cp -p $shlib'\$(SHLIB_EXT)' test/
1032         cp -p $shlib'\$(SHLIB_EXT)' fuzz/
1033 EOF
1034       } else {
1035           $recipe .= <<"EOF";
1036         if [ '$target' != '$target_full' ]; then \\
1037                 rm -f $target; \\
1038                 ln -s $target_full $target; \\
1039         fi
1040 EOF
1041       }
1042   }
1043   sub obj2dso {
1044       my %args = @_;
1045       my $dso = $args{lib};
1046       my $dsod = dirname($dso);
1047       my $dson = basename($dso);
1048       my @linkdirs = ();
1049       foreach (@{args{deps}}) {
1050           my $d = dirname($_);
1051           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1052       }
1053       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1054       my $linklibs = join("", map { my $f = basename($_);
1055                                     (my $l = $f) =~ s/^lib//;
1056                                     " -l$l" } @{$args{deps}});
1057       my @objs = map { (my $x = $_) =~ s|\.o$|$objext|; $x } @{$args{objs}};
1058       my @deps = compute_lib_depends(@{$args{deps}});
1059       my $objs = join(" ", @objs);
1060       my $deps = join(" ", @deps);
1061       my $target = dso($dso);
1062       return <<"EOF";
1063 $target: $objs $deps
1064         \$(CC) \$(DSO_CFLAGS) $linkflags\$(DSO_LDFLAGS) \\
1065                 -o $target $objs \\
1066                 \$(PLIB_LDFLAGS) $linklibs \$(EX_LIBS)
1067 EOF
1068   }
1069   sub obj2lib {
1070       my %args = @_;
1071       (my $lib = $args{lib}) =~ s/\.a$//;
1072       my @objs = map { (my $x = $_) =~ s|\.o$|$objext|; $x } @{$args{objs}};
1073       my $objs = join(" ", @objs);
1074       return <<"EOF";
1075 $lib$libext: $objs
1076         \$(AR) \$(ARFLAGS) \$\@ \$\?
1077         \$(RANLIB) \$\@ || echo Never mind.
1078 EOF
1079   }
1080   sub obj2bin {
1081       my %args = @_;
1082       my $bin = $args{bin};
1083       my $bind = dirname($bin);
1084       my $binn = basename($bin);
1085       my $objs = join(" ", map { (my $x = $_) =~ s|\.o$|$objext|; $x }
1086                            @{$args{objs}});
1087       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
1088       my @linkdirs = ();
1089       foreach (@{args{deps}}) {
1090           next if $_ =~ /\.a$/;
1091           my $d = dirname($_);
1092           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1093       }
1094       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1095       my $linklibs = join("", map { if ($_ =~ /\.a$/) {
1096                                         " $_";
1097                                     } else {
1098                                         my $f = basename($_);
1099                                         (my $l = $f) =~ s/^lib//;
1100                                         " -l$l"
1101                                     }
1102                                   } @{$args{deps}});
1103       my $cmd = '$(CC)';
1104       my $cmdflags = '$(BIN_CFLAGS)';
1105       if (grep /_cc\.o$/, @{$args{objs}}) {
1106           $cmd = '$(CXX)';
1107           $cmdflags = '$(BIN_CXXFLAGS)';
1108       }
1109       return <<"EOF";
1110 $bin$exeext: $objs $deps
1111         rm -f $bin$exeext
1112         \$\${LDCMD:-$cmd} $cmdflags $linkflags\$(BIN_LDFLAGS) \\
1113                 -o $bin$exeext $objs \\
1114                 \$(PLIB_LDFLAGS) $linklibs \$(EX_LIBS)
1115 EOF
1116   }
1117   sub in2script {
1118       my %args = @_;
1119       my $script = $args{script};
1120       my $sources = join(" ", @{$args{sources}});
1121       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1122                                            "util", "dofile.pl")),
1123                            rel2abs($config{builddir}));
1124       return <<"EOF";
1125 $script: $sources
1126         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
1127             "-o$target{build_file}" $sources > "$script"
1128         chmod a+x $script
1129 EOF
1130   }
1131   sub generatedir {
1132       my %args = @_;
1133       my $dir = $args{dir};
1134       my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
1135       my @actions = ();
1136       my %extinfo = ( dso => $dsoext,
1137                       lib => $libext,
1138                       bin => $exeext );
1139
1140       foreach my $type (("dso", "lib", "bin", "script")) {
1141           next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
1142           # For lib object files, we could update the library.  However, it
1143           # was decided that it's enough to build the directory local object
1144           # files, so we don't need to add any actions, and the dependencies
1145           # are already taken care of.
1146           if ($type ne "lib") {
1147               foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1148                   if (dirname($prod) eq $dir) {
1149                       push @deps, $prod.$extinfo{$type};
1150                   } else {
1151                       push @actions, "\t@ : No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
1152                   }
1153               }
1154           }
1155       }
1156
1157       my $deps = join(" ", @deps);
1158       my $actions = join("\n", "", @actions);
1159       return <<"EOF";
1160 $args{dir} $args{dir}/: $deps$actions
1161 EOF
1162   }
1163   ""    # Important!  This becomes part of the template result.
1164 -}