diff options
author | Ben Skeggs <[email protected]> | 2008-02-16 16:30:22 +1100 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-02-16 16:30:22 +1100 |
commit | 87e3301533aa4d3e6e98db139887ebba3d217f7d (patch) | |
tree | ad80803f8f90263ea4c9adf9b3e7dd8eae4b05fa /src/gallium/Makefile | |
parent | 49405c43f245d3b3ddd12e891413bf7ead23145c (diff) | |
parent | 3320b1874e810583f95b93a89697b2955987b84f (diff) |
Merge branch 'upstream-gallium-0.1' into nouveau-gallium-0.1
Conflicts:
configs/linux-dri
src/mesa/pipe/Makefile
Diffstat (limited to 'src/gallium/Makefile')
-rw-r--r-- | src/gallium/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/gallium/Makefile b/src/gallium/Makefile new file mode 100644 index 00000000000..89e068a4492 --- /dev/null +++ b/src/gallium/Makefile @@ -0,0 +1,20 @@ +TOP = ../.. +include $(TOP)/configs/current + + +SUBDIRS = auxiliary drivers + + +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]` |