aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 24bbde1212ce0ef46951788156ca4a2ebb103b70 (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
31
32
33
34
35
36
37
38
39
40
41
NULL =

DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc

# We exclude the caches from the uninstall check.
distuninstallcheck_listfiles = find . -type f -a ! -name '*.cdb' -print

AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = \
	libcontextprovider \
	libcontextsubscriber \
	contextd \
	spec \
	tests \
	doc \
	tools \
	python \
	fake-provider \
	vapi \
	$(NULL)

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = contextprovider-1.0.pc

EXTRA_DIST = contextprovider-1.0-uninstalled.pc

DISTCLEANFILES = \
	lcov.info \
	lcov.html \
	$(NULL)

version:
	@echo @VERSION@

.PHONY: version

if HAVE_COVERAGE
include tools/lcov.am
endif