fix minor version defines to be at 1.6 (in sync now) ready for going
[framework/uifw/evas.git] / Makefile.am
index 235b7b6..d8cb45a 100644 (file)
@@ -29,30 +29,37 @@ EXTRA_DIST = \
 AUTHORS \
 COPYING \
 autogen.sh \
-README.in \
-README \
 evas.pc.in \
-evas-cairo-x11.pc.in \
 evas-directfb.pc.in \
 evas-fb.pc.in \
 evas-opengl-x11.pc.in \
 evas-opengl-sdl.pc.in \
-evas-opengl-glew.pc.in \
 evas-software-buffer.pc.in \
-evas-software-qtopia.pc.in \
 evas-software-x11.pc.in \
 evas-software-16-x11.pc.in \
 evas-software-8-x11.pc.in \
-evas-xrender-x11.pc.in \
-evas-xrender-xcb.pc.in \
 evas-software-gdi.pc.in \
 evas-software-ddraw.pc.in \
-evas-software-16-ddraw.pc.in \
 evas-direct3d.pc.in \
 evas-software-16-wince.pc.in \
-evas-software-sdl.pc.in \
+evas-psl1ght.pc.in \
+evas-wayland-shm.pc.in \
+evas-wayland-egl.pc.in \
 evas.spec.in \
-evas.spec
+evas.spec \
+m4/efl_attribute.m4 \
+m4/efl_coverage.m4 \
+m4/efl_doxygen.m4 \
+m4/efl_fnmatch.m4 \
+m4/efl_path_max.m4 \
+m4/efl_pthread.m4 \
+m4/efl_shm_open.m4 \
+m4/efl_tests.m4 \
+m4/evas_check_engine.m4 \
+m4/evas_check_loader.m4 \
+m4/evas_converter.m4 \
+m4/evas_dither.m4 \
+m4/evas_scaler.m4
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = evas.pc
@@ -81,10 +88,6 @@ if BUILD_ENGINE_BUFFER
 pkgconfig_DATA += evas-software-buffer.pc
 endif
 
-#if BUILD_ENGINE_SOFTWARE_QTOPIA
-#pkgconfig_DATA += evas-software-qtopia.pc
-#endif
-
 if BUILD_ENGINE_GL_X11
 pkgconfig_DATA += evas-opengl-x11.pc
 endif
@@ -93,24 +96,8 @@ if BUILD_ENGINE_GL_SDL
 pkgconfig_DATA += evas-opengl-sdl.pc
 endif
 
-if BUILD_ENGINE_QUARTZ
-pkgconfig_DATA += evas-quartz.pc
-endif
-
-if BUILD_ENGINE_GL_GLEW
-pkgconfig_DATA += evas-opengl-glew.pc
-endif
-
-#if BUILD_ENGINE_CAIRO_X11
-#pkgconfig_DATA += evas-cairo-x11.pc
-#endif
-
-if BUILD_ENGINE_XRENDER_X11
-pkgconfig_DATA += evas-xrender-x11.pc
-endif
-
-if BUILD_ENGINE_XRENDER_XCB
-pkgconfig_DATA += evas-xrender-xcb.pc
+if BUILD_ENGINE_GL_COCOA
+pkgconfig_DATA += evas-opengl-cocoa.pc
 endif
 
 if BUILD_ENGINE_SOFTWARE_GDI
@@ -121,10 +108,6 @@ if BUILD_ENGINE_SOFTWARE_DDRAW
 pkgconfig_DATA += evas-software-ddraw.pc
 endif
 
-if BUILD_ENGINE_SOFTWARE_16_DDRAW
-pkgconfig_DATA += evas-software-16-ddraw.pc
-endif
-
 if BUILD_ENGINE_DIRECT3D
 pkgconfig_DATA += evas-direct3d.pc
 endif
@@ -133,12 +116,72 @@ if BUILD_ENGINE_SOFTWARE_16_WINCE
 pkgconfig_DATA += evas-software-16-wince.pc
 endif
 
-if BUILD_ENGINE_SOFTWARE_SDL
+if BUILD_ENGINE_SOFTWARE_16_SDL
 pkgconfig_DATA += evas-software-sdl.pc
 endif
 
-.PHONY: doc
+if BUILD_ENGINE_PSL1GHT
+pkgconfig_DATA += evas-psl1ght.pc
+endif
+
+if BUILD_ENGINE_WAYLAND_SHM
+pkgconfig_DATA += evas-wayland-shm.pc
+endif
+
+if BUILD_ENGINE_WAYLAND_EGL
+pkgconfig_DATA += evas-wayland-egl.pc
+endif
+
+.PHONY: doc coverage
 
 doc:
        @echo "entering doc/"
        $(MAKE) -C doc doc
+
+# Unit tests
+
+if EFL_ENABLE_TESTS
+
+check-local:
+       @./src/tests/evas_suite
+
+else
+
+check-local:
+       @echo "reconfigure with --enable-tests"
+
+endif
+
+# Coverage report
+
+if EFL_ENABLE_COVERAGE
+lcov-reset:
+       @rm -rf $(top_builddir)/coverage
+       @find $(top_builddir) -name "*.gcda" -delete
+       @lcov --zerocounters --directory $(top_builddir)
+
+lcov-report:
+       @mkdir $(top_builddir)/coverage
+       lcov --capture --compat-libtool --output-file $(top_builddir)/coverage/coverage.info --directory $(top_builddir)
+       lcov --remove $(top_builddir)/coverage/coverage.info '*.h' --output-file $(top_builddir)/coverage/coverage.cleaned.info
+       genhtml -t "$(PACKAGE_STRING)" -o $(top_builddir)/coverage/html $(top_builddir)/coverage/coverage.cleaned.info
+       @echo "Coverage Report at $(top_builddir)/coverage/html"
+
+
+coverage:
+       @$(MAKE) lcov-reset
+       @$(MAKE) check
+       @$(MAKE) lcov-report
+else
+lcov-reset:
+       @echo "reconfigure with --enable-coverage"
+
+lcov-report:
+       @echo "reconfigure with --enable-coverage"
+
+coverage:
+       @echo "reconfigure with --enable-tests --enable-coverage"
+endif
+
+maintainer-clean-local:
+       rm -rf coverage