mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 14:50:11 +01:00
automake: use install-lib-links.mk across all classic mesa
Use the handy script and minimise the boilerplate in the makefiles. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
parent
b496ab0567
commit
7b4ccad33d
3 changed files with 4 additions and 13 deletions
|
|
@ -11,3 +11,5 @@ libwayland_egl_la_SOURCES = wayland-egl.c
|
|||
libwayland_egl_la_LDFLAGS = -version-info 1
|
||||
|
||||
TESTS = wayland-egl-symbols-check
|
||||
|
||||
include $(top_srcdir)/install-lib-links.mk
|
||||
|
|
|
|||
|
|
@ -48,13 +48,7 @@ lib@OSMESA_LIB@_la_LIBADD = \
|
|||
$(OSMESA_LIB_DEPS)
|
||||
|
||||
if BUILD_SHARED
|
||||
# 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: lib@OSMESA_LIB@.la
|
||||
$(MKDIR_P) $(top_builddir)/$(LIB_DIR);
|
||||
ln -f .libs/lib@OSMESA_LIB@.so $(top_builddir)/$(LIB_DIR)/lib@OSMESA_LIB@.so;
|
||||
ln -f .libs/lib@OSMESA_LIB@.so.@OSMESA_VERSION@ $(top_builddir)/$(LIB_DIR)/lib@OSMESA_LIB@.so.@OSMESA_VERSION@;
|
||||
ln -f .libs/lib@OSMESA_LIB@.so.@OSMESA_VERSION@.0.0 $(top_builddir)/$(LIB_DIR)/
|
||||
include $(top_srcdir)/install-lib-links.mk
|
||||
endif
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
|
|
|
|||
|
|
@ -65,10 +65,5 @@ lib@GL_LIB@_la_LDFLAGS = \
|
|||
$(GL_LIB_DEPS)
|
||||
|
||||
if BUILD_SHARED
|
||||
# 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: lib@GL_LIB@.la
|
||||
$(MKDIR_P) $(top_builddir)/$(LIB_DIR);
|
||||
ln -f .libs/lib@GL_LIB@.so.$(GL_MAJOR).$(GL_MINOR).$(GL_PATCH) $(top_builddir)/$(LIB_DIR)/lib@GL_LIB@.so.$(GL_MAJOR)
|
||||
ln -sf lib@GL_LIB@.so.$(GL_MAJOR) $(top_builddir)/$(LIB_DIR)/lib@GL_LIB@.so
|
||||
include $(top_srcdir)/install-lib-links.mk
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue