mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-01 08:26:01 +01:00
replace +=
This commit is contained in:
parent
4d00333fe8
commit
a4d049e5e7
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -88,7 +88,7 @@ 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