Browse Source

small changes in build system

release0.1.5
Georg Hopp 13 years ago
parent
commit
325a3743eb
  1. 2
      Makefile.am.coverage
  2. 2
      m4/gcov.m4

2
Makefile.am.coverage

@ -21,7 +21,7 @@
generate-coverage-html: generate-coverage-html:
@echo Collecting coverage data @echo Collecting coverage data
$(LCOV) -d $(top_builddir) -c -o coverage.run --gcov-tool /usr/x86_64-pc-linux-gnu/gcc-bin/4.5.3/gcov
$(LCOV) -d $(top_builddir) -c -o coverage.run --gcov-tool /usr/bin/gcov
$(LCOV) -d $(top_builddir) -a ./coverage.base -a ./coverage.run -o coverage.info $(LCOV) -d $(top_builddir) -a ./coverage.base -a ./coverage.run -o coverage.info
LANG=C $(GENHTML) --prefix $(top_builddir) --output-directory coveragereport --title "Code Coverage" --legend --branch-coverage --show-details coverage.run LANG=C $(GENHTML) --prefix $(top_builddir) --output-directory coveragereport --title "Code Coverage" --legend --branch-coverage --show-details coverage.run

2
m4/gcov.m4

@ -31,7 +31,7 @@ AC_DEFUN([AC_TDD_GCOV],
AC_MSG_ERROR([ccache must be disabled when --enable-gcov option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1.]) AC_MSG_ERROR([ccache must be disabled when --enable-gcov option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1.])
fi fi
lcov_version_list="1.6 1.7 1.8 1.9"
lcov_version_list="1.6 1.7 1.8 1.9 1.10"
AC_CHECK_PROG(LCOV, lcov, lcov) AC_CHECK_PROG(LCOV, lcov, lcov)
AC_CHECK_PROG(GENHTML, genhtml, genhtml) AC_CHECK_PROG(GENHTML, genhtml, genhtml)

Loading…
Cancel
Save