summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/Makefile
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2009-02-20 00:50:26 +0100
committerJakob Bornecrantz <jakob@vmware.com>2009-02-20 11:25:55 +0000
commitfffadc219f3900a5b0405a9fddbc289873ea0842 (patch)
tree29f5833c3d96f97daf31fcaabe29731be86e9ba9 /src/gallium/drivers/Makefile
parent3eebd24cb6202171ee00506bb3fc71ac7dcc4cb8 (diff)
gallium: Improve recursive makefiles
Diffstat (limited to 'src/gallium/drivers/Makefile')
-rw-r--r--src/gallium/drivers/Makefile14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/gallium/drivers/Makefile b/src/gallium/drivers/Makefile
index 6161cb6ff8..9211a93bf7 100644
--- a/src/gallium/drivers/Makefile
+++ b/src/gallium/drivers/Makefile
@@ -1,20 +1,12 @@
+# src/gallium/drivers/Makefile
TOP = ../../..
include $(TOP)/configs/current
-
SUBDIRS = $(GALLIUM_DRIVER_DIRS)
-
-default: subdirs
-
-
-subdirs:
+default install clean:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE)) || exit 1 ; \
+ (cd $$dir && $(MAKE) $@) || exit 1; \
fi \
done
-
-
-clean:
- rm -f `find . -name \*.[oa]`