2 # Helper makefile to link shared libraries in a portable way.
3 # This is much simpler than libtool, and hopefully not too error-prone.
5 # The following variables need to be set on the command line to build
8 # CC contains the current compiler. This one MUST be defined
11 # LDFLAGS contains flags to be used when temporary object files (when building
12 # shared libraries) are created, or when an application is linked.
13 # SHARED_LDFLAGS contains flags to be used when the shared library is created.
15 SHARED_LDFLAGS=$(SHARED_LDFLAG)
18 # SHARED_RCFLAGS are flags used with windres, i.e. when build for Cygwin
20 SHARED_RCFLAGS=$(SHARED_RCFLAG)
24 # LIBNAME contains just the name of the library, without prefix ("lib"
25 # on Unix, "cyg" for certain forms under Cygwin...) or suffix (.a, .so,
26 # .dll, ...). This one MUST have a value when using this makefile to
27 # build shared libraries.
28 # For example, to build libfoo.so, you need to do the following:
32 # APPNAME contains just the name of the application, without suffix (""
33 # on Unix, ".exe" on Windows, ...). This one MUST have a value when using
34 # this makefile to build applications.
35 # For example, to build foo, you need to do the following:
39 # DSTDIR is the directory where the built file should end up in.
42 # SRCDIR is the top directory of the source tree.
45 # OBJECTS contains all the object files to link together into the application.
46 # This must contain at least one object file.
50 # LIBEXTRAS contains extra modules to link together with the library.
51 # For example, if a second library, say libbar.a needs to be linked into
52 # libfoo.so, you need to do the following:
54 # Note that this MUST be used when using the link_dso targets, to hold the
55 # names of all object files that go into the target shared object.
58 # LIBVERSION contains the current version of the library.
59 # For example, to build libfoo.so.1.2, you need to do the following:
63 # LIBCOMPATVERSIONS contains the compatibility versions (a list) of
64 # the library. They MUST be in decreasing order.
65 # For example, if libfoo.so.1.2.1 is backward compatible with libfoo.so.1.2
66 # and libfoo.so.1, you need to do the following:
67 #LIBCOMPATVERSIONS=1.2 1
68 # Note that on systems that use sonames, the last number will appear as
70 # It's also possible, for systems that support it (Tru64, for example),
71 # to add extra compatibility info with more precision, by adding a second
72 # list of versions, separated from the first with a semicolon, like this:
73 #LIBCOMPATVERSIONS=1.2 1;1.2.0 1.1.2 1.1.1 1.1.0 1.0.0
76 # LIBDEPS contains all the flags necessary to cover all necessary
77 # dependencies to other libraries.
80 #------------------------------------------------------------------------------
81 # The rest is private to this makefile.
87 echo "Trying to use this makefile interactively? Don't."
90 SHLIB_COMPAT=; SHLIB_SOVER=; \
91 if [ -n "$(LIBVERSION)$(LIBCOMPATVERSIONS)" ]; then \
93 for v in `echo "$(LIBVERSION) $(LIBCOMPATVERSIONS)" | cut -d';' -f1`; do \
94 SHLIB_SOVER_NODOT=$$v; \
96 if [ -n "$$prev" ]; then \
97 SHLIB_COMPAT="$$SHLIB_COMPAT .$$prev"; \
105 LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
106 LDCMD="$${LDCMD:-$(CC)}"; LDFLAGS="$${LDFLAGS:-$(CFLAGS) $(LDFLAGS)}"; \
107 LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
108 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
109 echo LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
110 $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS}; \
111 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
112 $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS} )
116 LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
117 SHAREDCMD="$${SHAREDCMD:-$(CC)}"; \
118 SHAREDFLAGS="$${SHAREDFLAGS:-$(CFLAGS) $(SHARED_LDFLAGS)}"; \
119 LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
120 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
121 echo LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
122 $${SHAREDCMD} $${SHAREDFLAGS} \
123 -o $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
124 $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS; \
125 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
126 $${SHAREDCMD} $${SHAREDFLAGS} \
127 -o $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
128 $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
132 if [ -n "$$INHIBIT_SYMLINKS" ]; then :; else \
133 prev=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
134 if [ -n "$$SHLIB_COMPAT" ]; then \
135 for x in $$SHLIB_COMPAT; do \
136 ( $(SET_X); rm -f $(DSTDIR)/$$SHLIB$$x$$SHLIB_SUFFIX; \
137 ln -s $$prev $(DSTDIR)/$$SHLIB$$x$$SHLIB_SUFFIX ); \
138 prev=$$SHLIB$$x$$SHLIB_SUFFIX; \
141 if [ -n "$$SHLIB_SOVER" ]; then \
142 ( $(SET_X); rm -f $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX; \
143 ln -s $$prev $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX ); \
147 LINK_SO_SHLIB= SHOBJECTS="$(DSTDIR)/lib$(LIBNAME).a $(LIBEXTRAS)"; $(LINK_SO)
148 LINK_SO_DSO= INHIBIT_SYMLINKS=yes; SHOBJECTS="$(LIBEXTRAS)"; $(LINK_SO)
150 LINK_SO_SHLIB_VIA_O= \
151 SHOBJECTS=$(DSTDIR)/lib$(LIBNAME).o; \
152 ALL=$$ALLSYMSFLAGS; ALLSYMSFLAGS=; NOALLSYMSFLAGS=; \
153 ( echo ld $(LDFLAGS) -r -o $$SHOBJECTS $$ALL lib$(LIBNAME).a $(LIBEXTRAS); \
154 ld $(LDFLAGS) -r -o $$SHOBJECTS $$ALL $(DSTDIR)/lib$(LIBNAME).a $(LIBEXTRAS) ); \
155 $(LINK_SO) && ( echo rm -f $$SHOBJECTS; rm -f $$SHOBJECTS )
157 LINK_SO_SHLIB_UNPACKED= \
158 UNPACKDIR=link_tmp.$$$$; rm -rf $$UNPACKDIR; mkdir $$UNPACKDIR; \
159 (cd $$UNPACKDIR; ar x ../$(DSTDIR)/lib$(LIBNAME).a) && \
160 ([ -z "$(LIBEXTRAS)" ] || cp $(LIBEXTRAS) $$UNPACKDIR) && \
161 SHOBJECTS=$$UNPACKDIR/*.o; \
162 $(LINK_SO) && rm -rf $$UNPACKDIR
164 DETECT_GNU_LD=($(CC) -Wl,-V /dev/null 2>&1 | grep '^GNU ld' )>/dev/null
167 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-soname=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"
169 SHLIB=$(LIBNAME).so; \
175 SHLIB=lib$(LIBNAME).so; \
176 ALLSYMSFLAGS='-Wl,--whole-archive'; \
177 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
179 DO_GNU_APP=LDFLAGS="$(CFLAGS) $(LDFLAGS)"
181 #This is rather special. It's a special target with which one can link
182 #applications without bothering with any features that have anything to
183 #do with shared libraries, for example when linking against static
184 #libraries. It's mostly here to avoid a lot of conditionals everywhere
190 @ $(DO_GNU_DSO); $(LINK_SO_DSO)
192 @ $(DO_GNU_SO); $(LINK_SO_SHLIB)
194 @ $(DO_GNU_APP); $(LINK_APP)
196 link_shlib.linux-shared:
197 @$(PERL) $(SRCDIR)/util/mkdef.pl $(LIBNAME) linux >$(LIBNAME).map; \
199 ALLSYMSFLAGS='-Wl,--whole-archive,--version-script=$(LIBNAME).map'; \
203 @if $(DETECT_GNU_LD); then $(DO_GNU_DSO); else \
204 SHLIB=$(LIBNAME).so; \
209 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
212 @if $(DETECT_GNU_LD); then $(DO_GNU_SO); else \
214 SHLIB=lib$(LIBNAME).so; \
217 ALLSYMSFLAGS="-Wl,-Bforcearchive"; \
219 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
222 @if $(DETECT_GNU_LD); then $(DO_GNU_APP); else \
223 LDFLAGS="$(CFLAGS) $(LDFLAGS)"; \
226 # For Darwin AKA Mac OS/X (dyld)
227 # Originally link_dso.darwin produced .so, because it was hard-coded
228 # in dso_dlfcn module. At later point dso_dlfcn switched to .dylib
229 # extension in order to allow for run-time linking with vendor-
230 # supplied shared libraries such as libz, so that link_dso.darwin had
231 # to be harmonized with it. This caused minor controversy, because
232 # it was believed that dlopen can't be used to dynamically load
233 # .dylib-s, only so called bundle modules (ones linked with -bundle
234 # flag). The belief seems to be originating from pre-10.4 release,
235 # where dlfcn functionality was emulated by dlcompat add-on. In
236 # 10.4 dlopen was rewritten as native part of dyld and is documented
237 # to be capable of loading both dynamic libraries and bundles. In
238 # order to provide compatibility with pre-10.4 dlopen, modules are
239 # linked with -bundle flag, which makes .dylib extension misleading.
240 # It works, because dlopen is [and always was] extension-agnostic.
241 # Alternative to this heuristic approach is to develop specific
242 # MacOS X dso module relying on whichever "native" dyld interface.
244 @ SHLIB=$(LIBNAME); \
245 SHLIB_SUFFIX=.dylib; \
248 SHAREDFLAGS="$(CFLAGS) `echo $(SHARED_LDFLAGS) | sed s/dynamiclib/bundle/`"; \
251 @ $(CALC_VERSIONS); \
252 SHLIB=lib$(LIBNAME); \
253 SHLIB_SUFFIX=.dylib; \
254 ALLSYMSFLAGS='-all_load'; \
256 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS)"; \
257 if [ -n "$(LIBVERSION)" ]; then \
258 SHAREDFLAGS="$$SHAREDFLAGS -current_version $(LIBVERSION)"; \
260 if [ -n "$$SHLIB_SOVER_NODOT" ]; then \
261 SHAREDFLAGS="$$SHAREDFLAGS -compatibility_version $$SHLIB_SOVER_NODOT"; \
263 SHAREDFLAGS="$$SHAREDFLAGS -install_name $(INSTALLTOP)/$(LIBDIR)/$$SHLIB$(SHLIB_EXT)"; \
265 link_app.darwin: # is there run-path on darwin?
273 base=-Wl,--enable-auto-image-base; \
274 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-Bsymbolic"; \
277 @ $(CALC_VERSIONS); \
278 INHIBIT_SYMLINKS=yes; \
279 SHLIB=cyg$(LIBNAME); SHLIB_SOVER=-$(LIBVERSION); SHLIB_SUFFIX=.dll; \
280 dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
281 echo "$(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name |" \
282 "$(RC) $(SHARED_RCFLAGS) -o rc.o"; \
283 $(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name | \
284 $(RC) $(SHARED_RCFLAGS) -o rc.o; \
285 ALLSYMSFLAGS='-Wl,--whole-archive'; \
286 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
287 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,--enable-auto-image-base -Wl,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a rc.o"; \
288 $(LINK_SO_SHLIB) || exit 1; \
293 # link_dso.mingw-shared and link_app.mingw-shared are mapped to the
294 # corresponding cygwin targets, as they do the exact same thing.
296 @ $(CALC_VERSIONS); \
297 INHIBIT_SYMLINKS=yes; \
299 if expr $(PLATFORM) : mingw64 > /dev/null; then arch=-x64; fi; \
300 sover=`echo $(LIBVERSION) | sed -e 's/\./_/g'` ; \
301 SHLIB=lib$(LIBNAME); \
302 SHLIB_SOVER=-$$sover$$arch; \
304 dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
305 $(PERL) $(SRCDIR)/util/mkdef.pl 32 $(LIBNAME) \
306 | sed -e 's|^\(LIBRARY *\)$(LIBNAME)32|\1'"$$dll_name"'|' \
308 echo "$(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name |" \
309 "$(RC) $(SHARED_RCFLAGS) -o rc.o"; \
310 $(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name | \
311 $(RC) $(SHARED_RCFLAGS) -o rc.o; \
312 ALLSYMSFLAGS='-Wl,--whole-archive'; \
313 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
314 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a $(LIBNAME).def rc.o"; \
315 $(LINK_SO_SHLIB) || exit 1; \
316 rm $(LIBNAME).def rc.o
319 @ if $(DETECT_GNU_LD); then \
322 SHLIB=$(LIBNAME).so; \
326 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-B,symbolic"; \
329 link_shlib.alpha-osf1:
330 @ if $(DETECT_GNU_LD); then \
333 SHLIB=lib$(LIBNAME).so; \
335 SHLIB_HIST=`echo "$(LIBCOMPATVERSIONS)" | cut -d';' -f2 | sed -e 's/ */:/'`; \
336 if [ -n "$$SHLIB_HIST" ]; then \
337 SHLIB_HIST="$${SHLIB_HIST}:$(LIBVERSION)"; \
339 SHLIB_HIST="$(LIBVERSION)"; \
342 ALLSYMSFLAGS='-all'; \
343 NOALLSYMSFLAGS='-none'; \
344 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-B,symbolic"; \
345 if [ -n "$$SHLIB_HIST" ]; then \
346 SHAREDFLAGS="$$SHAREDFLAGS -set_version $$SHLIB_HIST"; \
351 @if $(DETECT_GNU_LD); then \
354 LDFLAGS="$(CFLAGS) $(LDFLAGS)"; \
359 @ if $(DETECT_GNU_LD); then \
363 SHLIB=$(LIBNAME).so; \
367 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \
371 @ if $(DETECT_GNU_LD); then \
375 SHLIB=lib$(LIBNAME).so; \
377 $(PERL) $(SRCDIR)/util/mkdef.pl $(LIBNAME) linux >$(LIBNAME).map; \
378 ALLSYMSFLAGS="-Wl,-z,allextract,-M,$(LIBNAME).map"; \
379 NOALLSYMSFLAGS="-Wl,-z,defaultextract"; \
380 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \
384 @ if $(DETECT_GNU_LD); then \
387 LDFLAGS="$(CFLAGS) $(LDFLAGS)"; \
391 # OpenServer 5 native compilers used
393 @ if $(DETECT_GNU_LD); then \
397 SHLIB=$(LIBNAME).so; \
401 SHAREDFLAGS="$(CFLAGS) -G -h $$SHLIB$$SHLIB_SUFFIX"; \
405 @ if $(DETECT_GNU_LD); then \
409 SHLIB=lib$(LIBNAME).so; \
413 SHAREDFLAGS="$(CFLAGS) -G -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
415 $(LINK_SO_SHLIB_UNPACKED)
417 @$(DETECT_GNU_LD) && $(DO_GNU_APP); \
420 # UnixWare 7 and OpenUNIX 8 native compilers used
422 @ if $(DETECT_GNU_LD); then \
426 ($(CC) -v 2>&1 | grep gcc) > /dev/null && SHARE_FLAG='-shared'; \
427 SHLIB=$(LIBNAME).so; \
431 SHAREDFLAGS="$(CFLAGS) $${SHARE_FLAG} -h $$SHLIB$$SHLIB_SUFFIX"; \
435 @ if $(DETECT_GNU_LD); then \
440 ($(CC) -v 2>&1 | grep gcc) > /dev/null && SHARE_FLAG='-shared'; \
441 SHLIB=lib$(LIBNAME).so; \
445 SHAREDFLAGS="$(CFLAGS) $${SHARE_FLAG} -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
447 $(LINK_SO_SHLIB_UNPACKED)
449 @$(DETECT_GNU_LD) && $(DO_GNU_APP); \
453 @ if $(DETECT_GNU_LD); then \
456 SHLIB=$(LIBNAME).so; \
460 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-soname,$$SHLIB$$SHLIB_SUFFIX,-B,symbolic"; \
464 @ if $(DETECT_GNU_LD); then \
468 SHLIB=lib$(LIBNAME).so; \
471 ($(CC) -v 2>&1 | grep gcc) > /dev/null && MINUSWL="-Wl,"; \
472 ALLSYMSFLAGS="$${MINUSWL}-all"; \
473 NOALLSYMSFLAGS="$${MINUSWL}-none"; \
474 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-soname,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX,-B,symbolic"; \
478 @LDFLAGS="$(CFLAGS) $(LDFLAGS)"; \
481 # 32-bit PA-RISC HP-UX embeds the -L pathname of libs we link with, so
482 # we compensate for it with +cdp ../: and +cdp ./:. Yes, these rewrite
483 # rules imply that we can only link one level down in catalog structure,
484 # but that's what takes place for the moment of this writing. +cdp option
485 # was introduced in HP-UX 11.x and applies in 32-bit PA-RISC link
486 # editor context only [it's simply ignored in other cases, which are all
490 @if $(DETECT_GNU_LD); then $(DO_GNU_DSO); else \
491 SHLIB=$(LIBNAME).sl; \
492 expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=$(LIBNAME).so; \
496 expr $(PLATFORM) : 'hpux64' > /dev/null && ALLSYMSFLAGS='-Wl,+forceload'; \
497 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+h,$$SHLIB$$SHLIB_SUFFIX,+cdp,../:,+cdp,./:"; \
499 rm -f $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX || :; \
500 $(LINK_SO_DSO) && chmod a=rx $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX
502 @if $(DETECT_GNU_LD); then $(DO_GNU_SO); else \
504 SHLIB=lib$(LIBNAME).sl; \
505 expr $(PLATFORM) : '.*ia64' > /dev/null && SHLIB=lib$(LIBNAME).so; \
507 ALLSYMSFLAGS='-Wl,-Fl'; \
509 expr $(PLATFORM) : 'hpux64' > /dev/null && ALLSYMSFLAGS='-Wl,+forceload'; \
510 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+h,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX,+cdp,../:,+cdp,./:"; \
512 rm -f $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX || :; \
513 $(LINK_SO_SHLIB) && chmod a=rx $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX
515 @if $(DETECT_GNU_LD); then $(DO_GNU_APP); else \
516 LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,+s,+cdp,../:,+cdp,./:"; \
521 @OBJECT_MODE=`expr "x$(SHARED_LDFLAGS)" : 'x\-[a-z]*\(64\)'` || :; \
522 OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \
523 SHLIB=$(LIBNAME).so; \
527 SHAREDFLAGS='$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-bexpall,-bnolibpath,-bM:SRE'; \
528 rm -f $(DSTDIR)/$$SHLIB$$SHLIB_SOVER 2>&1 > /dev/null ; \
531 @ $(CALC_VERSIONS); \
532 OBJECT_MODE=`expr "x$(SHARED_LDFLAGS)" : 'x\-[a-z]*\(64\)'` || : ; \
533 OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \
534 SHLIB=lib$(LIBNAME).so; \
536 ALLSYMSFLAGS='-bnogc'; \
538 SHAREDFLAGS='$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-bexpall,-bnolibpath,-bM:SRE'; \
539 rm -f $(DSTDIR)/$$SHLIB$$SHLIB_SOVER 2>&1 > /dev/null ; \
540 $(LINK_SO_SHLIB_VIA_O)
542 LDFLAGS="$(CFLAGS) -Wl,-bsvr4 $(LDFLAGS)"; \
546 # Targets to build symbolic links when needed
547 symlink.gnu symlink.solaris symlink.svr3 symlink.svr5 symlink.irix \
549 @ $(CALC_VERSIONS); \
550 SHLIB=lib$(LIBNAME).so; \
553 @ $(CALC_VERSIONS); \
554 SHLIB=lib$(LIBNAME); \
555 SHLIB_SUFFIX=.dylib; \
558 @ $(CALC_VERSIONS); \
559 SHLIB=lib$(LIBNAME).sl; \
560 expr $(PLATFORM) : '.*ia64' > /dev/null && SHLIB=lib$(LIBNAME).so; \
562 # The following lines means those specific architectures do no symlinks
563 symlink.cygwin symlink.alpha-osf1 symlink.tru64 symlink.tru64-rpath:
565 # Compatibility targets
566 link_dso.bsd-gcc-shared link_dso.linux-shared link_dso.gnu-shared: link_dso.gnu
567 link_shlib.bsd-gcc-shared: link_shlib.linux-shared
568 link_shlib.gnu-shared: link_shlib.gnu
569 link_app.bsd-gcc-shared link_app.linux-shared link_app.gnu-shared: link_app.gnu
570 symlink.bsd-gcc-shared symlink.bsd-shared symlink.linux-shared symlink.gnu-shared: symlink.gnu
571 link_dso.bsd-shared: link_dso.bsd
572 link_shlib.bsd-shared: link_shlib.bsd
573 link_app.bsd-shared: link_app.bsd
574 link_dso.darwin-shared: link_dso.darwin
575 link_shlib.darwin-shared: link_shlib.darwin
576 link_app.darwin-shared: link_app.darwin
577 symlink.darwin-shared: symlink.darwin
578 link_dso.cygwin-shared: link_dso.cygwin
579 link_shlib.cygwin-shared: link_shlib.cygwin
580 link_app.cygwin-shared: link_app.cygwin
581 symlink.cygwin-shared: symlink.cygwin
582 link_dso.mingw-shared: link_dso.cygwin
583 link_shlib.mingw-shared: link_shlib.mingw
584 link_app.mingw-shared: link_app.cygwin
585 symlink.mingw-shared: symlink.cygwin
586 link_dso.alpha-osf1-shared: link_dso.alpha-osf1
587 link_shlib.alpha-osf1-shared: link_shlib.alpha-osf1
588 link_app.alpha-osf1-shared: link_app.alpha-osf1
589 symlink.alpha-osf1-shared: symlink.alpha-osf1
590 link_dso.tru64-shared: link_dso.tru64
591 link_shlib.tru64-shared: link_shlib.tru64
592 link_app.tru64-shared: link_app.tru64
593 symlink.tru64-shared: symlink.tru64
594 link_dso.tru64-shared-rpath: link_dso.tru64-rpath
595 link_shlib.tru64-shared-rpath: link_shlib.tru64-rpath
596 link_app.tru64-shared-rpath: link_app.tru64-rpath
597 symlink.tru64-shared-rpath: symlink.tru64-rpath
598 link_dso.solaris-shared: link_dso.solaris
599 link_shlib.solaris-shared: link_shlib.solaris
600 link_app.solaris-shared: link_app.solaris
601 symlink.solaris-shared: symlink.solaris
602 link_dso.svr3-shared: link_dso.svr3
603 link_shlib.svr3-shared: link_shlib.svr3
604 link_app.svr3-shared: link_app.svr3
605 symlink.svr3-shared: symlink.svr3
606 link_dso.svr5-shared: link_dso.svr5
607 link_shlib.svr5-shared: link_shlib.svr5
608 link_app.svr5-shared: link_app.svr5
609 symlink.svr5-shared: symlink.svr5
610 link_dso.irix-shared: link_dso.irix
611 link_shlib.irix-shared: link_shlib.irix
612 link_app.irix-shared: link_app.irix
613 symlink.irix-shared: symlink.irix
614 link_dso.hpux-shared: link_dso.hpux
615 link_shlib.hpux-shared: link_shlib.hpux
616 link_app.hpux-shared: link_app.hpux
617 symlink.hpux-shared: symlink.hpux
618 link_dso.aix-shared: link_dso.aix
619 link_shlib.aix-shared: link_shlib.aix
620 link_app.aix-shared: link_app.aix
621 symlink.aix-shared: symlink.aix