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)
17 # SHARED_RCFLAGS are flags used with windres, i.e. when build for Cygwin
19 SHARED_RCFLAGS=$(SHARED_RCFLAG)
23 # LIBNAME contains just the name of the library, without prefix ("lib"
24 # on Unix, "cyg" for certain forms under Cygwin...) or suffix (.a, .so,
25 # .dll, ...). This one MUST have a value when using this makefile to
26 # build shared libraries.
27 # For example, to build libfoo.so, you need to do the following:
31 # APPNAME contains just the name of the application, without suffix (""
32 # on Unix, ".exe" on Windows, ...). This one MUST have a value when using
33 # this makefile to build applications.
34 # For example, to build foo, you need to do the following:
38 # DSTDIR is the directory where the built file should end up in.
41 # SRCDIR is the top directory of the source tree.
44 # OBJECTS contains all the object files to link together into the application.
45 # This must contain at least one object file.
49 # LIBEXTRAS contains extra modules to link together with the library.
50 # For example, if a second library, say libbar.a needs to be linked into
51 # libfoo.so, you need to do the following:
53 # Note that this MUST be used when using the link_dso targets, to hold the
54 # names of all object files that go into the target shared object.
57 # LIBVERSION contains the current version of the library.
58 # For example, to build libfoo.so.1.2, you need to do the following:
62 # LIBCOMPATVERSIONS contains the compatibility versions (a list) of
63 # the library. They MUST be in decreasing order.
64 # For example, if libfoo.so.1.2.1 is backward compatible with libfoo.so.1.2
65 # and libfoo.so.1, you need to do the following:
66 #LIBCOMPATVERSIONS=1.2 1
67 # Note that on systems that use sonames, the last number will appear as
69 # It's also possible, for systems that support it (Tru64, for example),
70 # to add extra compatibility info with more precision, by adding a second
71 # list of versions, separated from the first with a semicolon, like this:
72 #LIBCOMPATVERSIONS=1.2 1;1.2.0 1.1.2 1.1.1 1.1.0 1.0.0
75 # LIBDEPS contains all the flags necessary to cover all necessary
76 # dependencies to other libraries.
79 #------------------------------------------------------------------------------
80 # The rest is private to this makefile.
86 echo "Trying to use this makefile interactively? Don't."
89 SHLIB_COMPAT=; SHLIB_SOVER=; \
90 if [ -n "$(LIBVERSION)$(LIBCOMPATVERSIONS)" ]; then \
92 for v in `echo "$(LIBVERSION) $(LIBCOMPATVERSIONS)" | cut -d';' -f1`; do \
93 SHLIB_SOVER_NODOT=$$v; \
95 if [ -n "$$prev" ]; then \
96 SHLIB_COMPAT="$$SHLIB_COMPAT .$$prev"; \
104 LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
105 LDCMD="$${LDCMD:-$(CC)}"; LDFLAGS="$${LDFLAGS:-$(CFLAGS) $(LDFLAGS)}"; \
106 LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
107 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
108 echo LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
109 $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS}; \
110 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
111 $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS} )
115 LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
116 SHAREDCMD="$${SHAREDCMD:-$(CC)}"; \
117 SHAREDFLAGS="$${SHAREDFLAGS:-$(CFLAGS) $(SHARED_LDFLAGS)}"; \
118 LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
119 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
120 echo LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
121 $${SHAREDCMD} $${SHAREDFLAGS} \
122 -o $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
123 $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS; \
124 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
125 $${SHAREDCMD} $${SHAREDFLAGS} \
126 -o $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
127 $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
131 if [ -n "$$INHIBIT_SYMLINKS" ]; then :; else \
132 prev=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
133 if [ -n "$$SHLIB_COMPAT" ]; then \
134 for x in $$SHLIB_COMPAT; do \
135 ( $(SET_X); rm -f $(DSTDIR)/$$SHLIB$$x$$SHLIB_SUFFIX; \
136 ln -s $$prev $(DSTDIR)/$$SHLIB$$x$$SHLIB_SUFFIX ); \
137 prev=$$SHLIB$$x$$SHLIB_SUFFIX; \
140 if [ -n "$$SHLIB_SOVER" ]; then \
141 ( $(SET_X); rm -f $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX; \
142 ln -s $$prev $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX ); \
146 LINK_SO_SHLIB= SHOBJECTS="$(DSTDIR)/lib$(LIBNAME).a $(LIBEXTRAS)"; $(LINK_SO)
147 LINK_SO_DSO= INHIBIT_SYMLINKS=yes; SHOBJECTS="$(LIBEXTRAS)"; $(LINK_SO)
149 LINK_SO_SHLIB_VIA_O= \
150 SHOBJECTS=$(DSTDIR)/lib$(LIBNAME).o; \
151 ALL=$$ALLSYMSFLAGS; ALLSYMSFLAGS=; NOALLSYMSFLAGS=; \
152 ( echo ld $(LDFLAGS) -r -o $$SHOBJECTS.o $$ALL lib$(LIBNAME).a $(LIBEXTRAS); \
153 ld $(LDFLAGS) -r -o $$SHOBJECTS.o $$ALL $(DSTDIR)/lib$(LIBNAME).a $(LIBEXTRAS) ); \
154 $(LINK_SO) && ( echo rm -f $$SHOBJECTS; rm -f $$SHOBJECTS )
156 LINK_SO_SHLIB_UNPACKED= \
157 UNPACKDIR=link_tmp.$$$$; rm -rf $$UNPACKDIR; mkdir $$UNPACKDIR; \
158 (cd $$UNPACKDIR; ar x ../$(DSTDIR)/lib$(LIBNAME).a) && \
159 ([ -z "$(LIBEXTRAS)" ] || cp $(LIBEXTRAS) $$UNPACKDIR) && \
160 SHOBJECTS=$$UNPACKDIR/*.o; \
161 $(LINK_SO) && rm -rf $$UNPACKDIR
163 DETECT_GNU_LD=($(CC) -Wl,-V /dev/null 2>&1 | grep '^GNU ld' )>/dev/null
166 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-soname=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"
168 SHLIB=$(LIBNAME).so; \
175 ALLSYMSFLAGS='-Wl,--whole-archive'; \
176 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
178 DO_GNU_APP=LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,-rpath,$(LIBRPATH)"
180 #This is rather special. It's a special target with which one can link
181 #applications without bothering with any features that have anything to
182 #do with shared libraries, for example when linking against static
183 #libraries. It's mostly here to avoid a lot of conditionals everywhere
189 @ $(DO_GNU_DSO); $(LINK_SO_DSO)
191 @ $(DO_GNU_SO); $(LINK_SO_SHLIB)
193 @ $(DO_GNU_APP); $(LINK_APP)
195 link_shlib.linux-shared:
196 @$(PERL) $(SRCDIR)/util/mkdef.pl $(LIBNAME) linux >$(LIBNAME).map; \
198 ALLSYMSFLAGS='-Wl,--whole-archive,--version-script=$(LIBNAME).map'; \
202 @if $(DETECT_GNU_LD); then $(DO_GNU_DSO); else \
203 SHLIB=$(LIBNAME).so; \
208 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
211 @if $(DETECT_GNU_LD); then $(DO_GNU_SO); else \
213 SHLIB=lib$(LIBNAME).so; \
216 ALLSYMSFLAGS="-Wl,-Bforcearchive"; \
218 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
221 @if $(DETECT_GNU_LD); then $(DO_GNU_APP); else \
222 LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,-rpath,$(LIBPATH)"; \
225 # For Darwin AKA Mac OS/X (dyld)
226 # Originally link_dso.darwin produced .so, because it was hard-coded
227 # in dso_dlfcn module. At later point dso_dlfcn switched to .dylib
228 # extension in order to allow for run-time linking with vendor-
229 # supplied shared libraries such as libz, so that link_dso.darwin had
230 # to be harmonized with it. This caused minor controversy, because
231 # it was believed that dlopen can't be used to dynamically load
232 # .dylib-s, only so called bundle modules (ones linked with -bundle
233 # flag). The belief seems to be originating from pre-10.4 release,
234 # where dlfcn functionality was emulated by dlcompat add-on. In
235 # 10.4 dlopen was rewritten as native part of dyld and is documented
236 # to be capable of loading both dynamic libraries and bundles. In
237 # order to provide compatibility with pre-10.4 dlopen, modules are
238 # linked with -bundle flag, which makes .dylib extension misleading.
239 # It works, because dlopen is [and always was] extension-agnostic.
240 # Alternative to this heuristic approach is to develop specific
241 # MacOS X dso module relying on whichever "native" dyld interface.
243 @ SHLIB=$(LIBNAME); \
244 SHLIB_SUFFIX=.dylib; \
247 SHAREDFLAGS="$(CFLAGS) `echo $(SHARED_LDFLAGS) | sed s/dynamiclib/bundle/`"; \
250 @ $(CALC_VERSIONS); \
251 SHLIB=lib$(LIBNAME); \
252 SHLIB_SUFFIX=.dylib; \
253 ALLSYMSFLAGS='-all_load'; \
255 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS)"; \
256 if [ -n "$(LIBVERSION)" ]; then \
257 SHAREDFLAGS="$$SHAREDFLAGS -current_version $(LIBVERSION)"; \
259 if [ -n "$$SHLIB_SOVER_NODOT" ]; then \
260 SHAREDFLAGS="$$SHAREDFLAGS -compatibility_version $$SHLIB_SOVER_NODOT"; \
262 SHAREDFLAGS="$$SHAREDFLAGS -install_name $(INSTALLTOP)/$(LIBDIR)/$$SHLIB$(SHLIB_EXT)"; \
264 link_app.darwin: # is there run-path on darwin?
272 base=-Wl,--enable-auto-image-base; \
273 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-Bsymbolic"; \
276 @ $(CALC_VERSIONS); \
277 INHIBIT_SYMLINKS=yes; \
278 SHLIB=cyg$(LIBNAME); SHLIB_SOVER=-$(LIBVERSION); SHLIB_SUFFIX=.dll; \
279 dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
280 echo "$(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name |" \
281 "$(CROSS_COMPILE)windres $(SHARED_RCFLAGS) -o rc.o"; \
282 $(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name | \
283 $(CROSS_COMPILE)windres $(SHARED_RCFLAGS) -o rc.o; \
284 ALLSYMSFLAGS='-Wl,--whole-archive'; \
285 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
286 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,--enable-auto-image-base -Wl,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a rc.o"; \
287 $(LINK_SO_SHLIB) || exit 1; \
292 # link_dso.mingw-shared and link_app.mingw-shared are mapped to the
293 # corresponding cygwin targets, as they do the exact same thing.
295 @ $(CALC_VERSIONS); \
296 INHIBIT_SYMLINKS=yes; \
298 if expr $(PLATFORM) : mingw64 > /dev/null; then arch=-x64; fi; \
299 sover=`echo $(LIBVERSION) | sed -e 's/\./_/g'` ; \
300 SHLIB=lib$(LIBNAME); \
301 SHLIB_SOVER=-$$sover$$arch; \
303 dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
304 base=; [ $(LIBNAME) = "crypto" -a -n "$(FIPSCANLIB)" ] && base=-Wl,--image-base,0x63000000; \
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 "$(CROSS_COMPILE)windres $(SHARED_RCFLAGS) -o rc.o"; \
310 $(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name | \
311 $(CROSS_COMPILE)windres $(SHARED_RCFLAGS) -o rc.o; \
312 ALLSYMSFLAGS='-Wl,--whole-archive'; \
313 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
314 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -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) -rpath $(LIBRPATH)"; \
359 @ if $(DETECT_GNU_LD); then \
363 SHLIB=lib$(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) -R $(LIBRPATH)"; \
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) -Wl,-rpath,$(LIBRPATH)"; \
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 $$SHLIB$$SHLIB_SUFFIX || :; \
500 $(LINK_SO_DSO) && chmod a=rx $$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 $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX || :; \
513 $(LINK_SO_SHLIB) && chmod a=rx $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX
515 @if $(DETECT_GNU_LD); then $(DO_GNU_APP); else \
516 LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,+s,+cdp,../:,+cdp,./:,+b,$(LIBRPATH)"; \
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'; \
530 @ $(CALC_VERSIONS); \
531 OBJECT_MODE=`expr "x$(SHARED_LDFLAGS)" : 'x\-[a-z]*\(64\)'` || : ; \
532 OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \
533 SHLIB=lib$(LIBNAME).so; \
535 ALLSYMSFLAGS='-bnogc'; \
537 SHAREDFLAGS='$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-bexpall,-bnolibpath,-bM:SRE'; \
538 $(LINK_SO_SHLIB_VIA_O)
540 LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,-brtl,-blibpath:$(LIBRPATH):$${LIBPATH:-/usr/lib:/lib}"; \
544 # Targets to build symbolic links when needed
545 symlink.gnu symlink.solaris symlink.svr3 symlink.svr5 symlink.irix \
547 @ $(CALC_VERSIONS); \
548 SHLIB=lib$(LIBNAME).so; \
551 @ $(CALC_VERSIONS); \
552 SHLIB=lib$(LIBNAME); \
553 SHLIB_SUFFIX=.dylib; \
556 @ $(CALC_VERSIONS); \
557 SHLIB=lib$(LIBNAME).sl; \
558 expr $(PLATFORM) : '.*ia64' > /dev/null && SHLIB=lib$(LIBNAME).so; \
560 # The following lines means those specific architectures do no symlinks
561 symlink.cygwin symlink.alpha-osf1 symlink.tru64 symlink.tru64-rpath:
563 # Compatibility targets
564 link_dso.bsd-gcc-shared link_dso.linux-shared link_dso.gnu-shared: link_dso.gnu
565 link_shlib.bsd-gcc-shared link_shlib.gnu-shared: link_shlib.gnu
566 link_app.bsd-gcc-shared link_app.linux-shared link_app.gnu-shared: link_app.gnu
567 symlink.bsd-gcc-shared symlink.bsd-shared symlink.linux-shared symlink.gnu-shared: symlink.gnu
568 link_dso.bsd-shared: link_dso.bsd
569 link_shlib.bsd-shared: link_shlib.bsd
570 link_app.bsd-shared: link_app.bsd
571 link_dso.darwin-shared: link_dso.darwin
572 link_shlib.darwin-shared: link_shlib.darwin
573 link_app.darwin-shared: link_app.darwin
574 symlink.darwin-shared: symlink.darwin
575 link_dso.cygwin-shared: link_dso.cygwin
576 link_shlib.cygwin-shared: link_shlib.cygwin
577 link_app.cygwin-shared: link_app.cygwin
578 symlink.cygwin-shared: symlink.cygwin
579 link_dso.mingw-shared: link_dso.cygwin
580 link_shlib.mingw-shared: link_shlib.mingw
581 link_app.mingw-shared: link_app.cygwin
582 symlink.mingw-shared: symlink.cygwin
583 link_dso.alpha-osf1-shared: link_dso.alpha-osf1
584 link_shlib.alpha-osf1-shared: link_shlib.alpha-osf1
585 link_app.alpha-osf1-shared: link_app.alpha-osf1
586 symlink.alpha-osf1-shared: symlink.alpha-osf1
587 link_dso.tru64-shared: link_dso.tru64
588 link_shlib.tru64-shared: link_shlib.tru64
589 link_app.tru64-shared: link_app.tru64
590 symlink.tru64-shared: symlink.tru64
591 link_dso.tru64-shared-rpath: link_dso.tru64-rpath
592 link_shlib.tru64-shared-rpath: link_shlib.tru64-rpath
593 link_app.tru64-shared-rpath: link_app.tru64-rpath
594 symlink.tru64-shared-rpath: symlink.tru64-rpath
595 link_dso.solaris-shared: link_dso.solaris
596 link_shlib.solaris-shared: link_shlib.solaris
597 link_app.solaris-shared: link_app.solaris
598 symlink.solaris-shared: symlink.solaris
599 link_dso.svr3-shared: link_dso.svr3
600 link_shlib.svr3-shared: link_shlib.svr3
601 link_app.svr3-shared: link_app.svr3
602 symlink.svr3-shared: symlink.svr3
603 link_dso.svr5-shared: link_dso.svr5
604 link_shlib.svr5-shared: link_shlib.svr5
605 link_app.svr5-shared: link_app.svr5
606 symlink.svr5-shared: symlink.svr5
607 link_dso.irix-shared: link_dso.irix
608 link_shlib.irix-shared: link_shlib.irix
609 link_app.irix-shared: link_app.irix
610 symlink.irix-shared: symlink.irix
611 link_dso.hpux-shared: link_dso.hpux
612 link_shlib.hpux-shared: link_shlib.hpux
613 link_app.hpux-shared: link_app.hpux
614 symlink.hpux-shared: symlink.hpux
615 link_dso.aix-shared: link_dso.aix
616 link_shlib.aix-shared: link_shlib.aix
617 link_app.aix-shared: link_app.aix
618 symlink.aix-shared: symlink.aix