diff options
author | José Fonseca <[email protected]> | 2007-11-23 17:22:54 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2007-12-09 14:06:00 +0000 |
commit | b47836225185c8d2e2ccf3e191230304709d0a57 (patch) | |
tree | 8e1e7e40086071cfd1ba35fcbc4aa54813163356 /src/mesa/pipe/Makefile | |
parent | 708582f6d5bec57716a894a18491078c40448dea (diff) |
gallium: Reusable pipe buffer library.
This is an optional library that winsys drivers can use to simplify memory
management, and help meet the winsys interface requirements.
Diffstat (limited to 'src/mesa/pipe/Makefile')
-rw-r--r-- | src/mesa/pipe/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/pipe/Makefile b/src/mesa/pipe/Makefile index a9dc393417d..2bf7318d59a 100644 --- a/src/mesa/pipe/Makefile +++ b/src/mesa/pipe/Makefile @@ -1,4 +1,3 @@ - TOP = ../../.. include $(TOP)/configs/current @@ -7,7 +6,7 @@ ifeq ($(CONFIG_NAME), linux-cell) CELL_DIR = cell endif -SUBDIRS = softpipe i915simple failover $(CELL_DIR) +SUBDIRS = softpipe i915simple failover pipebuffer $(CELL_DIR) default: subdirs @@ -22,4 +21,4 @@ subdirs: clean: - rm -f `find . -name \*.[oa]`
\ No newline at end of file + rm -f `find . -name \*.[oa]` |