X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=Makefile.am;h=079f9482c6912d33cdb85f76b4b62cecfbd335ad;hb=2230ba7b89bbaa989de311f9d7ea6d6e2cd5a9b8;hp=d163202714941cb07d46fe389fe06246813091d4;hpb=55b5455291498ef63c1c34976552d58708a74732;p=m6w6%2Flibmemcached diff --git a/Makefile.am b/Makefile.am index d1632027..079f9482 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,22 +12,43 @@ noinst_LTLIBRARIES = noinst_PROGRAMS = include_HEADERS = nobase_include_HEADERS = +check_PROGRAMS = EXTRA_HEADERS = BUILT_SOURCES= -EXTRA_DIST = README.FIRST +EXTRA_DIST= \ + ${srcdir}/m4/pandora_*.m4 \ + .quickly \ + README.FIRST \ + config/autorun.sh \ + config/pandora-plugin \ + config/uncrustify.cfg \ + m4/ac_cxx_header_stdcxx_98.m4 \ + m4/acx_pthread.m4 \ + m4/gettext.m4 \ + m4/iconv.m4 \ + m4/pkg.m4 \ + m4/po.m4 \ + m4/progtest.m4 +TEST_DOCS= +if BUILD_DOCS SUBDIRS = docs +TEST_DOCS+=test-docs +endif test-docs: (cd docs && $(MAKE) test-docs) include libmemcached/include.am include clients/include.am include libhashkit/include.am +include unittests/include.am include tests/include.am include example/include.am include support/include.am +include poll/include.am +include win32/include.am -check-local: test-no-outputdiff +TESTS += ${check_PROGRAMS} fedora: @@ -49,8 +70,28 @@ generic: rpm: all dist generic fedora merge-clean: + find ./ | $(GREP) \.gcda | xargs rm -f + find ./ | $(GREP) \.gcno | xargs rm -f + find ./ | $(GREP) \.gz | xargs rm -f find ./ | $(GREP) \.orig | xargs rm -f find ./ | $(GREP) \.rej | xargs rm -f + find ./ | $(GREP) \.rpm | xargs rm -f find ./ | $(GREP) \~$$ | xargs rm -f bzr unknowns +lcov: lcov-clean check + @echo + @echo " ------------------------------------------------------" + @echo "Make sure ./configure was run with '--enable-coverage'" + @echo "------------------------------------------------------" + @echo + cd libmemcached && lcov --capture --directory . --base-directory .. --output-file lcov.out + genhtml -o lcov --function-coverage -t libmemcached libmemcached/lcov.out + +lcov-clean: clean + rm -rf lcov */lcov.out + find . -name '*.gcno' | xargs rm -f + find . -name '*.gcda' | xargs rm -f + + +