X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/460b9539a7c15580e41a71bbc0f47ae776238915..5c1ae3bc9c3a3cbed192fed2d68fc9b7bbe5c96f:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 401a14c..87a70c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ # # This file is part of DisOrder. -# Copyright (C) 2004, 2005, 2006 Richard Kettlewell +# Copyright (C) 2004-2008 Richard Kettlewell # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,10 +18,25 @@ # USA # -EXTRA_DIST=TODO CHANGES README.streams BUGS ChangeLog.d \ -README.upgrades README.client +EXTRA_DIST=TODO CHANGES README.streams BUGS \ +README.upgrades README.client README.raw README.vhost README.developers SUBDIRS=@subdirs@ +check-report: before-check check make-coverage-reports +before-check: + rm -f */*.gcda */*.gcov +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 . *.c ;\ + ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . *.c ;\ + echo cd ..;\ + cd ..;\ + done + echo-distdir: @echo $(distdir) -# arch-tag:7e0566bae866a64c2f998d4253581ce0 + +echo-version: + @echo $(VERSION)