aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 7c388418ed676d5bf59105810a2bd849c42cdaf3 (plain)
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
DISTCHECK_CONFIGURE_FLAGS = --disable-doc --disable-vala --disable-coverage

AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = \
	libcontextprovider \
	libcontextsubscriber \
	spec \
	doc \
	python \
	tools \
	common

DISTCLEANFILES = lcov.info lcov.html
MAINTAINERCLEANFILES = INSTALL

check-sum:
	$(MAKE) -C libcontextsubscriber/unit-tests check-sum

check-customer:
	$(MAKE) -C libcontextsubscriber/customer-tests check-customer

coverage: covoptioncheck
	$(MAKE) -C libcontextsubscriber/unit-tests coverage \
	&& $(MAKE) -C libcontextprovider/unit-tests coverage

.PHONY: coverage check-customer check-sum

include $(top_srcdir)/am/covoptioncheck.am