mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-31 01:54:55 +01:00
Merge branch 'develop' of pwmt.org:zathura into develop
This commit is contained in:
commit
3d5aa9eaf0
2 changed files with 6 additions and 2 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -7,3 +7,7 @@
|
||||||
zathura
|
zathura
|
||||||
zathura-debug
|
zathura-debug
|
||||||
zathura.pc
|
zathura.pc
|
||||||
|
*.info
|
||||||
|
*.gcno
|
||||||
|
*.gcda
|
||||||
|
gcov/
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -88,8 +88,8 @@ doc: clean
|
||||||
$(QUIET)doxygen Doxyfile
|
$(QUIET)doxygen Doxyfile
|
||||||
|
|
||||||
gcov: clean
|
gcov: clean
|
||||||
$(QUIET)CFLAGS+="-fprofile-arcs -ftest-coverage" LDFLAGS+="-fprofile-arcs" $(MAKE) $(PROJECT)
|
$(QUIET)CFLAGS="${CFLAGS}-fprofile-arcs -ftest-coverage" LDFLAGS="${LDFLAGS} -fprofile-arcs" ${MAKE} $(PROJECT)
|
||||||
$(QUIET)make -C tests
|
$(QUIET)${MAKE} -C tests
|
||||||
$(QUIET)lcov --directory . --capture --output-file $(PROJECT).info
|
$(QUIET)lcov --directory . --capture --output-file $(PROJECT).info
|
||||||
$(QUIET)genhtml --output-directory gcov $(PROJECT).info
|
$(QUIET)genhtml --output-directory gcov $(PROJECT).info
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue