forked from bingmann/stx-exparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
28 lines (19 loc) · 726 Bytes
/
Makefile.am
File metadata and controls
28 lines (19 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# $Id$
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = libstx-exparser testsuite examples wxparserdemo perl-binding
EXTRA_DIST = Doxyfile doxygen.css
pkgdatadir = $(libdir)/pkgconfig
pkgdata_DATA = stx-exparser.pc
if GCOV
clean-local:
find -name "*.da" -o -name "*.gcov" -o -name "*.gcda" -o -name "*.gcno" | xargs rm || true
run-gcov: clean-gcov
mkdir -p coverage/
lcov --directory . --zerocounters --path `pwd`
-$(MAKE) check
lcov --directory . --capture --output-file coverage/all.info
lcov -r coverage/all.info "/usr/*" -o coverage/testsuite.info
genhtml -o coverage --num-spaces 8 coverage/testsuite.info --title "STX ExpressionParser Testsuite" --prefix `pwd`
clean-gcov:
find -name "*.gcda" | xargs rm || true
endif