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