summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: d632425877f26b1406e83262d8968e95f3157ebd (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
NULL = 

SUBDIRS = \
	libzeitgeist \
	src \
	libzeitgeist/client \
	extensions \
	data \
	python \
	test \
	examples \
	po \
	doc \
	$(NULL)

zeitgeistdocdir = ${prefix}/doc/zeitgeist
zeitgeistdoc_DATA = \
	AUTHORS \
	NEWS \
	$(NULL)

DISTCHECK_CONFIGURE_FLAGS = \
	--with-session-bus-services-dir="\$(datadir)"/dbus-1/services \
	--enable-gtk-doc

EXTRA_DIST = \
	$(zeitgeistdoc_DATA) \
	INSTALL \
	COPYING \
	COPYING.GPL \
	ChangeLog \
	intltool-extract.in \
	intltool-merge.in \
	intltool-update.in \
	config.vapi \
	$(NULL)

DISTCLEANFILES = \
	intltool-extract \
	intltool-merge \
	intltool-update \
	po/.intltool-merge-cache \
	$(NULL)

run: all
	./src/zeitgeist-daemon

debug: all
	gdb ./src/zeitgeist-daemon

test-dbus: all
	./test/dbus/run-all-tests.py

test-direct: all
	cd ./test/direct/ && make run;

test-c: all
	cd ./test/c/ && make run;