~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/lcov.am

  • Committer: Hartmut Holzgraefe
  • Date: 2010-08-30 19:06:55 UTC
  • mto: (1730.6.3 drizzle-make-lcov)
  • mto: This revision was merged to the branch mainline in revision 1810.
  • Revision ID: hartmut@hartmut-laptop-20100830190655-huox6mk5a2pvbscr
various lcov related changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#  Copyright (C) 2010 ...?
 
2
#
 
3
#  This program is free software; you can redistribute it and/or modify
 
4
#  it under the terms of the GNU General Public License as published by
 
5
#  the Free Software Foundation; version 2 of the License.
 
6
#
 
7
#  This program is distributed in the hope that it will be useful,
 
8
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
#  GNU General Public License for more details.
 
11
#
 
12
#  You should have received a copy of the GNU General Public License
 
13
#  along with this program; if not, write to the Free Software
 
14
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
15
 
 
16
LCOV = lcov
 
17
LCOV_GENHTML = genhtml
 
18
 
 
19
lcov: lcov-html
 
20
 
 
21
lcov-test: lcov-clean-data test
 
22
 
 
23
drizzle_lcov.info: lcov-test
 
24
        @echo "Generating $@"
 
25
        $(LCOV) --directory . --capture --base-directory . --output-file $@
 
26
        $(LCOV) --remove $@ '/usr/include/*' --output-file $@
 
27
        $(LCOV) --remove $@ '/usr/local/include/*' --output-file $@
 
28
        @echo
 
29
 
 
30
lcov-html: drizzle_lcov.info
 
31
        @echo "Generating lcov HTML"
 
32
        @$(LCOV_GENHTML) --legend --output-directory lcov_html/ --title "Drizzle Code Coverage" $<
 
33
 
 
34
lcov-clean:
 
35
        rm -f drizzle_lcov.info
 
36
        rm -rf lcov_data/
 
37
        rm -rf lcov_html/
 
38
 
 
39
lcov-clean-data:
 
40
        @find . -name \*.gcda -o -name \*.da -o -name \*.bbg? | xargs rm -f
 
41
 
 
42