summaryrefslogtreecommitdiffstats
path: root/src/gallium/Makefile.am
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-10-17 21:14:09 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2015-11-21 12:52:19 +0000
commit950e06a29bd664af0cb454fc2f35f8cc4153e7f1 (patch)
tree5a5ffd6d182c1fbde2900fac4aecae348c1ba177 /src/gallium/Makefile.am
parentbe78f73b37caa5c9bc8dec9390d0c397bbff8729 (diff)
downloadexternal_mesa3d-950e06a29bd664af0cb454fc2f35f8cc4153e7f1.zip
external_mesa3d-950e06a29bd664af0cb454fc2f35f8cc4153e7f1.tar.gz
external_mesa3d-950e06a29bd664af0cb454fc2f35f8cc4153e7f1.tar.bz2
automake: remove no longer needed HAVE_LOADER_GALLIUM conditional
As of last few commits we have a static and dynamic pipe-loader. Either of which will be used with (almost) all targets.. We can look into allowing the user to select which way the targets are built, be that 'static for all' or 'per target' in follow up commits. After which we can look into building only the static or dynamic version, although building both shouldn't cause any issues. Hack/workaround alert: Control the standalone pipe-drivers via HAVE_CLOVER. Will need to be fixed as the targets are converted/configure knobs are in. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Rob Clark <robclark@freedesktop.org>
Diffstat (limited to 'src/gallium/Makefile.am')
-rw-r--r--src/gallium/Makefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/Makefile.am b/src/gallium/Makefile.am
index 2c75083..e42a8f1 100644
--- a/src/gallium/Makefile.am
+++ b/src/gallium/Makefile.am
@@ -5,6 +5,7 @@ SUBDIRS =
##
SUBDIRS += auxiliary
+SUBDIRS += auxiliary/pipe-loader
##
## Gallium pipe drivers and their respective winsys'
@@ -120,7 +121,8 @@ EXTRA_DIST = \
## Gallium state trackers and their users (targets)
##
-if HAVE_LOADER_GALLIUM
+## XXX: Rename the conditional once we have a config switch for static/dynamic pipe-drivers
+if HAVE_CLOVER
SUBDIRS += targets/pipe-loader
endif