diff options
author | Jakob Bornecrantz <[email protected]> | 2009-02-20 00:50:26 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-02-20 11:25:55 +0000 |
commit | fffadc219f3900a5b0405a9fddbc289873ea0842 (patch) | |
tree | 29f5833c3d96f97daf31fcaabe29731be86e9ba9 /src/gallium/auxiliary | |
parent | 3eebd24cb6202171ee00506bb3fc71ac7dcc4cb8 (diff) |
gallium: Improve recursive makefiles
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/gallium/auxiliary/Makefile b/src/gallium/auxiliary/Makefile index eaa0f2fe4e8..5446eb68a98 100644 --- a/src/gallium/auxiliary/Makefile +++ b/src/gallium/auxiliary/Makefile @@ -1,20 +1,12 @@ +# src/gallium/auxiliary/Makefile TOP = ../../.. include $(TOP)/configs/current - SUBDIRS = $(GALLIUM_AUXILIARY_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]` |