diff options
Diffstat (limited to 'src/egl/Makefile')
-rw-r--r-- | src/egl/Makefile | 36 |
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 |