mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00

* moved unit-tests into the dedicated directory unitTest * removed no-more-used files * common code style for test and usage of test_runner.h everywhere * imported video_input changes by Olivier Grégoire (GSoC-2017) Change-Id: Ifbb5585caaa2618c4ab943681814c9afbfc76311 Reviewed-by: Olivier Soldano <olivier.soldano@savoirfairelinux.com>
32 lines
709 B
Makefile
32 lines
709 B
Makefile
include globals.mk
|
|
|
|
# Makefile.am
|
|
|
|
SOURCES=
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = src ringtones man doc bin test
|
|
|
|
EXTRA_DIST = m4/libtool.m4 \
|
|
m4/lt~obsolete.m4 \
|
|
m4/ltoptions.m4 \
|
|
m4/ltsugar.m4 \
|
|
m4/ltversion.m4 \
|
|
contrib/bootstrap \
|
|
contrib/src
|
|
|
|
coverage:
|
|
$(AM_V_at)lcov --directory $(top_builddir) --capture --output-file dring-coverage.info
|
|
$(MKDIR_P) html-output
|
|
genhtml -o html-output dring-coverage.info
|
|
|
|
coverage-clean:
|
|
$(AM_V_at)lcov --directory $(top_builddir) --zerocounters
|
|
$(AM_V_at)rm -rf dring-coverage.info
|
|
$(AM_V_at)rm -rf html-output
|
|
$(AM_V_at)find -name '*.gcda' -exec rm -f {} +
|
|
$(AM_V_at)find -name '*.gcno' -exec rm -f {} +
|
|
|
|
.PHONY: coverage coverage-clean
|