summaryrefslogtreecommitdiff
path: root/telepathy-logger/Makefile.am
blob: 3f2021ca7f04bd7302ed56b1ac8936afc03af5ce (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
59
60
61
62
63
64
65
66
67
68
69
include $(top_srcdir)/tools/shave.mk
include $(top_srcdir)/tools/flymake.mk

AM_CPPFLAGS =						\
	-I$(top_builddir)				\
	-I$(top_srcdir)					\
	$(ERROR_CFLAGS)					\
	-DG_LOG_DOMAIN=\"tp-logger\"			\
	$(LIBTPL_CFLAGS)				\
	$(DISABLE_DEPRECATED)				\
	$(WARN_CFLAGS)

BUILT_SOURCES =

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = telepathy-logger.pc

lib_LTLIBRARIES = libtelepathy-logger.la

LIBTPLdir = $(includedir)/telepathy-logger
LIBTPL_HEADERS = \
		action-chain.h			\
		channel.h			\
		channel-factory.h		\
		channel-text.h			\
		conf.h				\
		contact.h			\
		datetime.h			\
		dbus-service.h			\
		debug.h				\
		log-entry.h			\
		log-entry-text.h		\
		log-manager.h			\
		log-manager-priv.h		\
		log-store.h			\
		log-store-empathy.h		\
		log-store-factory.h		\
		observer.h			\
		util.h


libtelepathy_logger_la_SOURCES = \
		action-chain.c			\
		channel.c			\
		channel-factory.c		\
		channel-text.c			\
		conf.c				\
		contact.c			\
		datetime.c			\
		dbus-service.c			\
		debug.c				\
		log-entry.c			\
		log-entry-text.c		\
		log-manager.c			\
		log-store.c			\
		log-store-empathy.c		\
		log-store-factory.c		\
		observer.c

libtelepathy_logger_la_LIBADD = \
	$(top_builddir)/extensions/libtpl-extensions.la

check_c_sources = \
	$(libtelepathy_logger_la_SOURCES)	\
	$(LIBTPL_HEADERS)
include $(top_srcdir)/tools/check-coding-style.mk
check-local: check-coding-style

CLEANFILES = $(BUILT_SOURCES)