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