aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: fefcd377960c302b35bbb1b54f3e1d89af5ac602 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
SUBDIRS = gtk-dialog

libexec_PROGRAMS = indicator-status-service indicator-users-service indicator-session-service

###################
# Indicator Stuff
###################

sessionlibdir = $(INDICATORDIR)
sessionlib_LTLIBRARIES = libsession.la
libsession_la_SOURCES = \
	indicator-session.c \
	dbus-shared-names.h \
	status-service-client.h \
	users-service-client.h
libsession_la_CFLAGS = $(APPLET_CFLAGS) -Wall -Werror
libsession_la_LIBADD = $(APPLET_LIBS)
libsession_la_LDFLAGS = -module -avoid-version

################
# Status Stuff
################

indicator_status_service_SOURCES = \
	status-service.c \
	status-service-dbus.h \
	status-service-dbus.c \
	status-service-server.h \
	users-service-dbus.h \
	users-service-dbus.c \
	users-service-marshal.c \
	users-service-marshal.h \
	status-provider.h \
	status-provider.c \
	status-provider-mc5.h \
	status-provider-mc5.c \
	status-provider-mc5-marshal.h \
	status-provider-mc5-marshal.c \
	status-provider-pidgin.h \
	status-provider-pidgin.c \
	status-provider-pidgin-marshal.h \
	status-provider-pidgin-marshal.c \
	status-provider-telepathy.h \
	status-provider-telepathy.c \
	status-provider-telepathy-marshal.h \
	status-provider-telepathy-marshal.c
indicator_status_service_CFLAGS = $(STATUSSERVICE_CFLAGS) -Wall -Werror
indicator_status_service_LDADD = $(STATUSSERVICE_LIBS)

users-service-client.h: $(srcdir)/users-service.xml
	dbus-binding-tool \
		--prefix=_users_service_client \
		--mode=glib-client \
		--output=users-service-client.h \
		$(srcdir)/users-service.xml

status-service-client.h: $(srcdir)/status-service.xml
	dbus-binding-tool \
		--prefix=_status_service_client \
		--mode=glib-client \
		--output=status-service-client.h \
		$(srcdir)/status-service.xml

status-service-server.h: $(srcdir)/status-service.xml
	dbus-binding-tool \
		--prefix=_status_service_server \
		--mode=glib-server \
		--output=status-service-server.h \
		$(srcdir)/status-service.xml

users-service-marshal.h: $(srcdir)/users-service.list
	glib-genmarshal --header \
		--prefix=_users_service_marshal $(srcdir)/users-service.list \
		> users-service-marshal.h

users-service-marshal.c: $(srcdir)/users-service.list
	glib-genmarshal --body \
		--prefix=_users_service_marshal $(srcdir)/users-service.list \
		> users-service-marshal.c

status-provider-pidgin-marshal.h: $(srcdir)/status-provider-pidgin.list
	glib-genmarshal --header \
		--prefix=_status_provider_pidgin_marshal $(srcdir)/status-provider-pidgin.list \
		> status-provider-pidgin-marshal.h

status-provider-pidgin-marshal.c: $(srcdir)/status-provider-pidgin.list
	glib-genmarshal --body \
		--prefix=_status_provider_pidgin_marshal $(srcdir)/status-provider-pidgin.list \
		> status-provider-pidgin-marshal.c

status-provider-telepathy-marshal.h: $(srcdir)/status-provider-telepathy.list
	glib-genmarshal --header \
		--prefix=_status_provider_telepathy_marshal $(srcdir)/status-provider-telepathy.list \
		> status-provider-telepathy-marshal.h

status-provider-telepathy-marshal.c: $(srcdir)/status-provider-telepathy.list
	glib-genmarshal --body \
		--prefix=_status_provider_telepathy_marshal $(srcdir)/status-provider-telepathy.list \
		> status-provider-telepathy-marshal.c

status-provider-mc5-marshal.h: $(srcdir)/status-provider-mc5.list
	glib-genmarshal --header \
		--prefix=_status_provider_mc5_marshal $(srcdir)/status-provider-mc5.list \
		> status-provider-mc5-marshal.h

status-provider-mc5-marshal.c: $(srcdir)/status-provider-mc5.list
	glib-genmarshal --body \
		--prefix=_status_provider_mc5_marshal $(srcdir)/status-provider-mc5.list \
		> status-provider-mc5-marshal.c

###############
# Users Stuff
###############

indicator_users_service_SOURCES = \
	lock-helper.c \
	lock-helper.h \
	users-service.c \
	users-service-dbus.c \
	users-service-marshal.c
indicator_users_service_CFLAGS = $(USERSSERVICE_CFLAGS) -Wall -Werror
indicator_users_service_LDADD = $(USERSSERVICE_LIBS)

#################
# Session Stuff
#################

indicator_session_service_SOURCES = \
	lock-helper.c \
	lock-helper.h \
	session-service.c \
	gtk-dialog/gconf-helper.c
indicator_session_service_CFLAGS = $(SESSIONSERVICE_CFLAGS) $(GCONF_CFLAGS) -DLIBEXECDIR=\"$(libexecdir)\" -Wall -Werror
indicator_session_service_LDADD = $(SESSIONSERVICE_LIBS) $(GCONF_LIBS)

###############
# Other Stuff
###############

BUILT_SOURCES = \
	users-service-client.h \
	status-service-client.h \
	status-service-server.h \
	status-provider-mc5-marshal.h \
	status-provider-mc5-marshal.c \
	users-service-marshal.h \
	users-service-marshal.c \
	status-provider-pidgin-marshal.h \
	status-provider-pidgin-marshal.c \
	status-provider-telepathy-marshal.h \
	status-provider-telepathy-marshal.c

EXTRA_DIST = \
	status-service.xml \
	status-provider-mc5.list \
	status-provider-pidgin.list \
	status-provider-telepathy.list

CLEANFILES = \
	$(BUILT_SOURCES)