mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 21:30:09 +01:00
There is little point in echoing everything that the script does to stdout. Wrap it in AM_V_GEN so that a reasonable message is printed as a indication of it's invocation. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
14 lines
496 B
Makefile
14 lines
496 B
Makefile
# 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
|
|
|
|
.libs/install-mesa-links : $(lib_LTLIBRARIES)
|
|
$(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR); \
|
|
for f in $(lib_LTLIBRARIES:%.la=.libs/%.so*); 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 $@
|