diff options
author | Emil Velikov <[email protected]> | 2015-10-17 22:06:17 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-11-21 12:52:19 +0000 |
commit | ad12027d8f8ff37ffe14ce17f9d79466b6ffeb32 (patch) | |
tree | 3beed07ed14c78e4196eae83296bb08634842f9f /src/gallium/auxiliary/pipe-loader | |
parent | 3ca12ee976e44a1126775a8e801889d42dd06980 (diff) |
gallium: rename libpipe_loader to libpipe_loader_dynamic
With the next commits we'll introduce a 'static' version, which will
essentially load the statically linked-in pipe-drivers, rather than the
standalone pipe-$foo.so ones.
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/Makefile.am b/src/gallium/auxiliary/pipe-loader/Makefile.am index 1597b79598e..974cf08a10b 100644 --- a/src/gallium/auxiliary/pipe-loader/Makefile.am +++ b/src/gallium/auxiliary/pipe-loader/Makefile.am @@ -10,19 +10,19 @@ AM_CFLAGS = \ $(GALLIUM_CFLAGS) \ $(VISIBILITY_CFLAGS) -noinst_LTLIBRARIES = libpipe_loader.la +noinst_LTLIBRARIES = libpipe_loader_dynamic.la -libpipe_loader_la_SOURCES = \ +libpipe_loader_dynamic_la_SOURCES = \ $(COMMON_SOURCES) if HAVE_LIBDRM AM_CFLAGS += \ $(LIBDRM_CFLAGS) -libpipe_loader_la_SOURCES += \ +libpipe_loader_dynamic_la_SOURCES += \ $(DRM_SOURCES) -libpipe_loader_la_LIBADD = \ +libpipe_loader_dynamic_la_LIBADD = \ $(top_builddir)/src/loader/libloader.la endif |