summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/sw/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/winsys/sw/Makefile')
-rw-r--r--src/gallium/winsys/sw/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/gallium/winsys/sw/Makefile b/src/gallium/winsys/sw/Makefile
deleted file mode 100644
index 2fad717eb16..00000000000
--- a/src/gallium/winsys/sw/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# src/gallium/winsys/sw/Makefile
-TOP = ../../../..
-include $(TOP)/configs/current
-
-SUBDIRS = null wrapper
-
-# TODO: this should go through a further indirection level
-# (i.e. EGL should set a variable that is checked here)
-ifneq ($(findstring x11, $(EGL_PLATFORMS)),)
-SUBDIRS += xlib
-endif
-
-ifneq ($(findstring fbdev, $(EGL_PLATFORMS)),)
-SUBDIRS += fbdev
-endif
-
-ifneq ($(findstring wayland, $(EGL_PLATFORMS)),)
-SUBDIRS += wayland
-endif
-
-default install clean:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE) $@) || exit 1; \
- fi \
- done