summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/common/Makefile
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@tungstengraphics.com>2008-06-06 14:49:02 +0200
committerJakob Bornecrantz <jakob@tungstengraphics.com>2008-06-06 14:49:02 +0200
commitadbdabb85ae322d5c80cadcee931e36d5c688d98 (patch)
tree9274a42def079ecf97e7dff782e8196af4a5c246 /src/gallium/winsys/common/Makefile
parent18953a8771054f02f9a9bef08bf323e19086fdac (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/Makefile20
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]`