EXAMPLES_SUBDIRS = \ ecore_avahi \ ecore \ edje \ eet \ eina \ eio \ eldbus \ elocation \ elementary \ emile \ emotion \ ethumb_client \ evas CXX_EXAMPLES_SUBDIRS = \ eolian_cxx # eolian_cxx broken for now T7273 all: for d in $(EXAMPLES_SUBDIRS); do \ echo "Making examples in $$d"; \ $(MAKE) $(AM_MAKEFLAGS) -C $$d -f Makefile.examples || exit 1; \ done if pkg-config --exists eolian-cxx ; then \ for d in $(CXX_EXAMPLES_SUBDIRS) ; do \ echo "Making examples in $$d"; \ $(MAKE) $(AM_MAKEFLAGS) -C $$d -f Makefile.examples || exit 1; \ done \ fi clean: for d in $(EXAMPLES_SUBDIRS); do \ echo "Making examples in $$d"; \ $(MAKE) $(AM_MAKEFLAGS) -C $$d -f Makefile.examples clean || exit 1; \ done if pkg-config --exists eolian-cxx ; then \ for d in $(CXX_EXAMPLES_SUBDIRS) ; do \ echo "Making examples in $$d"; \ $(MAKE) $(AM_MAKEFLAGS) -C $$d -f Makefile.examples clean || exit 1; \ done \ fi