This cleans up some accidental linking we were getting with curses.
[m6w6/libmemcached] / Makefile.am
index f807c697fd3730b07457f6b1f5785a2bdbb66ec7..7a09b51f35a9fff850a171aa7e13cc33eb20430e 100644 (file)
@@ -1,21 +1,58 @@
 ACLOCAL_AMFLAGS = -I m4
 
-SUBDIRS = docs libmemcached support clients tests example libhashkit
-EXTRA_dist = README.FIRST
+# includes append to these:
+SUFFIXES =
+PHONY =
+TESTS =
+CLEANFILES =
+bin_PROGRAMS =
+noinst_HEADERS =
+lib_LTLIBRARIES =
+noinst_LTLIBRARIES =
+noinst_PROGRAMS =
+include_HEADERS =
+nobase_include_HEADERS =
+check_PROGRAMS =
+EXTRA_HEADERS =
+BUILT_SOURCES=
+DISTCLEANFILES=
+EXTRA_DIST= \
+           ${srcdir}/m4/pandora_*.m4 \
+           .quickly \
+           README.FIRST \
+           README.win32 \
+           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
 
-check-local: test-no-outputdiff
+TEST_DOCS=
+if BUILD_DOCS
+SUBDIRS = docs
+TEST_DOCS+=test-docs
+endif
 
-test: all
-       @(cd tests; ${MAKE} test)
+test-docs:
+       (cd docs && $(MAKE) test-docs)
+include libmemcached/include.am
+include clients/include.am
+include libtest/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
 
-test-extended: all
-       @(cd tests; ${MAKE} test-extended)
+TESTS += ${check_PROGRAMS}
 
-valgrind: all
-       @(cd tests; ${MAKE} valgrind)
-
-test-no-outputdiff:
-       @(cd tests; ${MAKE} test-no-outputdiff)
 
 fedora:
        rm -f ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm
@@ -36,10 +73,29 @@ 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
 
-hudson-valgrind: all
-       @(cd tests; ${MAKE} hudson-valgrind)
+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
+
+CLEANFILES+= config/top.h
+
+