summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/Makefile
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-04-14 12:44:07 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-04-14 12:44:07 +0000
commite61df587295e585a3643b523c499d6594962f76a (patch)
treeb67db1199d047e1b35ebf3519ea5679cc635f747 /src/mesa/drivers/dri/Makefile
parent680ec7f85158eae58fd5ab56da8c66a645883cb0 (diff)
First attempt at building a dri module in this tree
-- make target is linux-dri -- will attempt to build i830_dri.so The object builds but hasn't been tested.
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