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