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