summaryrefslogtreecommitdiff
path: root/src/gallium/targets/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/targets/Makefile')
-rw-r--r--src/gallium/targets/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/targets/Makefile b/src/gallium/targets/Makefile
new file mode 100644
index 0000000000..a0bc5eb14f
--- /dev/null
+++ b/src/gallium/targets/Makefile
@@ -0,0 +1,12 @@
+# src/gallium/winsys/Makefile
+TOP = ../../..
+include $(TOP)/configs/current
+
+SUBDIRS = $(GALLIUM_TARGET_DIRS)
+
+default install clean:
+ @for dir in $(SUBDIRS) ; do \
+ if [ -d $$dir ] ; then \
+ (cd $$dir && $(MAKE) $@) || exit 1; \
+ fi \
+ done