OSDN Git Service

winsys/radeon: Unmap GPU VM address range when destroying BO
[android-x86/external-mesa.git] / install-lib-links.mk
index 9dd4c30..5fe9141 100644 (file)
@@ -1,14 +1,25 @@
 # 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.
 
-all-local : .libs/install-mesa-links
+if BUILD_SHARED
+if HAVE_COMPAT_SYMLINKS
+all-local : .install-mesa-links
 
-.libs/install-mesa-links : $(lib_LTLIBRARIES)
+.install-mesa-links : $(lib_LTLIBRARIES)
        $(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR);       \
-       for f in $(lib_LTLIBRARIES:%.la=.libs/%.so*); 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                                            \
                        ln -f $$f $(top_builddir)/$(LIB_DIR);   \
                fi;                                             \
        done && touch $@
+
+clean-local:
+       for f in $(notdir $(lib_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*)); do \
+               $(RM) $(top_builddir)/$(LIB_DIR)/$$f;   \
+       done;
+       $(RM) .install-mesa-links
+
+endif
+endif