gallium/radeon: Add query for symbol specific config information
[mesa.git] / install-lib-links.mk
index 0e137198722ada86b162df01b797b288cd76d54e..5ea738537070b34dfcf2424a452aae3bb6593f5e 100644 (file)
@@ -1,12 +1,13 @@
 # Provide compatibility with scripts for the old Mesa build system for
 # a while by putting a link to the driver into /lib of the build tree.
 
+if BUILD_SHARED
 if HAVE_COMPAT_SYMLINKS
 all-local : .libs/install-mesa-links
 
 .libs/install-mesa-links : $(lib_LTLIBRARIES)
        $(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR);       \
-       for f in $(lib_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); do \
+       for f in $(join $(addsuffix .libs/,$(dir $(lib_LTLIBRARIES))),$(notdir $(lib_LTLIBRARIES:%.la=%.$(LIB_EXT)*))); do \
                if test -h .libs/$$f; then                      \
                        cp -d $$f $(top_builddir)/$(LIB_DIR);   \
                else                                            \
@@ -14,3 +15,4 @@ all-local : .libs/install-mesa-links
                fi;                                             \
        done && touch $@
 endif
+endif