Move coveralls make target to makefile

...as it doesn't work for makefile.shared ...
This commit is contained in:
Steffen Jaeckel 2015-12-25 19:47:49 +01:00
parent da9fa5bd04
commit f9a6e0bf2f
3 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -10,7 +10,7 @@ Debug/
Release/
.libs/
.coveralls.yml
coverage/
coverage*/
coverage.info
# suppress output of build process and *nix/windows test executables

View File

@ -97,6 +97,9 @@ mtest:
timing: $(LIBNAME)
$(CC) $(CFLAGS) -DTIMER demo/timing.c $(LIBNAME) $(LFLAGS) -o ltmtest
coveralls: coverage
cpp-coveralls
# makes the LTM book DVI file, requires tetex, perl and makeindex [part of tetex I think]
docdvi: tommath.src
cd pics ; MAKE=${MAKE} ${MAKE}

View File

@ -90,9 +90,6 @@ lcov: coverage
lcov --capture --no-external --no-recursion $(LCOV_ARGS) --output-file coverage.info -q
genhtml coverage.info --output-directory coverage -q
coveralls: coverage
cpp-coveralls
# target that removes all coverage output
cleancov-clean:
rm -f `find . -type f -name "*.info" | xargs`