-
Notifications
You must be signed in to change notification settings - Fork 30
/
Makefile.am
62 lines (51 loc) · 1.17 KB
/
Makefile.am
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Makefile.am for the Nice Glib ICE library
#
# (C) 2006, 2007 Collabora Ltd.
# (C) 2006, 2007 Nokia Corporation. All rights reserved.
#
# Licensed under MPL 1.1/LGPL 2.1. See file COPYING.
include common.mk
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
SUBDIRS = \
stun \
socket \
random \
agent \
nice \
gst \
docs \
tests \
examples
DISTCHECK_CONFIGURE_FLAGS = --disable-assert -enable-gtk-doc
EXTRA_DIST = \
COPYING.LGPL \
COPYING.MPL \
autogen.sh \
common.mk \
scripts/lcov.mk \
scripts/lcov.sh \
scripts/valgrind.sh \
win32
MAINTAINERCLEANFILES = ar-lib
dist_check_SCRIPTS = \
scripts/check-symbols.sh \
scripts/make-symbol-list.sh
lcov:
find -name '*.gcda' -delete
$(MAKE) $(AM_MAKEFLAGS) check
find -type d -name '.libs' | while read d ; do \
mv -fv $$d/*.gc* $$d/.. 2>/dev/null || true ; \
done
$(MAKE) lcov-report
lcov-report:
mkdir -p lcov
lcov -d . -c > lcov/lcov.info
lcov -l lcov/lcov.info 2>/dev/null | \
egrep '(^/usr|/test.*\.c)' | \
cut -d: -f1 > lcov/lcov.remove
lcov -r lcov/lcov.info `cat lcov/lcov.remove` 2>/dev/null > lcov/lcov.info.clean
genhtml -o lcov lcov/lcov.info.clean
clean-local:
rm -rf doc
.PHONY: doc lcov-report lcov