summaryrefslogtreecommitdiffstats
path: root/src/egl/wayland/Makefile
diff options
context:
space:
mode:
authorBenjamin Franzke <[email protected]>2012-01-24 20:38:01 +0100
committerBenjamin Franzke <[email protected]>2012-01-26 10:07:11 +0100
commit8b902056d53e0e14f7d58ac7f95091ab06abc72e (patch)
tree5910a2c884eb8cecf8d91943bea1874798689cf5 /src/egl/wayland/Makefile
parentdc435ae774b1deed3d00b7c7d33133c08b626737 (diff)
automake: src/egl/wayland
So we can use the wayland scanner makro, which is way better than our previous runtime-pkgconfig hack. Reviewed-by: Matt Turner <[email protected]>
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 c38a1302f18..00000000000
--- 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