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