blob: 9dd4c30d47c3bad72f8a9bfe0e9b590d29db83af [file] [log] [blame]
Kristian Høgsbergcbecd952014-01-29 11:40:25 -08001# 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.
3
4all-local : .libs/install-mesa-links
5
6.libs/install-mesa-links : $(lib_LTLIBRARIES)
Emil Velikovb496ab02014-03-03 03:04:38 +00007 $(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR); \
Kristian Høgsbergcbecd952014-01-29 11:40:25 -08008 for f in $(lib_LTLIBRARIES:%.la=.libs/%.so*); do \
9 if test -h .libs/$$f; then \
10 cp -d $$f $(top_builddir)/$(LIB_DIR); \
11 else \
12 ln -f $$f $(top_builddir)/$(LIB_DIR); \
13 fi; \
14 done && touch $@