blob: 3037a3bcb35534da613b9404c07c0fecafb212ee (
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
|
libexec_PROGRAMS = \
indicator-session-service \
gtk-logout-helper
###################
# Indicator Stuff
###################
sessionlibdir = $(INDICATORDIR)
sessionlib_LTLIBRARIES = libsession.la
libsession_la_SOURCES = \
indicator-session.c \
session-dbus-client.h \
dbus-shared-names.h \
dbusmenu-shared.h \
users-service-client.h
libsession_la_CFLAGS = $(APPLET_CFLAGS) -Wall -Werror
libsession_la_LIBADD = $(APPLET_LIBS)
libsession_la_LDFLAGS = -module -avoid-version
consolekit-manager-client.h: $(srcdir)/consolekit-manager.xml
dbus-binding-tool \
--prefix=_consolekit_manager_client \
--mode=glib-client \
--output=consolekit-manager-client.h \
$(srcdir)/consolekit-manager.xml
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
session-dbus-client.h: $(srcdir)/session-dbus.xml
dbus-binding-tool \
--prefix=_session_dbus_client \
--mode=glib-client \
--output=session-dbus-client.h \
$(srcdir)/session-dbus.xml
session-dbus-server.h: $(srcdir)/session-dbus.xml
dbus-binding-tool \
--prefix=_session_dbus_server \
--mode=glib-server \
--output=session-dbus-server.h \
$(srcdir)/session-dbus.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
#################
# Session Stuff
#################
indicator_session_service_SOURCES = \
lock-helper.c \
lock-helper.h \
session-service.c \
session-dbus.c \
session-dbus.h \
session-dbus-server.h \
dbusmenu-shared.h \
gconf-helper.c \
users-service-dbus.h \
users-service-dbus.c \
users-service-marshal.c
indicator_session_service_CFLAGS = $(SESSIONSERVICE_CFLAGS) $(GCONF_CFLAGS) -DLIBEXECDIR=\"$(libexecdir)\" -Wall -Werror
indicator_session_service_LDADD = $(SESSIONSERVICE_LIBS) $(GCONF_LIBS)
#################
# GTK Logout Stuff
#################
gtk_logout_helper_SOURCES = \
gtk-logout-helper.c \
gconf-helper.c \
gconf-helper.h \
dialog.c \
dialog.h
gtk_logout_helper_CFLAGS = \
$(SESSIONSERVICE_CFLAGS) \
$(GTKLOGOUTHELPER_CFLAGS) \
$(GCONF_CFLAGS) \
-Wall -Werror \
-DINDICATOR_ICONS_DIR="\"$(INDICATORICONSDIR)\""
gtk_logout_helper_LDADD = \
$(SESSIONSERVICE_LIBS) \
$(GTKLOGOUTHELPER_LIBS) \
$(GCONF_LIBS)
###############
# Other Stuff
###############
BUILT_SOURCES = \
consolekit-manager-client.h \
session-dbus-client.h \
session-dbus-server.h \
users-service-client.h \
users-service-marshal.h \
users-service-marshal.c
EXTRA_DIST = \
consolekit-manager.xml \
session-dbus.xml \
users-service.xml \
users-service.list
CLEANFILES = \
$(BUILT_SOURCES)
|