make update
[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_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf - 
664 PREPARE_CMD=:
665 tar:
666         TMPDIR=/var/tmp/openssl-copy.$$$$; \
667         DISTDIR=$(NAME); \
668         mkdir -p $$TMPDIR/$$DISTDIR; \
669         (cd $(SRCDIR); \
670          git ls-tree -r --name-only --full-tree HEAD \
671          | while read F; do \
672                mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
673                cp $$F $$TMPDIR/$$DISTDIR/$$F; \
674            done); \
675         (cd $$TMPDIR; \
676          $(PREPARE_CMD); \
677          find $$TMPDIR/$$DISTDIR -type d -print | xargs chmod 755; \
678          find $$TMPDIR/$$DISTDIR -type f -print | xargs chmod a+r; \
679          find $$TMPDIR/$$DISTDIR -type f -perm -0100 -print | xargs chmod a+x; \
680          $(TAR_COMMAND) $$DISTDIR) \
681         | (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
682         rm -rf $$TMPDIR
683         cd $(SRCDIR); ls -l $(TARFILE).gz
684
685 dist:
686         @$(MAKE) PREPARE_CMD='./Configure dist' tar
687
688 # Helper targets #####################################################
689
690 link-utils: $(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/shlib_wrap.sh
691
692 $(BLDDIR)/util/opensslwrap.sh: configdata.pm
693         @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
694             mkdir -p "$(BLDDIR)/util"; \
695             ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
696         fi
697 $(BLDDIR)/util/shlib_wrap.sh: configdata.pm
698         @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
699             mkdir -p "$(BLDDIR)/util"; \
700             ln -sf "../$(SRCDIR)/util/shlib_wrap.sh" "$(BLDDIR)/util"; \
701         fi
702
703 $(SRCDIR)/apps/openssl-vms.cnf: $(SRCDIR)/apps/openssl.cnf
704         $(PERL) $(SRCDIR)/VMS/VMSify-conf.pl \
705                 < $(SRCDIR)/apps/openssl.cnf > $(SRCDIR)/apps/openssl-vms.cnf
706
707 {- # because the program apps/openssl has object files as sources, and
708    # they then have the corresponding C files as source, we need to chain
709    # the lookups in %unified_info
710    my $apps_openssl = catfile("apps","openssl");
711    our @openssl_source = map { @{$unified_info{sources}->{$_}} }
712                          @{$unified_info{sources}->{$apps_openssl}};
713    ""; -}
714 $(SRCDIR)/apps/progs.h:
715         $(RM) $@
716         $(PERL) $(SRCDIR)/apps/progs.pl {- join(" ", @openssl_source) -} > $@
717
718 $(SRCDIR)/crypto/bn/bn_prime.h: $(SRCDIR)/crypto/bn/bn_prime.pl
719         $(PERL) $(SRCDIR)/crypto/bn/bn_prime.pl > $(SRCDIR)/crypto/bn/bn_prime.h
720
721 $(SRCDIR)/crypto/objects/obj_dat.h: $(SRCDIR)/crypto/objects/obj_dat.pl \
722                                     $(SRCDIR)/include/openssl/obj_mac.h
723         $(PERL) $(SRCDIR)/crypto/objects/obj_dat.pl \
724                 $(SRCDIR)/include/openssl/obj_mac.h \
725                 $(SRCDIR)/crypto/objects/obj_dat.h
726
727 # objects.pl both reads and writes obj_mac.num
728 $(SRCDIR)/include/openssl/obj_mac.h: $(SRCDIR)/crypto/objects/objects.pl \
729                                      $(SRCDIR)/crypto/objects/objects.txt \
730                                      $(SRCDIR)/crypto/objects/obj_mac.num
731         $(PERL) $(SRCDIR)/crypto/objects/objects.pl \
732                 $(SRCDIR)/crypto/objects/objects.txt \
733                 $(SRCDIR)/crypto/objects/obj_mac.num \
734                 $(SRCDIR)/include/openssl/obj_mac.h
735         @sleep 1; touch $(SRCDIR)/include/openssl/obj_mac.h; sleep 1
736
737 $(SRCDIR)/crypto/objects/obj_xref.h: $(SRCDIR)/crypto/objects/objxref.pl \
738                                      $(SRCDIR)/crypto/objects/obj_xref.txt \
739                                      $(SRCDIR)/crypto/objects/obj_mac.num
740         $(PERL) $(SRCDIR)/crypto/objects/objxref.pl \
741                 $(SRCDIR)/crypto/objects/obj_mac.num \
742                 $(SRCDIR)/crypto/objects/obj_xref.txt \
743                 > $(SRCDIR)/crypto/objects/obj_xref.h
744         @sleep 1; touch $(SRCDIR)/crypto/objects/obj_xref.h; sleep 1
745
746 FORCE:
747
748 # Building targets ###################################################
749
750 libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS)
751 libcrypto.pc:
752         @ ( echo 'prefix=$(INSTALLTOP)'; \
753             echo 'exec_prefix=$${prefix}'; \
754             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
755             echo 'includedir=$${prefix}/include'; \
756             echo ''; \
757             echo 'Name: OpenSSL-libcrypto'; \
758             echo 'Description: OpenSSL cryptography library'; \
759             echo 'Version: '$(VERSION); \
760             echo 'Libs: -L$${libdir} -lcrypto'; \
761             echo 'Libs.private: $(EX_LIBS)'; \
762             echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
763
764 libssl.pc:
765         @ ( echo 'prefix=$(INSTALLTOP)'; \
766             echo 'exec_prefix=$${prefix}'; \
767             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
768             echo 'includedir=$${prefix}/include'; \
769             echo ''; \
770             echo 'Name: OpenSSL-libssl'; \
771             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
772             echo 'Version: '$(VERSION); \
773             echo 'Requires.private: libcrypto'; \
774             echo 'Libs: -L$${libdir} -lssl'; \
775             echo 'Libs.private: $(EX_LIBS)'; \
776             echo 'Cflags: -I$${includedir}' ) > libssl.pc
777
778 openssl.pc:
779         @ ( echo 'prefix=$(INSTALLTOP)'; \
780             echo 'exec_prefix=$${prefix}'; \
781             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
782             echo 'includedir=$${prefix}/include'; \
783             echo ''; \
784             echo 'Name: OpenSSL'; \
785             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
786             echo 'Version: '$(VERSION); \
787             echo 'Requires: libssl libcrypto' ) > openssl.pc
788
789 # Note on the use of $(MFLAGS): this was an older variant of MAKEFLAGS which
790 # wasn't passed down automatically.  It's quite safe to use it like we do
791 # below; if it doesn't exist, the result will be empty and 'make' will pick
792 # up $(MAKEFLAGS) which is passed down as an environment variable.
793 configdata.pm: {- $config{build_file_template} -} $(SRCDIR)/Configurations/common.tmpl $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_infos}}) -}
794         @echo "Detected changed: $?"
795         @echo "Reconfiguring..."
796         $(SRCDIR)/Configure reconf
797         @echo "**************************************************"
798         @echo "***                                            ***"
799         @echo "***   Please run the same make command again   ***"
800         @echo "***                                            ***"
801         @echo "**************************************************"
802         @false
803
804 {-
805   use File::Basename;
806   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
807
808   # Helper function to figure out dependencies on libraries
809   # It takes a list of library names and outputs a list of dependencies
810   sub compute_lib_depends {
811       if ($disabled{shared}) {
812           return map { $_.$libext } @_;
813       }
814
815       # Depending on shared libraries:
816       # On Windows POSIX layers, we depend on {libname}.dll.a
817       # On Unix platforms, we depend on {shlibname}.so
818       return map { shlib_simple($_) } @_;
819   }
820
821   sub generatesrc {
822       my %args = @_;
823       my $generator = join(" ", @{$args{generator}});
824
825       if ($args{src} !~ /\.[sS]$/) {
826           return <<"EOF";
827 $args{src}: $args{generator}->[0]
828         \$(PERL) $generator > \$@
829 EOF
830       } else {
831           if ($args{generator}->[0] =~ /\.[sS]$/) {
832               return <<"EOF";
833 $args{src}: $args{generator}->[0]
834         \$(CC) \$(CFLAGS) -E \$< > \$@
835 EOF
836           } elsif ($args{generator}->[0] =~ /\.pl$/) {
837              return <<"EOF";
838 $args{src}: $args{generator}->[0]
839         ( trap "rm -f \$@.S" INT; \\
840           CC="\$(CC)" \$(PERL) $generator \$@.S; \\
841           if grep '^#' \$@.S >/dev/null; then \\
842               \$(CC) -E -P \$@.S > \$@ && rm -f \$@.S; \\
843           else \\
844               mv \$@.S \$@; \\
845           fi )
846 EOF
847           } elsif ($args{generator}->[0] =~ /\.m4$/) {
848               return <<"EOF";
849 $args{src}: $args{generator}->[0]
850         m4 -B 8192 $generator > \$@
851 EOF
852           } else {
853               die "Generator type for $args{src} unknown: $args{generator}\n";
854           }
855       }
856   }
857
858   sub src2obj {
859       my %args = @_;
860       my $obj = $args{obj};
861       my $srcs = join(" ", @{$args{srcs}});
862       my $deps = join(" ", @{$args{srcs}}, @{$args{deps}});
863       my $incs = join("", map { " -I".$_ } @{$args{incs}});
864       my $ecflags = { lib => '$(SHARED_CFLAGS)',
865                       dso => '$(DSO_CFLAGS)',
866                       bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
867       my $makedepprog = $config{makedepprog};
868       if ($makedepprog eq "makedepend") {
869           return <<"EOF";
870 $obj$depext: $deps
871         rm -f \$\@.tmp; touch \$\@.tmp
872         -\$(MAKEDEPEND) -f\$\@.tmp -o"|$obj" -- \$(CFLAGS) $ecflags$incs -- $srcs \\
873             2>/dev/null
874         sed -e 's/^.*|//' -e 's/ \\/\\(\\\\.\\|[^ ]\\)*//g' -e '/: *\$\$/d' -e '/^\\(#.*\\| *\\)\$\$/d' \$\@.tmp > \$\@
875         rm \$\@.tmp
876 $obj$objext: $obj$depext
877         \$(CC) \$(CFLAGS) $ecflags$incs -c -o \$\@ $srcs
878 EOF
879       }
880       return <<"EOF";
881 $obj$objext: $deps
882         \$(CC) \$(CFLAGS) $ecflags$incs -MMD -MF $obj$depext.tmp -MT \$\@ -c -o \$\@ $srcs
883         \@touch $obj$depext.tmp
884         \@if ! cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
885                 mv $obj$depext.tmp $obj$depext; \\
886         fi
887 EOF
888   }
889   # On Unix, we build shlibs from static libs, so we're ignoring the
890   # object file array.  We *know* this routine is only called when we've
891   # configure 'shared'.
892   sub libobj2shlib {
893       my %args = @_;
894       my $lib = $args{lib};
895       my $shlib = $args{shlib};
896       my $libd = dirname($lib);
897       my $libn = basename($lib);
898       (my $libname = $libn) =~ s/^lib//;
899       my $linklibs = join("", map { my $d = dirname($_);
900                                     my $f = basename($_);
901                                     (my $l = $f) =~ s/^lib//;
902                                     " -L$d -l$l" } @{$args{deps}});
903       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
904       my $shlib_target = $target{shared_target};
905       my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
906       my $target = shlib_simple($lib);
907       return <<"EOF"
908 # With a build on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
909 # that two files get produced, {shlibname}.dll and {libname}.dll.a.
910 # With all other Unix platforms, we often build a shared library with the
911 # SO version built into the file name and a symlink without the SO version
912 # It's not necessary to have both as targets.  The choice falls on the
913 # simplest, {libname}$shlibextimport for Windows POSIX layers and
914 # {libname}$shlibextsimple for the Unix platforms.
915 $target: $lib$libext $deps $ordinalsfile
916         \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
917                 PLATFORM=\$(PLATFORM) \\
918                 PERL=\$(PERL) SRCDIR="\$(SRCDIR)" DSTDIR="$libd" \\
919                 INSTALLTOP="\$(INSTALLTOP)" LIBDIR="\$(LIBDIR)" \\
920                 LIBDEPS="\$(PLIB_LDFLAGS) $linklibs \$(EX_LIBS)" \\
921                 LIBNAME=$libname LIBVERSION=\$(SHLIB_MAJOR).\$(SHLIB_MINOR) \\
922                 LIBCOMPATVERSIONS=";\$(SHLIB_VERSION_HISTORY)" \\
923                 CC="\$(CC)" CFLAGS="\$(CFLAGS)" LDFLAGS="\$(LDFLAGS)" \\
924                 CROSS_COMPILE="\$(CROSS_COMPILE)" \\
925                 SHARED_LDFLAGS="\$(SHARED_LDFLAGS)" SHLIB_EXT=$shlibext \\
926                 SHARED_RCFLAGS="\$(SHARED_RCFLAGS)" \\
927                 link_shlib.$shlib_target
928 EOF
929           . (windowsdll() ? <<"EOF" : "");
930         rm -f apps/$shlib$shlibext
931         rm -f test/$shlib$shlibext
932         cp -p $shlib$shlibext apps/
933         cp -p $shlib$shlibext test/
934 EOF
935   }
936   sub obj2dso {
937       my %args = @_;
938       my $lib = $args{lib};
939       my $libd = dirname($lib);
940       my $libn = basename($lib);
941       (my $libname = $libn) =~ s/^lib//;
942       my $shlibdeps = join("", map { my $d = dirname($_);
943                                      my $f = basename($_);
944                                      (my $l = $f) =~ s/^lib//;
945                                      " -L$d -l$l" } @{$args{deps}});
946       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
947       my $shlib_target = $target{shared_target};
948       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
949       my $target = dso($lib);
950       return <<"EOF";
951 $target: $objs $deps
952         \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
953                 PLATFORM=\$(PLATFORM) \\
954                 PERL=\$(PERL) SRCDIR="\$(SRCDIR)" DSTDIR="$libd" \\
955                 LIBDEPS="\$(PLIB_LDFLAGS) $shlibdeps \$(EX_LIBS)" \\
956                 LIBNAME=$libname LDFLAGS="\$(LDFLAGS)" \\
957                 CC="\$(CC)" CFLAGS="\$(CFLAGS)" \\
958                 SHARED_LDFLAGS="\$(SHARED_LDFLAGS)" \\
959                 SHLIB_EXT=$dsoext \\
960                 LIBEXTRAS="$objs" \\
961                 link_dso.$shlib_target
962 EOF
963   }
964   sub obj2lib {
965       my %args = @_;
966       my $lib = $args{lib};
967       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
968       return <<"EOF";
969 $lib$libext: $objs
970         \$(AR) \$\@ $objs
971         \$(RANLIB) \$\@ || echo Never mind.
972 EOF
973   }
974   sub obj2bin {
975       my %args = @_;
976       my $bin = $args{bin};
977       my $bind = dirname($bin);
978       my $binn = basename($bin);
979       my $objs = join(" ", map { $_.$objext } @{$args{objs}});
980       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
981       my $linklibs = join("", map { my $d = dirname($_);
982                                     my $f = basename($_);
983                                     $d = "." if $d eq $f;
984                                     (my $l = $f) =~ s/^lib//;
985                                     " -L$d -l$l" } @{$args{deps}});
986       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
987       return <<"EOF";
988 $bin$exeext: $objs $deps
989         \$(RM) $bin$exeext
990         \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
991                 PERL=\$(PERL) SRCDIR=\$(SRCDIR) \\
992                 APPNAME=$bin$exeext OBJECTS="$objs" \\
993                 LIBDEPS="\$(PLIB_LDFLAGS) $linklibs \$(EX_LIBS)" \\
994                 CC="\$(CC)" CFLAGS="\$(CFLAGS)" LDFLAGS="\$(LDFLAGS)" \\
995                 LIBRPATH="\$(INSTALLTOP)/\$(LIBDIR)" \\
996                 link_app.$shlib_target
997 EOF
998   }
999   sub in2script {
1000       my %args = @_;
1001       my $script = $args{script};
1002       my $sources = join(" ", @{$args{sources}});
1003       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1004                                            "util", "dofile.pl")),
1005                            rel2abs($config{builddir}));
1006       return <<"EOF";
1007 $script: $sources
1008         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
1009             "-o$target{build_file}" $sources > "$script"
1010         chmod a+x $script
1011 EOF
1012   }
1013   ""    # Important!  This becomes part of the template result.
1014 -}