diff options
author | Emil Velikov <[email protected]> | 2014-07-20 23:20:57 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-08-13 00:46:54 +0100 |
commit | b75e0d7e25c51f944347cd59ccfaf26bf917258f (patch) | |
tree | 9b923f53294b48d7ee212320e1690fcc4a6a5a94 /src/gallium/Makefile.am | |
parent | 7af25d17a5956106c5319ba8cd7d947fbab76f6b (diff) |
automake: handle gallium SUBDIRs in gallium/Makefile
Considering the way we've been consolidating things it makes
sense to add the final two (aux and tests) in here.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gallium/Makefile.am')
-rw-r--r-- | src/gallium/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gallium/Makefile.am b/src/gallium/Makefile.am index d35e117578c..1e1fd43d508 100644 --- a/src/gallium/Makefile.am +++ b/src/gallium/Makefile.am @@ -1,6 +1,12 @@ SUBDIRS = ## +## Gallium auxiliary module +## + +SUBDIRS += auxiliary + +## ## Gallium pipe drivers and their respective winsys' ## @@ -156,3 +162,13 @@ endif if HAVE_ST_XVMC SUBDIRS += state_trackers/xvmc targets/xvmc endif + +## +## Gallium tests +## + +if HAVE_GALLIUM_TESTS +SUBDIRS += \ + tests/trivial \ + tests/unit +endif |