File: Makefile.am

package info (click to toggle)
bluez-alsa 4.3.1-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,156 kB
  • sloc: ansic: 32,301; makefile: 865; sh: 431; xml: 243; python: 236; pascal: 205
file content (26 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (2)
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
# BlueALSA - Makefile.am
# Copyright (c) 2016-2022 Arkadiusz Bokowy

ACLOCAL_AMFLAGS = -I m4
SUBDIRS = misc src utils

if ENABLE_MANPAGES
SUBDIRS += doc
endif

if ENABLE_TEST
SUBDIRS += test
endif

if WITH_COVERAGE
cov:
	$(MAKE) $(AM_MAKEFLAGS) check CFLAGS="$(CFLAGS) -O0 --coverage"
	$(LCOV) --capture -d src -d utils -d test \
		--exclude '$(abs_builddir)/*' --exclude '/usr/*' --exclude '*/test/*' \
		--output-file lcov.info
	$(GENHTML) -o coverage -t $(PACKAGE) lcov.info
clean-local:
	find $(top_builddir) -name "*.gcno" -delete
	find $(top_builddir) -name "*.gcda" -delete
	rm -rf coverage lcov.info
endif