summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorChad Versace <chad.versace@intel.com>2015-12-14 10:28:18 -0800
committerChad Versace <chad.versace@intel.com>2015-12-15 08:45:49 -0800
commitf7e36f9f66248e94cc4247e2459d75f6cd32bc46 (patch)
treeda4e12434ca2a02c7157a095b4aa11a72a7093ee /src/Makefile.am
parent8224571ef80e58d0dd1f00f6ee91960ddca799fa (diff)
downloadexternal_mesa3d-f7e36f9f66248e94cc4247e2459d75f6cd32bc46.zip
external_mesa3d-f7e36f9f66248e94cc4247e2459d75f6cd32bc46.tar.gz
external_mesa3d-f7e36f9f66248e94cc4247e2459d75f6cd32bc46.tar.bz2
isl: Move it a standalone directory
The plan all along was to eventualyl move isl out of the Vulkan directory, because I intended i965 and anvil to share it. A small problem I encountered when attempting to write unit tests for isl precipitated the move. I discovered that it's easier to get isl unit tests to build if I remove the extra, unneeded dependencies injected by src/vulkan/Makefile.am. And the easiest way to remove those unneeded dependencies is to move isl out of src/vulkan. (Unit tests come in subsequent commits).
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index da638a8..9f51e44 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -54,6 +54,7 @@ AM_CFLAGS = $(VISIBILITY_CFLAGS)
AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS)
if HAVE_VULKAN
+SUBDIRS += isl
SUBDIRS += vulkan
endif