From 65f5780f8a94f2bad8146b6e85b8085efdf06feb Mon Sep 17 00:00:00 2001 Message-Id: <65f5780f8a94f2bad8146b6e85b8085efdf06feb.1715438408.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 1 Dec 2007 16:41:34 +0000 Subject: [PATCH] missing list for main coverage report too Organization: Straylight/Edgeware From: Richard Kettlewell --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index bba9048..b8318a4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,8 +29,8 @@ make-coverage-reports: @for subdir in lib plugins server clients disobedience; do \ echo cd $$subdir;\ cd $$subdir;\ - echo ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . ;\ - ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . ;\ + echo ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . *.c ;\ + ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . *.c ;\ echo cd ..;\ cd ..;\ done -- [mdw]