summaryrefslogtreecommitdiffstats
path: root/src/egl/Makefile
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2012-06-11 09:34:22 -0700
committerEric Anholt <[email protected]>2012-06-21 09:58:12 -0700
commit07b28af5b57338263e8aef5833e7d5085051a655 (patch)
treec106498fb279d5059fa73518bf89032a0e80319a /src/egl/Makefile
parenta4ff3342d295c0e58a5138fe50ac79488bec8bf9 (diff)
automake: Convert src/egl/Makefile to automake.
Diffstat (limited to 'src/egl/Makefile')
-rw-r--r--src/egl/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/egl/Makefile b/src/egl/Makefile
deleted file mode 100644
index 361f6889580..00000000000
--- a/src/egl/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# src/egl/Makefile
-
-TOP = ../..
-include $(TOP)/configs/current
-
-SUBDIRS =
-
-ifneq ($(findstring wayland, $(EGL_PLATFORMS)),)
-SUBDIRS += wayland
-endif
-
-SUBDIRS += drivers main
-
-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