summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/drm/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/winsys/drm/Makefile
parent3eebd24cb6202171ee00506bb3fc71ac7dcc4cb8 (diff)
gallium: Improve recursive makefiles
Diffstat (limited to 'src/gallium/winsys/drm/Makefile')
-rw-r--r--src/gallium/winsys/drm/Makefile32
1 files changed, 3 insertions, 29 deletions
diff --git a/src/gallium/winsys/drm/Makefile b/src/gallium/winsys/drm/Makefile
index a84fcd8418..fee0191643 100644
--- a/src/gallium/winsys/drm/Makefile
+++ b/src/gallium/winsys/drm/Makefile
@@ -1,38 +1,12 @@
-# src/gallium/winsys/drm/Makefile
-
+# src/gallium/winsys/Makefile
TOP = ../../../..
-
include $(TOP)/configs/current
SUBDIRS = $(GALLIUM_WINSYS_DRM_DIRS)
-default: $(TOP)/$(LIB_DIR)/gallium subdirs
-
-
-$(TOP)/$(LIB_DIR)/gallium:
- -mkdir -p $(TOP)/$(LIB_DIR)/gallium
-
-
-subdirs:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE)) || exit 1 ; \
- fi \
- done
-
-
-install:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE) install) || exit 1 ; \
- fi \
- done
-
-
-clean:
+default install clean:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE) clean) ; \
+ (cd $$dir && $(MAKE) $@) || exit 1; \
fi \
done
- -rm -f common/*.o