summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/Makefile')
-rw-r--r--src/mesa/drivers/dri/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/Makefile b/src/mesa/drivers/dri/Makefile
index 2967106ea5..43731c0050 100644
--- a/src/mesa/drivers/dri/Makefile
+++ b/src/mesa/drivers/dri/Makefile
@@ -4,8 +4,6 @@ TOP = ../../../..
include $(TOP)/configs/current
-#SUBDIRS = fb ffb gamma i810 i830 mach64 mga r128 r200 radeon sis tdfx unichrome
-SUBDIRS = fb gamma i810 i830 mach64 mga r128 r200 radeon sis tdfx
default: $(LIB_DIR) subdirs
@@ -16,12 +14,12 @@ $(LIB_DIR):
subdirs:
- @for dir in $(SUBDIRS) ; do \
- (cd $$dir ; make) ; \
+ @for dir in $(DRI_DIRS) ; do \
+ (cd $$dir ; make) || exit 1; \
done
clean:
- @for dir in $(SUBDIRS) ; do \
+ @for dir in $(DRI_DIRS) ; do \
(cd $$dir ; make clean) ; \
done