blob: e03406a47a498a92e50ad79c87047c8d9abe7adc (
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
|
EXTRA_DIST =
libexec_PROGRAMS = indicator-messages-service
indicator_messages_service_SOURCES = \
messages-service.c \
app-section.c \
app-section.h \
dbus-data.h \
gactionmuxer.c \
gactionmuxer.h \
gsettingsstrv.c \
gsettingsstrv.h \
gmenuutils.c \
gmenuutils.h \
im-menu.c \
im-menu.h \
im-phone-menu.c \
im-phone-menu.h \
im-desktop-menu.c \
im-desktop-menu.h \
im-application-list.c \
im-application-list.h
indicator_messages_service_CFLAGS = \
$(APPLET_CFLAGS) \
$(COVERAGE_CFLAGS) \
-I$(top_builddir)/common \
-Wall \
-Wl,-Bsymbolic-functions \
-Wl,-z,defs \
-Wl,--as-needed \
-Werror \
-DG_LOG_DOMAIN=\"Indicator-Messages\"
indicator_messages_service_LDADD = \
$(top_builddir)/common/libmessaging-common.la \
$(APPLET_LIBS)
indicator_messages_service_LDFLAGS = \
$(COVERAGE_LDFLAGS)
EXTRA_DIST += \
messages-service.xml
|