~drizzle-trunk/drizzle/development

1823.5.1 by Monty Taylor
Updated pandora-build files to version 0.157
1
#  Copyright (C) 2010 Hartmut Holzgraefe
1730.7.1 by Hartmut Holzgraefe
various lcov related changes
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