diff options
Diffstat (limited to 'src/egl/wayland/Makefile')
-rw-r--r-- | src/egl/wayland/Makefile | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/egl/wayland/Makefile b/src/egl/wayland/Makefile deleted file mode 100644 index c38a1302f1..0000000000 --- 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 |