summaryrefslogtreecommitdiffstats
path: root/src/egl/wayland/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/egl/wayland/Makefile')
-rw-r--r--src/egl/wayland/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/egl/wayland/Makefile b/src/egl/wayland/Makefile
deleted file mode 100644
index c38a130..0000000
--- a/src/egl/wayland/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# src/egl/wayland/Makefile
-
-TOP = ../../..
-include $(TOP)/configs/current
-
-SUBDIRS = wayland-drm wayland-egl
-
-default: subdirs
-
-
-subdirs:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE)) || exit 1 ; \
- fi \
- done
-
-install:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE) install) || exit 1 ; \
- fi \
- done
-
-clean:
- -@for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE) clean) ; \
- fi \
- done