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.
17 # LIBNAME contains just the name of the library, without prefix ("lib"
18 # on Unix, "cyg" for certain forms under Cygwin...) or suffix (.a, .so,
19 # .dll, ...). This one MUST have a value when using this makefile to
20 # build shared libraries.
21 # For example, to build libfoo.so, you need to do the following:
25 # APPNAME contains just the name of the application, without suffix (""
26 # on Unix, ".exe" on Windows, ...). This one MUST have a value when using
27 # this makefile to build applications.
28 # For example, to build foo, you need to do the following:
32 # OBJECTS contains all the object files to link together into the application.
33 # This must contain at least one object file.
37 # LIBEXTRAS contains extra modules to link together with the library.
38 # For example, if a second library, say libbar.a needs to be linked into
39 # libfoo.so, you need to do the following:
41 # Note that this MUST be used when using the link_o targets, to hold the
42 # names of all object files that go into the target library.
45 # LIBVERSION contains the current version of the library.
46 # For example, to build libfoo.so.1.2, you need to do the following:
50 # LIBCOMPATVERSIONS contains the compatibility versions (a list) of
51 # the library. They MUST be in decreasing order.
52 # For example, if libfoo.so.1.2.1 is backward compatible with libfoo.so.1.2
53 # and libfoo.so.1, you need to do the following:
54 #LIBCOMPATVERSIONS=1.2 1
55 # Note that on systems that use sonames, the last number will appear as
57 # It's also possible, for systems that support it (Tru64, for example),
58 # to add extra compatibility info with more precision, by adding a second
59 # list of versions, separated from the first with a semicolon, like this:
60 #LIBCOMPATVERSIONS=1.2 1;1.2.0 1.1.2 1.1.1 1.1.0 1.0.0
63 # LIBDEPS contains all the flags necessary to cover all necessary
64 # dependencies to other libraries.
67 #------------------------------------------------------------------------------
68 # The rest is private to this makefile.
74 echo "Trying to use this makefile interactively? Don't."
77 SHLIB_COMPAT=; SHLIB_SOVER=; \
78 if [ -n "$(LIBVERSION)$(LIBCOMPATVERSIONS)" ]; then \
80 for v in `echo "$(LIBVERSION) $(LIBCOMPATVERSIONS)" | cut -d';' -f1`; do \
81 SHLIB_SOVER_NODOT=$$v; \
83 if [ -n "$$prev" ]; then \
84 SHLIB_COMPAT="$$SHLIB_COMPAT .$$prev"; \
92 LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
93 LDCMD="$${LDCMD:-$(CC)}"; LDFLAGS="$${LDFLAGS:-$(CFLAGS)}"; \
94 LIBPATH=`for x in $$LIBDEPS; do if echo $$x | grep '^ *-L' > /dev/null 2>&1; then echo $$x | sed -e 's/^ *-L//'; fi; done | uniq`; \
95 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
96 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
97 $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS} )
101 LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
102 SHAREDCMD="$${SHAREDCMD:-$(CC)}"; \
103 SHAREDFLAGS="$${SHAREDFLAGS:-$(CFLAGS) $(SHARED_LDFLAGS)}"; \
104 nm -Pg $$SHOBJECTS | grep ' [BDT] ' | cut -f1 -d' ' > lib$(LIBNAME).exp; \
105 LIBPATH=`for x in $$LIBDEPS; do if echo $$x | grep '^ *-L' > /dev/null 2>&1; then echo $$x | sed -e 's/^ *-L//'; fi; done | uniq`; \
106 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
107 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
108 $${SHAREDCMD} $${SHAREDFLAGS} \
109 -o $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
110 $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
111 ) && $(SYMLINK_SO); \
112 ( $(SET_X); rm -f lib$(LIBNAME).exp )
115 if [ -n "$$INHIBIT_SYMLINKS" ]; then :; else \
116 prev=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
117 if [ -n "$$SHLIB_COMPAT" ]; then \
118 for x in $$SHLIB_COMPAT; do \
119 ( $(SET_X); rm -f $$SHLIB$$x$$SHLIB_SUFFIX; \
120 ln -s $$prev $$SHLIB$$x$$SHLIB_SUFFIX ); \
121 prev=$$SHLIB$$x$$SHLIB_SUFFIX; \
124 if [ -n "$$SHLIB_SOVER" ]; then \
125 ( $(SET_X); rm -f $$SHLIB$$SHLIB_SUFFIX; \
126 ln -s $$prev $$SHLIB$$SHLIB_SUFFIX ); \
130 LINK_SO_A= SHOBJECTS="lib$(LIBNAME).a $(LIBEXTRAS)"; $(LINK_SO)
131 LINK_SO_O= SHOBJECTS="$(LIBEXTRAS)"; $(LINK_SO)
134 SHOBJECTS=lib$(LIBNAME).o; \
135 ALL=$$ALLSYMSFLAGS; ALLSYMSFLAGS=; NOALLSYMSFLAGS=; \
137 ld $(LDFLAGS) -r -o lib$(LIBNAME).o $$ALL lib$(LIBNAME).a $(LIBEXTRAS) ); \
138 $(LINK_SO) && rm -f $(LIBNAME).o
140 LINK_SO_A_UNPACKED= \
141 UNPACKDIR=link_tmp.$$$$; rm -rf $$UNPACKDIR; mkdir $$UNPACKDIR; \
142 (cd $$UNPACKDIR; ar x ../lib$(LIBNAME).a) && \
143 ([ -z "$(LIBEXTRAS)" ] || cp $(LIBEXTRAS) $$UNPACKDIR) && \
144 SHOBJECTS=$$UNPACKDIR/*.o; \
145 $(LINK_SO) && rm -rf $$UNPACKDIR
147 DETECT_GNU_LD=(${CC} -Wl,-V /dev/null 2>&1 | grep '^GNU ld' )>/dev/null
149 DO_GNU_SO=$(CALC_VERSIONS); \
150 SHLIB=lib$(LIBNAME).so; \
152 ALLSYMSFLAGS='-Wl,--whole-archive'; \
153 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
154 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-soname=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"
156 DO_GNU_APP=LDFLAGS="$(CFLAGS) -Wl,-rpath,$(LIBRPATH)"
158 #This is rather special. It's a special target with which one can link
159 #applications without bothering with any features that have anything to
160 #do with shared libraries, for example when linking against static
161 #libraries. It's mostly here to avoid a lot of conditionals everywhere
167 @ $(DO_GNU_SO); $(LINK_SO_O)
169 @ $(DO_GNU_SO); $(LINK_SO_A)
171 @ $(DO_GNU_APP); $(LINK_APP)
174 @if ${DETECT_GNU_LD}; then $(DO_GNU_SO); else \
176 SHLIB=lib$(LIBNAME).so; \
179 ALLSYMSFLAGS="-Wl,-Bforcearchive"; \
181 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
184 @if ${DETECT_GNU_LD}; then $(DO_GNU_SO); else \
186 SHLIB=lib$(LIBNAME).so; \
189 ALLSYMSFLAGS="-Wl,-Bforcearchive"; \
191 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
194 @if ${DETECT_GNU_LD}; then $(DO_GNU_APP); else \
195 LDFLAGS="$(CFLAGS) -Wl,-rpath,$(LIBPATH)"; \
198 # For Darwin AKA Mac OS/X (dyld)
199 # link_o.darwin produces .so, because we let it use dso_dlfcn module,
200 # which has .so extension hard-coded. One can argue that one should
201 # develop special dso module for MacOS X. At least manual encourages
202 # to use native NSModule(3) API and refers to dlfcn as termporary hack.
204 @ $(CALC_VERSIONS); \
205 SHLIB=lib$(LIBNAME); \
207 ALLSYMSFLAGS='-all_load'; \
209 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS)"; \
210 if [ -n "$(LIBVERSION)" ]; then \
211 SHAREDFLAGS="$$SHAREDFLAGS -current_version $(LIBVERSION)"; \
213 if [ -n "$$SHLIB_SOVER_NODOT" ]; then \
214 SHAREDFLAGS="$$SHAREDFLAGS -compatibility_version $$SHLIB_SOVER_NODOT"; \
218 @ $(CALC_VERSIONS); \
219 SHLIB=lib$(LIBNAME); \
220 SHLIB_SUFFIX=.dylib; \
221 ALLSYMSFLAGS='-all_load'; \
223 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS)"; \
224 if [ -n "$(LIBVERSION)" ]; then \
225 SHAREDFLAGS="$$SHAREDFLAGS -current_version $(LIBVERSION)"; \
227 if [ -n "$$SHLIB_SOVER_NODOT" ]; then \
228 SHAREDFLAGS="$$SHAREDFLAGS -compatibility_version $$SHLIB_SOVER_NODOT"; \
230 SHAREDFLAGS="$$SHAREDFLAGS -install_name ${INSTALLTOP}/lib/$$SHLIB${SHLIB_EXT}"; \
232 link_app.darwin: # is there run-path on darwin?
236 @ $(CALC_VERSIONS); \
237 INHIBIT_SYMLINKS=yes; \
238 SHLIB=cyg$(LIBNAME); \
239 expr $(PLATFORM) : 'mingw' > /dev/null && SHLIB=$(LIBNAME)eay32; \
241 LIBVERSION="$(LIBVERSION)"; \
242 SHLIB_SOVER=${LIBVERSION:+"-$(LIBVERSION)"}; \
243 ALLSYMSFLAGS='-Wl,--whole-archive'; \
244 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
245 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a"; \
248 @ $(CALC_VERSIONS); \
249 INHIBIT_SYMLINKS=yes; \
250 SHLIB=cyg$(LIBNAME); \
251 expr $(PLATFORM) : 'mingw' > /dev/null && SHLIB=$(LIBNAME)eay32; \
253 SHLIB_SOVER=-$(LIBVERSION); \
254 ALLSYMSFLAGS='-Wl,--whole-archive'; \
255 NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
256 base=; [ $(LIBNAME) = "crypto" ] && base=-Wl,--image-base,0x63000000; \
257 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a"; \
258 [ -f apps/$$SHLIB$$SHLIB_SUFFIX ] && rm apps/$$SHLIB$$SHLIB_SUFFIX; \
259 [ -f test/$$SHLIB$$SHLIB_SUFFIX ] && rm test/$$SHLIB$$SHLIB_SUFFIX; \
260 $(LINK_SO_A) || exit 1; \
261 cp -p $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX apps/; \
262 cp -p $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX test/
267 @ if ${DETECT_GNU_LD}; then \
270 SHLIB=lib$(LIBNAME).so; \
272 SHLIB_HIST=`echo "$(LIBCOMPATVERSIONS)" | cut -d';' -f2 | sed -e 's/ */:/'`; \
273 if [ -n "$$SHLIB_HIST" ]; then \
274 SHLIB_HIST="$${SHLIB_HIST}:$(LIBVERSION)"; \
276 SHLIB_HIST="$(LIBVERSION)"; \
279 ALLSYMSFLAGS='-all'; \
280 NOALLSYMSFLAGS='-none'; \
281 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared"; \
282 if [ -n "$$SHLIB_HIST" ]; then \
283 SHAREDFLAGS="$$SHAREDFLAGS -set_version $$SHLIB_HIST"; \
288 @ if ${DETECT_GNU_LD}; then \
291 SHLIB=lib$(LIBNAME).so; \
293 SHLIB_HIST=`echo "$(LIBCOMPATVERSIONS)" | cut -d';' -f2 | sed -e 's/ */:/'`; \
294 if [ -n "$$SHLIB_HIST" ]; then \
295 SHLIB_HIST="$${SHLIB_HIST}:$(LIBVERSION)"; \
297 SHLIB_HIST="$(LIBVERSION)"; \
300 ALLSYMSFLAGS='-all'; \
301 NOALLSYMSFLAGS='-none'; \
302 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared"; \
303 if [ -n "$$SHLIB_HIST" ]; then \
304 SHAREDFLAGS="$$SHAREDFLAGS -set_version $$SHLIB_HIST"; \
309 @if ${DETECT_GNU_LD}; then \
312 LDFLAGS="$(CFLAGS) -rpath $(LIBRPATH)"; \
317 @ if ${DETECT_GNU_LD}; then \
322 ($(CC) -v 2>&1 | grep gcc) > /dev/null && MINUSZ='-Wl,-z,'; \
323 SHLIB=lib$(LIBNAME).so; \
325 ALLSYMSFLAGS="$${MINUSZ}allextract"; \
326 NOALLSYMSFLAGS="$${MINUSZ}defaultextract"; \
327 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \
331 @ if ${DETECT_GNU_LD}; then \
336 (${CC} -v 2>&1 | grep gcc) > /dev/null && MINUSZ='-Wl,-z,'; \
337 SHLIB=lib$(LIBNAME).so; \
339 ALLSYMSFLAGS="$${MINUSZ}allextract"; \
340 NOALLSYMSFLAGS="$${MINUSZ}defaultextract"; \
341 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \
345 @ if ${DETECT_GNU_LD}; then \
348 LDFLAGS="$(CFLAGS) -R $(LIBRPATH)"; \
352 # OpenServer 5 native compilers used
354 @ if ${DETECT_GNU_LD}; then \
358 SHLIB=lib$(LIBNAME).so; \
362 SHAREDFLAGS="$(CFLAGS) -G -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
366 @ if ${DETECT_GNU_LD}; then \
370 SHLIB=lib$(LIBNAME).so; \
374 SHAREDFLAGS="$(CFLAGS) -G -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
376 $(LINK_SO_A_UNPACKED)
378 @${DETECT_GNU_LD} && $(DO_GNU_APP); \
381 # UnixWare 7 and OpenUNIX 8 native compilers used
383 @ if ${DETECT_GNU_LD}; then \
388 ($(CC) -v 2>&1 | grep gcc) > /dev/null && SHARE_FLAG='-shared'; \
389 SHLIB=lib$(LIBNAME).so; \
393 SHAREDFLAGS="$(CFLAGS) $${SHARE_FLAG} -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
397 @ if ${DETECT_GNU_LD}; then \
402 (${CC} -v 2>&1 | grep gcc) > /dev/null && SHARE_FLAG='-shared'; \
403 SHLIB=lib$(LIBNAME).so; \
407 SHAREDFLAGS="$(CFLAGS) $${SHARE_FLAG} -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
409 $(LINK_SO_A_UNPACKED)
411 @${DETECT_GNU_LD} && $(DO_GNU_APP); \
415 @ if ${DETECT_GNU_LD}; then \
419 SHLIB=lib$(LIBNAME).so; \
422 ($(CC) -v 2>&1 | grep gcc) > /dev/null && MINUSWL="-Wl,"; \
423 ALLSYMSFLAGS="$${MINUSWL}-all"; \
424 NOALLSYMSFLAGS="$${MINUSWL}-none"; \
425 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-soname,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
429 @ if ${DETECT_GNU_LD}; then \
433 SHLIB=lib$(LIBNAME).so; \
436 ($(CC) -v 2>&1 | grep gcc) > /dev/null && MINUSWL="-Wl,"; \
437 ALLSYMSFLAGS="$${MINUSWL}-all"; \
438 NOALLSYMSFLAGS="$${MINUSWL}-none"; \
439 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-soname,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
443 @LDFLAGS="$(CFLAGS) -Wl,-rpath,$(LIBRPATH)"; \
446 # 32-bit PA-RISC HP-UX embeds the -L pathname of libs we link with, so
447 # we compensate for it with +cdp ../: and +cdp ./:. Yes, these rewrite
448 # rules imply that we can only link one level down in catalog structure,
449 # but that's what takes place for the moment of this writing. +cdp option
450 # was introduced in HP-UX 11.x and applies in 32-bit PA-RISC link
451 # editor context only [it's simply ignored in other cases, which are all
455 @if ${DETECT_GNU_LD}; then $(DO_GNU_SO); else \
457 SHLIB=lib$(LIBNAME).sl; \
458 expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=lib$(LIBNAME).so; \
460 ALLSYMSFLAGS='-Wl,-Fl'; \
462 expr $(PLATFORM) : 'hpux64' > /dev/null && ALLSYMSFLAGS='-Wl,+forceload'; \
463 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+h,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
465 rm -f $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX || :; \
466 $(LINK_SO_O) && chmod a=rx $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX
468 @if ${DETECT_GNU_LD}; then $(DO_GNU_SO); else \
470 SHLIB=lib$(LIBNAME).sl; \
471 expr $(PLATFORM) : '.*ia64' > /dev/null && SHLIB=lib$(LIBNAME).so; \
473 ALLSYMSFLAGS='-Wl,-Fl'; \
475 expr $(PLATFORM) : 'hpux64' > /dev/null && ALLSYMSFLAGS='-Wl,+forceload'; \
476 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+h,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
478 rm -f $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX || :; \
479 $(LINK_SO_A) && chmod a=rx $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX
481 @if ${DETECT_GNU_LD}; then $(DO_GNU_APP); else \
482 LDFLAGS="$(CFLAGS) -Wl,+s,+cdp,../:,+cdp,./:,+b,$(LIBRPATH)"; \
487 @ $(CALC_VERSIONS); \
488 OBJECT_MODE=`expr x$(SHARED_LDFLAGS) : 'x\-[a-z]\([0-9]*\)'`; \
489 OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \
490 SHLIB=lib$(LIBNAME).so; \
492 ALLSYMSFLAGS='-bnogc'; \
494 SHAREDFLAGS='$(CFLAGS) $(SHARED_LDFLAGS) -G -bE:lib$(LIBNAME).exp -bM:SRE'; \
495 $(LINK_SO_O); rm -rf lib$(LIBNAME).exp
497 @ $(CALC_VERSIONS); \
498 OBJECT_MODE=`expr x$(SHARED_LDFLAGS) : 'x\-[a-z]\([0-9]*\)'`; \
499 OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \
500 SHLIB=lib$(LIBNAME).so; \
502 ALLSYMSFLAGS='-bnogc'; \
504 SHAREDFLAGS='$(CFLAGS) $(SHARED_LDFLAGS) -G -bE:lib$(LIBNAME).exp -bM:SRE'; \
507 LDFLAGS="$(CFLAGS) -blibpath:$(LIBRPATH):$${LIBPATH:-/usr/lib:/lib}"; \
511 @ $(CALC_VERSIONS); \
512 SHLIB=lib$(LIBNAME).so; \
516 SHAREDFLAGS='$(CFLAGS) -G'; \
519 @ $(CALC_VERSIONS); \
520 SHLIB=lib$(LIBNAME).so; \
524 SHAREDFLAGS='$(CFLAGS) -G'; \
525 $(LINK_SO_A_UNPACKED)
526 link_app.reliantunix:
529 # Targets to build symbolic links when needed
530 symlink.gnu symlink.solaris symlink.svr3 symlink.svr5 symlink.irix \
531 symlink.aix symlink.reliantunix:
532 @ $(CALC_VERSIONS); \
533 SHLIB=lib$(LIBNAME).so; \
536 @ $(CALC_VERSIONS); \
537 SHLIB=lib$(LIBNAME); \
538 SHLIB_SUFFIX=.dylib; \
541 @ $(CALC_VERSIONS); \
542 SHLIB=lib$(LIBNAME).sl; \
543 expr $(PLATFORM) : '.*ia64' > /dev/null && SHLIB=lib$(LIBNAME).so; \
545 # The following lines means those specific architectures do no symlinks
546 symlink.cygwin symlink.alpha-osf1 symlink.tru64 symlink.tru64-rpath:
548 # Compatibility targets
549 link_o.bsd-gcc-shared link_o.linux-shared link_o.gnu-shared: link_o.gnu
550 link_a.bsd-gcc-shared link_a.linux-shared link_a.gnu-shared: link_a.gnu
551 link_app.bsd-gcc-shared link_app.linux-shared link_app.gnu-shared: link_app.gnu
552 symlink.bsd-gcc-shared symlink.bsd-shared symlink.linux-shared symlink.gnu-shared: symlink.gnu
553 link_o.bsd-shared: link_o.bsd
554 link_a.bsd-shared: link_a.bsd
555 link_app.bsd-shared: link_app.bsd
556 link_o.darwin-shared: link_o.darwin
557 link_a.darwin-shared: link_a.darwin
558 link_app.darwin-shared: link_app.darwin
559 symlink.darwin-shared: symlink.darwin
560 link_o.cygwin-shared: link_o.cygwin
561 link_a.cygwin-shared: link_a.cygwin
562 link_app.cygwin-shared: link_app.cygwin
563 symlink.cygwin-shared: symlink.cygwin
564 link_o.alpha-osf1-shared: link_o.alpha-osf1
565 link_a.alpha-osf1-shared: link_a.alpha-osf1
566 link_app.alpha-osf1-shared: link_app.alpha-osf1
567 symlink.alpha-osf1-shared: symlink.alpha-osf1
568 link_o.tru64-shared: link_o.tru64
569 link_a.tru64-shared: link_a.tru64
570 link_app.tru64-shared: link_app.tru64
571 symlink.tru64-shared: symlink.tru64
572 link_o.tru64-shared-rpath: link_o.tru64-rpath
573 link_a.tru64-shared-rpath: link_a.tru64-rpath
574 link_app.tru64-shared-rpath: link_app.tru64-rpath
575 symlink.tru64-shared-rpath: symlink.tru64-rpath
576 link_o.solaris-shared: link_o.solaris
577 link_a.solaris-shared: link_a.solaris
578 link_app.solaris-shared: link_app.solaris
579 symlink.solaris-shared: symlink.solaris
580 link_o.svr3-shared: link_o.svr3
581 link_a.svr3-shared: link_a.svr3
582 link_app.svr3-shared: link_app.svr3
583 symlink.svr3-shared: symlink.svr3
584 link_o.svr5-shared: link_o.svr5
585 link_a.svr5-shared: link_a.svr5
586 link_app.svr5-shared: link_app.svr5
587 symlink.svr5-shared: symlink.svr5
588 link_o.irix-shared: link_o.irix
589 link_a.irix-shared: link_a.irix
590 link_app.irix-shared: link_app.irix
591 symlink.irix-shared: symlink.irix
592 link_o.hpux-shared: link_o.hpux
593 link_a.hpux-shared: link_a.hpux
594 link_app.hpux-shared: link_app.hpux
595 symlink.hpux-shared: symlink.hpux
596 link_o.aix-shared: link_o.aix
597 link_a.aix-shared: link_a.aix
598 link_app.aix-shared: link_app.aix
599 symlink.aix-shared: symlink.aix
600 link_o.reliantunix-shared: link_o.reliantunix
601 link_a.reliantunix-shared: link_a.reliantunix
602 link_app.reliantunix-shared: link_app.reliantunix
603 symlink.reliantunix-shared: symlink.reliantunix