diff options
author | Chad Versace <[email protected]> | 2015-12-14 10:28:18 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-12-15 08:45:49 -0800 |
commit | f7e36f9f66248e94cc4247e2459d75f6cd32bc46 (patch) | |
tree | da4e12434ca2a02c7157a095b4aa11a72a7093ee /src/Makefile.am | |
parent | 8224571ef80e58d0dd1f00f6ee91960ddca799fa (diff) |
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.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index da638a811fb..9f51e444dd0 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 |