diff options
author | Jakob Bornecrantz <jakob@tungstengraphics.com> | 2008-06-06 14:49:02 +0200 |
---|---|---|
committer | Jakob Bornecrantz <jakob@tungstengraphics.com> | 2008-06-06 14:49:02 +0200 |
commit | adbdabb85ae322d5c80cadcee931e36d5c688d98 (patch) | |
tree | 9274a42def079ecf97e7dff782e8196af4a5c246 /src/gallium/winsys/common/Makefile | |
parent | 18953a8771054f02f9a9bef08bf323e19086fdac (diff) |
i915: Moved pipe_buffer and i915_winsys functions to a common folder
Diffstat (limited to 'src/gallium/winsys/common/Makefile')
-rw-r--r-- | src/gallium/winsys/common/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/gallium/winsys/common/Makefile b/src/gallium/winsys/common/Makefile new file mode 100644 index 0000000000..4c0f3545a5 --- /dev/null +++ b/src/gallium/winsys/common/Makefile @@ -0,0 +1,20 @@ +TOP = ../../../.. +include $(TOP)/configs/current + + +SUBDIRS = $(GALLIUM_WINSYS_COMMON_DIRS) + + +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]` |