1 # Provide compatibility with scripts for the old Mesa build system for
2 # a while by putting a link to the driver into /lib of the build tree.
5 if HAVE_COMPAT_SYMLINKS
6 all-local
: .install-mesa-links
8 .install-mesa-links
: $(lib_LTLIBRARIES
)
9 $(AM_V_GEN
)$(MKDIR_P
) $(top_builddir
)/$(LIB_DIR
); \
10 for f in
$(join $(addsuffix .libs
/,$(dir $(lib_LTLIBRARIES
))),$(notdir $(lib_LTLIBRARIES
:%.la
=%.
$(LIB_EXT
)*))); do \
11 if
test -h .libs
/$$f; then \
12 cp
-d
$$f $(top_builddir
)/$(LIB_DIR
); \
14 ln
-f
$$f $(top_builddir
)/$(LIB_DIR
); \
19 for f in
$(notdir $(lib_LTLIBRARIES
:%.la
=.libs
/%.
$(LIB_EXT
)*)); do \
20 $(RM
) $(top_builddir
)/$(LIB_DIR
)/$$f; \
22 $(RM
) .install-mesa-links