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