summaryrefslogtreecommitdiffstats
path: root/src/mesa/pipe/Makefile
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2008-02-15 17:35:24 +0900
committerJosé Fonseca <[email protected]>2008-02-15 17:45:40 +0900
commitb642730be93149baa7556e5791393168ab396175 (patch)
tree67d174be5d4814261b93bc8b20c027a26d1c3d06 /src/mesa/pipe/Makefile
parent4593be34b2a6e494f0e476c8aa8e1d2633fffd47 (diff)
Code reorganization: move files into their places.
This is in a separate commit to ensure renames are properly preserved.
Diffstat (limited to 'src/mesa/pipe/Makefile')
-rw-r--r--src/mesa/pipe/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/mesa/pipe/Makefile b/src/mesa/pipe/Makefile
deleted file mode 100644
index d880d090c15..00000000000
--- a/src/mesa/pipe/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-TOP = ../../..
-include $(TOP)/configs/current
-
-
-ifeq ($(CONFIG_NAME), linux-cell)
-CELL_DIR = cell
-endif
-
-ifeq ($(CONFIG_NAME), linux-llvm)
-LLVM_DIR = llvm
-endif
-
-SUBDIRS = softpipe i915simple i965simple failover pipebuffer $(CELL_DIR) $(LLVM_DIR)
-
-
-default: subdirs
-
-
-subdirs:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE)) || exit 1 ; \
- fi \
- done
-
-
-clean:
- rm -f `find . -name \*.[oa]`