softpipe: add PIPE_CAP_MIN/MAX_TEXTURE_GATHER_OFFSET query cases
[mesa.git] / install-lib-links.mk
index 73d9e14e6f3e08696ec3d61cc744d1e3420e2d2b..09fb86a0b454461287bface83df4737f21dd9590 100644 (file)
@@ -1,14 +1,18 @@
 # 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)
-       $(MKDIR_P) $(top_builddir)/$(LIB_DIR)
-       for f in $(lib_LTLIBRARIES:%.la=.libs/%.so*); do        \
+       $(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR);       \
+       for f in $(lib_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); do \
                if test -h .libs/$$f; then                      \
                        cp -d $$f $(top_builddir)/$(LIB_DIR);   \
                else                                            \
                        ln -f $$f $(top_builddir)/$(LIB_DIR);   \
                fi;                                             \
        done && touch $@
+endif
+endif