2016-11-06 13:58:51 +01:00
|
|
|
include globals.mk
|
2009-07-02 17:44:33 -04:00
|
|
|
|
2009-04-21 17:56:33 -04:00
|
|
|
# Makefile.am
|
|
|
|
|
2009-07-02 17:44:33 -04:00
|
|
|
SOURCES=
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2014-08-01 17:11:04 -04:00
|
|
|
|
2017-08-17 16:43:18 -04:00
|
|
|
SUBDIRS = src ringtones man doc bin test
|
2011-08-08 16:40:53 -04:00
|
|
|
|
2012-04-30 18:23:52 -04:00
|
|
|
EXTRA_DIST = m4/libtool.m4 \
|
2011-08-22 16:06:19 -04:00
|
|
|
m4/lt~obsolete.m4 \
|
|
|
|
m4/ltoptions.m4 \
|
|
|
|
m4/ltsugar.m4 \
|
2014-05-02 19:56:27 -04:00
|
|
|
m4/ltversion.m4 \
|
2014-09-30 00:02:57 -04:00
|
|
|
contrib/bootstrap \
|
|
|
|
contrib/src
|
2013-03-06 16:34:56 -05:00
|
|
|
|
|
|
|
coverage:
|
2015-03-25 15:27:18 -04:00
|
|
|
$(AM_V_at)lcov --directory $(top_builddir) --capture --output-file dring-coverage.info
|
2013-03-06 16:34:56 -05:00
|
|
|
$(MKDIR_P) html-output
|
2015-03-25 15:27:18 -04:00
|
|
|
genhtml -o html-output dring-coverage.info
|
2013-03-06 16:34:56 -05:00
|
|
|
|
|
|
|
coverage-clean:
|
|
|
|
$(AM_V_at)lcov --directory $(top_builddir) --zerocounters
|
2015-03-25 15:27:18 -04:00
|
|
|
$(AM_V_at)rm -rf dring-coverage.info
|
2013-03-06 18:37:32 -05:00
|
|
|
$(AM_V_at)rm -rf html-output
|
2013-03-06 16:34:56 -05:00
|
|
|
$(AM_V_at)find -name '*.gcda' -exec rm -f {} +
|
|
|
|
$(AM_V_at)find -name '*.gcno' -exec rm -f {} +
|
|
|
|
|
|
|
|
.PHONY: coverage coverage-clean
|