blob: bfbdb1db3e9011f8ca4579ac3d15d1199aa8db2c (
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
|
bin_PROGRAMS = mate-session
noinst_LTLIBRARIES = libgsmutil.la
noinst_PROGRAMS = \
test-client-dbus \
test-inhibit
AM_CPPFLAGS = \
$(MATE_SESSION_CFLAGS) \
$(SYSTEMD_CFLAGS) \
$(UPOWER_CFLAGS) \
$(DISABLE_DEPRECATED_CFLAGS)
AM_CFLAGS = $(WARN_CFLAGS)
mate_session_SOURCES = \
gsm-app.h \
gsm-app.c \
gsm-autostart-app.h \
gsm-autostart-app.c \
gsm-client.c \
gsm-client.h \
gsm-xsmp-client.h \
gsm-xsmp-client.c \
gsm-dbus-client.h \
gsm-dbus-client.c \
gsm-marshal.h \
gsm-marshal.c \
gsm-consolekit.c \
gsm-consolekit.h \
gsm-systemd.c \
gsm-systemd.h \
gsm-logout-dialog.h \
gsm-logout-dialog.c \
gsm-inhibit-dialog.h \
gsm-inhibit-dialog.c \
gs-idle-monitor.h \
gs-idle-monitor.c \
gsm-presence.h \
gsm-presence.c \
mdm.h \
mdm.c \
mdm-signal-handler.h \
mdm-signal-handler.c \
mdm-log.h \
mdm-log.c \
msm-gnome.c \
msm-gnome.h \
main.c \
gsm-store.h \
gsm-store.c \
gsm-inhibitor.h \
gsm-inhibitor.c \
gsm-manager.c \
gsm-manager.h \
gsm-session-save.c \
gsm-session-save.h \
gsm-xsmp-server.c \
gsm-xsmp-server.h
mate_session_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(X11_CFLAGS) \
$(SM_CFLAGS) \
$(ICE_CFLAGS) \
$(XEXT_CFLAGS) \
-I$(top_srcdir)/egg \
-DLOCALE_DIR=\""$(datadir)/locale"\" \
-DDATA_DIR=\""$(datadir)/mate-session"\" \
-DLIBEXECDIR=\"$(libexecdir)\" \
-DGTKBUILDER_DIR=\""$(pkgdatadir)"\" \
-DI_KNOW_THE_DEVICEKIT_POWER_API_IS_SUBJECT_TO_CHANGE
mate_session_LDADD = \
libgsmutil.la \
$(X11_LIBS) \
$(top_builddir)/egg/libeggdesktopfile.la \
$(SM_LIBS) \
$(ICE_LIBS) \
$(XRENDER_LIBS) \
$(XTEST_LIBS) \
$(XEXT_LIBS) \
$(MATE_SESSION_LIBS) \
$(SYSTEMD_LIBS) \
$(UPOWER_LIBS) \
$(EXECINFO_LIBS)
libgsmutil_la_SOURCES = \
gsm-util.c \
gsm-util.h
libgsmutil_la_LIBADD = \
$(MATE_SESSION_LIBS)
test_inhibit_SOURCES = test-inhibit.c
test_inhibit_LDADD = $(MATE_SESSION_LIBS)
test_client_dbus_SOURCES = test-client-dbus.c
test_client_dbus_LDADD = $(DBUS_GLIB_LIBS)
gsm-marshal.c: gsm-marshal.list
$(AM_V_GEN)echo "#include \"gsm-marshal.h\"" > $@ && \
$(GLIB_GENMARSHAL) $< --prefix=gsm_marshal --body >> $@
gsm-marshal.h: gsm-marshal.list
$(AM_V_GEN)$(GLIB_GENMARSHAL) $< --prefix=gsm_marshal --header > $@
gsm-manager-glue.h: org.mate.SessionManager.xml Makefile.am
$(AM_V_GEN)dbus-binding-tool --prefix=gsm_manager --mode=glib-server --output=gsm-manager-glue.h $(srcdir)/org.mate.SessionManager.xml
gsm-client-glue.h: org.mate.SessionManager.Client.xml Makefile.am
$(AM_V_GEN)dbus-binding-tool --prefix=gsm_client --mode=glib-server --output=gsm-client-glue.h $(srcdir)/org.mate.SessionManager.Client.xml
gsm-app-glue.h: org.mate.SessionManager.App.xml Makefile.am
$(AM_V_GEN)dbus-binding-tool --prefix=gsm_app --mode=glib-server --output=gsm-app-glue.h $(srcdir)/org.mate.SessionManager.App.xml
gsm-inhibitor-glue.h: org.mate.SessionManager.Inhibitor.xml Makefile.am
$(AM_V_GEN)dbus-binding-tool --prefix=gsm_inhibitor --mode=glib-server --output=gsm-inhibitor-glue.h $(srcdir)/org.mate.SessionManager.Inhibitor.xml
gsm-presence-glue.h: org.mate.SessionManager.Presence.xml Makefile.am
$(AM_V_GEN)dbus-binding-tool --prefix=gsm_presence --mode=glib-server --output=gsm-presence-glue.h $(srcdir)/org.mate.SessionManager.Presence.xml
BUILT_SOURCES = \
gsm-marshal.c \
gsm-marshal.h \
gsm-manager-glue.h \
gsm-presence-glue.h \
gsm-inhibitor-glue.h \
gsm-client-glue.h \
gsm-app-glue.h
EXTRA_DIST = \
README \
gsm-marshal.list \
org.mate.SessionManager.xml \
org.mate.SessionManager.App.xml \
org.mate.SessionManager.Client.xml \
org.mate.SessionManager.ClientPrivate.xml \
org.mate.SessionManager.Inhibitor.xml \
org.mate.SessionManager.Presence.xml
CLEANFILES = \
$(BUILT_SOURCES)
-include $(top_srcdir)/git.mk
|