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