xenocara/dist/Mesa/install-lib-links.mk

19 lines
556 B
Makefile
Raw Normal View History

2014-07-09 14:33:36 -06:00
# 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); \
2015-02-20 15:42:51 -07:00
for f in $(lib_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); do \
2014-07-09 14:33:36 -06:00
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