Add native Windows thread support instead of using pthread
[framework/uifw/eet.git] / Makefile.am
index 76993fd..1d8eacb 100644 (file)
@@ -1,6 +1,6 @@
 ACLOCAL_AMFLAGS = -I m4
 
-SUBDIRS = src
+SUBDIRS = src doc
 
 MAINTAINERCLEANFILES = \
 Makefile.in \
@@ -14,7 +14,9 @@ depcomp \
 install-sh \
 ltmain.sh  \
 missing  \
-eet_docs.tar.gz \
+$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
+$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
+$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
 m4/libtool.m4 \
 m4/lt~obsolete.m4 \
 m4/ltoptions.m4 \
@@ -26,21 +28,34 @@ AUTHORS \
 COPYING \
 COPYING-PLAIN \
 autogen.sh \
-eet.c.in \
 eet.pc.in \
 eet.spec.in \
 eet.spec \
+m4/ac_attribute.m4 \
+m4/ac_path_generic.m4 \
+m4/efl_binary.m4 \
+m4/efl_coverage.m4 \
+m4/efl_doxygen.m4 \
+m4/efl_fnmatch.m4 \
+m4/efl_tests.m4 \
+m4/efl_threads.m4 \
 README.in \
-README \
-Doxyfile \
-doc \
-gendoc
+README
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = eet.pc
 
+.PHONY: doc coverage
 
-if EET_ENABLE_TESTS
+# Documentation
+
+doc:
+       @echo "entering doc/"
+       make -C doc doc
+
+# Unit tests
+
+if EFL_ENABLE_TESTS
 
 check-local:
        @./src/tests/eet_suite
@@ -52,7 +67,9 @@ check-local:
 
 endif
 
-if EET_ENABLE_COVERAGE
+# Coverage report
+
+if EFL_ENABLE_COVERAGE
 lcov-reset:
        @rm -rf coverage
        @find . -name "*.gcda" -exec rm {} \;
@@ -76,11 +93,11 @@ clean-local:
        @rm -rf coverage
 else
 lcov-reset:
-       @echo "reconfigure with --enable-gcov"
+       @echo "reconfigure with --enable-coverage"
 
 lcov-report:
-       @echo "reconfigure with --enable-gcov"
+       @echo "reconfigure with --enable-coverage"
 
 coverage:
-       @echo "reconfigure with --enable-tests --enable-gcov"
+       @echo "reconfigure with --enable-tests --enable-coverage"
 endif