diff options
author | Matt Turner <[email protected]> | 2013-01-19 00:35:43 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-04-15 12:04:26 -0700 |
commit | 13a7010c216eae27d7b90cd81f468b60e2745986 (patch) | |
tree | 27c76774e40e126696ec585f7ff266faa5c9e0c7 /src/mesa/Makefile.am | |
parent | 8341effd4a07ee0168dd332cb6bcc98de51c1804 (diff) |
build: Get rid of DRIVER_DIRS
Tested-by: Emil Velikov <[email protected]>
Reviewed-and-Tested-by: Andreas Boll <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/mesa/Makefile.am')
-rw-r--r-- | src/mesa/Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am index 14685e76931..5850412aa4b 100644 --- a/src/mesa/Makefile.am +++ b/src/mesa/Makefile.am @@ -23,7 +23,19 @@ if NEED_LIBDRICORE DRICORE_SUBDIR = libdricore endif -SUBDIRS = program x86 x86-64 . $(DRICORE_SUBDIR) drivers +SUBDIRS = program x86 x86-64 . $(DRICORE_SUBDIR) + +if HAVE_X11_DRIVER +SUBDIRS += drivers/x11 +endif + +if HAVE_DRI +SUBDIRS += drivers/dri +endif + +if HAVE_OSMESA +SUBDIRS += drivers/osmesa +endif gldir = $(includedir)/GL gl_HEADERS = $(top_srcdir)/include/GL/*.h |