blob: b8981ce8548e611ccb2f3c1a4571b0b91d733f88 (
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
## Process this file with automake to produce Makefile.in
SUBDIRS = dummy freebsd linux openbsd
INCLUDES = \
-I$(top_builddir)/src -I$(top_srcdir)/src \
-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
-DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
-DPACKAGE_LIB_DIR=\""$(libdir)"\" \
-DHISTORY_DIR=\""$(historydir)"\" \
-D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
-DUP_COMPILATION \
-DUP_DISABLE_DEPRECATED \
-DG_LOG_DOMAIN=\"UPower\" \
-I$(top_srcdir)/libupower-glib \
-I$(top_srcdir) \
$(GIO_CFLAGS) \
$(DBUS_GLIB_CFLAGS) \
$(GUDEV_CFLAGS) \
$(POLKIT_CFLAGS) \
$(GLIB_CFLAGS)
UPOWER_LIBS = $(top_builddir)/libupower-glib/libupower-glib.la
BUILT_SOURCES = \
up-daemon-glue.h \
up-device-glue.h \
up-qos-glue.h \
up-kbd-backlight-glue.h \
up-wakeups-glue.h \
up-marshal.h \
up-marshal.c
up-marshal.h: up-marshal.list
glib-genmarshal $< --prefix=up_marshal --header > $@
up-marshal.c: up-marshal.list
echo "#include \"up-marshal.h\"" > $@ && glib-genmarshal $< --prefix=up_marshal --body >> $@
up-daemon-glue.h: org.freedesktop.UPower.xml Makefile.am
dbus-binding-tool --prefix=up_daemon --mode=glib-server --output=up-daemon-glue.h org.freedesktop.UPower.xml
up-device-glue.h: org.freedesktop.UPower.Device.xml Makefile.am
dbus-binding-tool --prefix=up_device --mode=glib-server --output=up-device-glue.h org.freedesktop.UPower.Device.xml
up-qos-glue.h: org.freedesktop.UPower.QoS.xml Makefile.am
dbus-binding-tool --prefix=up_qos --mode=glib-server --output=up-qos-glue.h org.freedesktop.UPower.QoS.xml
up-kbd-backlight-glue.h: org.freedesktop.UPower.KbdBacklight.xml Makefile.am
dbus-binding-tool --prefix=up_kbd_backlight --mode=glib-server --output=up-kbd-backlight-glue.h org.freedesktop.UPower.KbdBacklight.xml
up-wakeups-glue.h: org.freedesktop.UPower.Wakeups.xml Makefile.am
dbus-binding-tool --prefix=up_wakeups --mode=glib-server --output=up-wakeups-glue.h org.freedesktop.UPower.Wakeups.xml
libexec_PROGRAMS = upowerd
dbusifdir = $(datadir)/dbus-1/interfaces
dbusif_DATA = \
org.freedesktop.UPower.xml \
org.freedesktop.UPower.Device.xml \
org.freedesktop.UPower.QoS.xml \
org.freedesktop.UPower.KbdBacklight.xml \
org.freedesktop.UPower.Wakeups.xml
upowerd_SOURCES = \
up-polkit.h \
up-polkit.c \
up-daemon.h \
up-daemon.c \
up-device.h \
up-device.c \
up-device-list.h \
up-device-list.c \
up-qos.h \
up-qos.c \
up-config.h \
up-config.c \
up-kbd-backlight.h \
up-kbd-backlight.c \
up-wakeups.h \
up-wakeups.c \
up-history.h \
up-history.c \
up-backend.h \
up-native.h \
up-main.c \
$(BUILT_SOURCES)
upowerd_CPPFLAGS = \
-I$(top_srcdir)/src \
$(AM_CPPFLAGS)
upowerd_LDADD = \
-lm \
$(USB_LIBS) \
$(GIO_LIBS) \
$(DBUS_GLIB_LIBS) \
$(POLKIT_LIBS) \
$(UPOWER_LIBS)
if BACKEND_TYPE_DUMMY
upowerd_LDADD += \
dummy/libupshared.la
endif
if BACKEND_TYPE_FREEBSD
upowerd_LDADD += \
freebsd/libupshared.la
endif
if BACKEND_TYPE_OPENBSD
upowerd_LDADD += \
openbsd/libupshared.la
endif
if BACKEND_TYPE_LINUX
upowerd_LDADD += \
linux/libupshared.la \
$(USB_LIBS) \
$(GUDEV_LIBS) \
$(IDEVICE_LIBS)
if UP_BUILD_TESTS
DBUS_LAUNCH=$(shell which dbus-launch)
check-local: upowerd
env top_builddir=$(top_builddir) $(DBUS_LAUNCH) $(srcdir)/linux/integration-test -v
endif
endif
upowerd_CFLAGS = \
$(WARNINGFLAGS_C) \
$(NULL)
if UP_BUILD_TESTS
check_PROGRAMS = \
up-self-test
up_self_test_SOURCES = \
up-self-test.c \
up-polkit.h \
up-polkit.c \
up-config.h \
up-config.c \
up-daemon.h \
up-daemon.c \
up-device.h \
up-device.c \
up-device-list.h \
up-device-list.c \
up-qos.h \
up-qos.c \
up-kbd-backlight.h \
up-kbd-backlight.c \
up-wakeups.h \
up-wakeups.c \
up-history.h \
up-history.c \
up-backend.h \
up-native.h \
$(BUILT_SOURCES)
up_self_test_LDADD = \
-lm \
dummy/libuptest.la \
$(GLIB_LIBS) \
$(GIO_CFLAGS) \
$(DBUS_GLIB_LIBS) \
$(POLKIT_LIBS) \
$(UPOWER_LIBS)
up_self_test_CFLAGS = $(AM_CFLAGS) $(WARNINGFLAGS_C)
TESTS_ENVIRONMENT = $(DBUS_LAUNCH)
TESTS = up-self-test
endif
servicedir = $(datadir)/dbus-1/system-services
service_in_files = org.freedesktop.UPower.service.in
service_DATA = $(service_in_files:.service.in=.service)
$(service_DATA): $(service_in_files) Makefile
@sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
dbusconfdir = $(sysconfdir)/dbus-1/system.d
dbusconf_in_files = org.freedesktop.UPower.conf.in
dbusconf_DATA = $(dbusconf_in_files:.conf.in=.conf)
$(dbusconf_DATA): $(dbusconf_in_files) Makefile
cp $< $@
install-data-hook:
if test -w $(DESTDIR)$(prefix)/; then \
mkdir -p $(DESTDIR)$(historydir); \
fi
CLEANFILES = $(BUILT_SOURCES)
MAINTAINERCLEANFILES = \
$(dbusconf_DATA) \
$(service_DATA)
EXTRA_DIST = \
org.freedesktop.UPower.xml \
org.freedesktop.UPower.Device.xml \
org.freedesktop.UPower.QoS.xml \
org.freedesktop.UPower.KbdBacklight.xml \
org.freedesktop.UPower.Wakeups.xml \
up-marshal.list \
$(service_in_files) \
$(dbusconf_in_files)
clean-local :
rm -f *~ $(service_DATA) $(dbusconf_DATA)
-include $(top_srcdir)/git.mk
|