diff options
author | Keith Whitwell <[email protected]> | 2004-04-14 12:44:07 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-04-14 12:44:07 +0000 |
commit | e61df587295e585a3643b523c499d6594962f76a (patch) | |
tree | b67db1199d047e1b35ebf3519ea5679cc635f747 /src/mesa/drivers/dri/Makefile | |
parent | 680ec7f85158eae58fd5ab56da8c66a645883cb0 (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/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/Makefile b/src/mesa/drivers/dri/Makefile index 2967106ea5d..43731c00503 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 |