Add GMenuModel testcases
[platform/upstream/glib.git] / gio / tests / Makefile.am
1
2 NULL =
3 BUILT_SOURCES =
4
5 include $(top_srcdir)/Makefile.decl
6
7 SUBDIRS = gdbus-object-manager-example
8
9 INCLUDES =                      \
10         -g                      \
11         $(gio_INCLUDES)         \
12         $(GLIB_DEBUG_FLAGS)     \
13         -I$(top_builddir)/gio   \
14         -I$(top_srcdir)/gio     \
15         $(DBUS1_CFLAGS)         \
16         -DSRCDIR=\""$(srcdir)"\"
17
18 noinst_PROGRAMS = $(TEST_PROGS) $(SAMPLE_PROGS)
19 noinst_DATA = $(MISC_STUFF)
20
21 progs_ldadd     =                                       \
22         $(top_builddir)/glib/libglib-2.0.la             \
23         $(top_builddir)/gthread/libgthread-2.0.la       \
24         $(top_builddir)/gobject/libgobject-2.0.la       \
25         $(top_builddir)/gio/libgio-2.0.la
26
27 TEST_PROGS +=                   \
28         io-stream               \
29         actions                 \
30         memory-input-stream     \
31         memory-output-stream    \
32         readwrite               \
33         g-file                  \
34         g-file-info             \
35         converter-stream        \
36         data-input-stream       \
37         data-output-stream      \
38         g-icon                  \
39         buffered-input-stream   \
40         buffered-output-stream  \
41         sleepy-stream           \
42         filter-streams          \
43         volumemonitor           \
44         simple-async-result     \
45         srvtarget               \
46         contexts                \
47         gsettings               \
48         gschema-compile         \
49         async-close-output-stream \
50         gdbus-addresses         \
51         network-address         \
52         gdbus-message           \
53         socket                  \
54         pollable                \
55         tls-certificate         \
56         tls-interaction         \
57         cancellable             \
58         vfs                     \
59         network-monitor         \
60         fileattributematcher    \
61         gmenumodel              \
62         $(NULL)
63
64 if OS_UNIX
65 TEST_PROGS +=                   \
66         gdbus-close-pending     \
67         gdbus-connection        \
68         gdbus-connection-flush  \
69         gdbus-connection-loss   \
70         gdbus-connection-slow   \
71         gdbus-names             \
72         gdbus-proxy             \
73         gdbus-proxy-threads     \
74         gdbus-proxy-well-known-name \
75         gdbus-introspection     \
76         gdbus-threading         \
77         gdbus-export            \
78         gdbus-error             \
79         gdbus-peer              \
80         gdbus-exit-on-close     \
81         gdbus-non-socket        \
82         gdbus-bz627724          \
83         appinfo                 \
84         contenttype             \
85         mimeapps                \
86         file                    \
87         $(NULL)
88 endif
89
90 SAMPLE_PROGS =                          \
91         resolver                        \
92         socket-server                   \
93         socket-client                   \
94         echo-server                     \
95         httpd                           \
96         send-data                       \
97         filter-cat                      \
98         gdbus-example-export            \
99         gdbus-example-own-name          \
100         gdbus-example-watch-name        \
101         gdbus-example-watch-proxy       \
102         gdbus-example-server            \
103         gdbus-example-subtree           \
104         gdbus-example-peer              \
105         gdbus-example-proxy-subclass    \
106         gdbus-connection-flush-helper   \
107         appinfo-test                    \
108         proxy                           \
109         gapplication-example-open       \
110         gapplication-example-cmdline    \
111         gapplication-example-cmdline2   \
112         gapplication-example-cmdline3   \
113         gapplication-example-actions    \
114         $(NULL)
115
116
117 if OS_UNIX
118 TEST_PROGS +=                   \
119         live-g-file             \
120         desktop-app-info        \
121         unix-fd                 \
122         unix-streams            \
123         gapplication            \
124         basic-application       \
125         gdbus-test-codegen      \
126         $(NULL)
127 SAMPLE_PROGS +=                                 \
128         gdbus-example-unix-fd-client            \
129         gdbus-example-objectmanager-server      \
130         gdbus-example-objectmanager-client      \
131         $(NULL)
132 endif
133
134 if OS_WIN32
135 TEST_PROGS += win32-streams
136 endif
137
138 io_stream_SOURCES = io-stream.c
139 io_stream_LDADD   = $(progs_ldadd)
140
141 actions_LDADD     = $(progs_ldadd)
142
143 memory_input_stream_SOURCES       = memory-input-stream.c
144 memory_input_stream_LDADD         = $(progs_ldadd)
145
146 memory_output_stream_SOURCES      = memory-output-stream.c
147 memory_output_stream_LDADD        = $(progs_ldadd)
148
149 g_file_SOURCES    = g-file.c
150 g_file_LDADD      = $(progs_ldadd)
151
152 readwrite_SOURCES         = readwrite.c
153 readwrite_LDADD   = $(progs_ldadd)
154
155 g_file_info_SOURCES     = g-file-info.c
156 g_file_info_LDADD       = $(progs_ldadd)
157
158 converter_stream_SOURCES        = converter-stream.c
159 converter_stream_LDADD          = $(progs_ldadd)
160
161 data_input_stream_SOURCES       = data-input-stream.c
162 data_input_stream_LDADD         = $(progs_ldadd)
163
164 data_output_stream_SOURCES      = data-output-stream.c
165 data_output_stream_LDADD        = $(progs_ldadd)
166
167 async_close_output_stream_SOURCES       = async-close-output-stream.c
168 async_close_output_stream_LDADD         = $(progs_ldadd)
169
170 filter_cat_SOURCES      = filter-cat.c
171 filter_cat_LDADD        = $(progs_ldadd)
172
173 g_icon_SOURCES  = g-icon.c
174 g_icon_LDADD    = $(progs_ldadd)
175
176 buffered_input_stream_SOURCES   = buffered-input-stream.c
177 buffered_input_stream_LDADD     = $(progs_ldadd)
178
179 buffered_output_stream_SOURCES  = buffered-output-stream.c
180 buffered_output_stream_LDADD    = $(progs_ldadd)
181
182 live_g_file_SOURCES       = live-g-file.c
183 live_g_file_LDADD         = $(progs_ldadd)
184
185 desktop_app_info_SOURCES  = desktop-app-info.c
186 desktop_app_info_LDADD    = $(progs_ldadd)
187
188 unix_streams_SOURCES      = unix-streams.c
189 unix_streams_LDADD        = $(progs_ldadd) \
190         $(top_builddir)/gthread/libgthread-2.0.la
191
192 win32_streams_SOURCES     = win32-streams.c
193 win32_streams_LDADD       = $(progs_ldadd) \
194         $(top_builddir)/gthread/libgthread-2.0.la
195
196 unix_fd_SOURCES   = unix-fd.c
197 unix_fd_LDADD     = $(progs_ldadd)
198
199 simple_async_result_SOURCES     = simple-async-result.c
200 simple_async_result_LDADD       = $(progs_ldadd)
201
202 sleepy_stream_SOURCES           = sleepy-stream.c
203 sleepy_stream_LDADD             = $(progs_ldadd)
204
205 filter_streams_SOURCES          = filter-streams.c
206 filter_streams_LDADD            = $(progs_ldadd)
207
208 volumemonitor_SOURCES           = volumemonitor.c
209 volumemonitor_LDADD             = $(progs_ldadd)
210
211 resolver_SOURCES          = resolver.c
212 resolver_LDADD            = $(progs_ldadd) \
213         $(top_builddir)/gthread/libgthread-2.0.la
214
215 socket_server_SOURCES     = socket-server.c
216 socket_server_LDADD       = $(progs_ldadd) \
217         $(top_builddir)/gthread/libgthread-2.0.la
218
219 socket_client_SOURCES     = socket-client.c \
220                             gtlsconsoleinteraction.c \
221                             gtlsconsoleinteraction.h
222 socket_client_LDADD       = $(progs_ldadd) \
223         $(top_builddir)/gthread/libgthread-2.0.la
224
225 echo_server_SOURCES       = echo-server.c
226 echo_server_LDADD         = $(progs_ldadd) \
227         $(top_builddir)/gthread/libgthread-2.0.la
228
229 httpd_SOURCES             = httpd.c
230 httpd_LDADD               = $(progs_ldadd) \
231         $(top_builddir)/gthread/libgthread-2.0.la
232
233 send_data_SOURCES         = send-data.c
234 send_data_LDADD           = $(progs_ldadd) \
235         $(top_builddir)/gthread/libgthread-2.0.la
236
237 srvtarget_SOURCES         = srvtarget.c
238 srvtarget_LDADD           = $(progs_ldadd)
239
240 network_address_SOURCE    = network-address.c
241 network_address_LDADD     = $(progs_ldadd)
242
243 socket_SOURCE             = socket.c
244 socket_LDADD              = $(progs_ldadd)
245
246 pollable_SOURCE           = pollable.c
247 pollable_LDADD            = $(progs_ldadd)
248
249 contexts_SOURCES          = contexts.c
250 contexts_LDADD            = $(progs_ldadd) \
251         $(top_builddir)/gthread/libgthread-2.0.la
252
253 gsettings_SOURCES         = gsettings.c
254 gsettings_LDADD           = $(progs_ldadd)
255
256 gschema_compile_SOURCES   = gschema-compile.c
257 gschema_compile_LDADD     = $(progs_ldadd)
258
259 if HAVE_DBUS1
260 TEST_PROGS += gdbus-serialization
261 gdbus_serialization_SOURCES = gdbus-serialization.c gdbus-tests.h gdbus-tests.c
262 gdbus_serialization_CFLAGS = $(DBUS1_CFLAGS)
263 gdbus_serialization_LDADD = $(progs_ldadd) $(DBUS1_LIBS)
264 endif
265
266 gdbus_addresses_SOURCES = gdbus-addresses.c
267 gdbus_addresses_LDADD = $(progs_ldadd)
268
269 gdbus_bz627724_SOURCES = gdbus-bz627724.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
270 gdbus_bz627724_LDADD = $(progs_ldadd)
271
272 gdbus_close_pending_SOURCES = gdbus-close-pending.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
273 gdbus_close_pending_LDADD = $(progs_ldadd)
274
275 if OS_UNIX
276 gdbus-test-codegen-generated.h gdbus-test-codegen-generated.c : test-codegen.xml Makefile $(top_builddir)/gio/gdbus-2.0/codegen/gdbus-codegen
277         $(AM_V_GEN) UNINSTALLED_GLIB_SRCDIR=$(top_srcdir) \
278                 UNINSTALLED_GLIB_BUILDDIR=$(top_builddir) \
279                 $(PYTHON) $(top_builddir)/gio/gdbus-2.0/codegen/gdbus-codegen \
280                 --interface-prefix org.project. \
281                 --generate-c-code gdbus-test-codegen-generated \
282                 --c-generate-object-manager \
283                 --c-namespace Foo_iGen \
284                 --generate-docbook gdbus-test-codegen-generated-doc \
285                 --annotate "org.project.Bar" Key1 Value1 \
286                 --annotate "org.project.Bar" org.gtk.GDBus.Internal Value2 \
287                 --annotate "org.project.Bar.HelloWorld()" Key3 Value3 \
288                 --annotate "org.project.Bar::TestSignal" Key4 Value4 \
289                 --annotate "org.project.Bar:ay" Key5 Value5 \
290                 --annotate "org.project.Bar.TestPrimitiveTypes()[val_int32]" Key6 Value6 \
291                 --annotate "org.project.Bar.TestPrimitiveTypes()[ret_uint32]" Key7 Value7 \
292                 --annotate "org.project.Bar::TestSignal[array_of_strings]" Key8 Value8 \
293                 $(srcdir)/test-codegen.xml \
294                 $(NULL)
295
296 BUILT_SOURCES += gdbus-test-codegen-generated.c gdbus-test-codegen-generated.h
297
298 gdbus_test_codegen_SOURCES  = gdbus-test-codegen.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
299 gdbus_test_codegen_SOURCES += gdbus-test-codegen-generated.c gdbus-test-codegen-generated.h
300 gdbus_test_codegen_LDADD = $(progs_ldadd)
301 endif # OS_UNIX
302
303 gdbus_connection_SOURCES = gdbus-connection.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
304 gdbus_connection_LDADD = $(progs_ldadd)
305
306 gdbus_connection_flush_SOURCES = \
307         gdbus-connection-flush.c \
308         test-io-stream.c \
309         test-io-stream.h \
310         test-pipe-unix.c \
311         test-pipe-unix.h \
312         $(NULL)
313 gdbus_connection_flush_LDADD = $(progs_ldadd)
314
315 gdbus_connection_loss_SOURCES = gdbus-connection-loss.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
316 gdbus_connection_loss_LDADD = $(progs_ldadd)
317
318 gdbus_connection_slow_SOURCES = gdbus-connection-slow.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
319 gdbus_connection_slow_LDADD = $(progs_ldadd)
320
321 gdbus_message_SOURCES = gdbus-message.c
322 gdbus_message_LDADD = $(progs_ldadd)
323
324 gdbus_names_SOURCES = gdbus-names.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
325 gdbus_names_LDADD = $(progs_ldadd)
326
327 gdbus_proxy_SOURCES = gdbus-proxy.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
328 gdbus_proxy_LDADD = $(progs_ldadd)
329
330 gdbus_proxy_threads_SOURCES = gdbus-proxy-threads.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
331 gdbus_proxy_threads_LDADD = $(progs_ldadd)
332
333 gdbus_proxy_well_known_name_SOURCES = gdbus-proxy-well-known-name.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
334 gdbus_proxy_well_known_name_LDADD = $(progs_ldadd)
335
336 gdbus_introspection_SOURCES = gdbus-introspection.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
337 gdbus_introspection_LDADD = $(progs_ldadd)
338
339 gdbus_threading_SOURCES = gdbus-threading.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
340 gdbus_threading_LDADD = $(progs_ldadd)
341
342 gdbus_export_SOURCES = gdbus-export.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
343 gdbus_export_LDADD = $(progs_ldadd)
344
345 gdbus_error_SOURCES = gdbus-error.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
346 gdbus_error_LDADD = $(progs_ldadd)
347
348 gdbus_non_socket_SOURCES = \
349         gdbus-non-socket.c \
350         gdbus-tests.c \
351         gdbus-tests.h \
352         test-io-stream.c \
353         test-io-stream.h \
354         test-pipe-unix.c \
355         test-pipe-unix.h \
356         $(NULL)
357 gdbus_non_socket_LDADD = $(progs_ldadd)
358
359 gdbus_exit_on_close_SOURCES = gdbus-exit-on-close.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
360 gdbus_exit_on_close_LDADD = $(progs_ldadd)
361
362 gdbus_example_watch_name_SOURCES = gdbus-example-watch-name.c
363 gdbus_example_watch_name_LDADD   = $(progs_ldadd)
364
365 gdbus_example_watch_proxy_SOURCES = gdbus-example-watch-proxy.c
366 gdbus_example_watch_proxy_LDADD   = $(progs_ldadd)
367
368 gdbus_example_own_name_SOURCES = gdbus-example-own-name.c
369 gdbus_example_own_name_LDADD   = $(progs_ldadd)
370
371 gdbus_example_server_SOURCES = gdbus-example-server.c
372 gdbus_example_server_LDADD   = $(progs_ldadd)
373
374 gdbus_example_unix_fd_client_SOURCES = gdbus-example-unix-fd-client.c
375 gdbus_example_unix_fd_client_LDADD   = $(progs_ldadd)
376
377 gdbus_example_subtree_SOURCES = gdbus-example-subtree.c
378 gdbus_example_subtree_LDADD   = $(progs_ldadd)
379
380 gdbus_example_peer_SOURCES = gdbus-example-peer.c
381 gdbus_example_peer_LDADD   = $(progs_ldadd)
382
383 gdbus_example_proxy_subclass_SOURCES = gdbus-example-proxy-subclass.c
384 gdbus_example_proxy_subclass_LDADD   = $(progs_ldadd)
385
386 gdbus_example_export_SOURCES = gdbus-example-export.c
387 gdbus_example_export_LDADD   = $(progs_ldadd)
388
389 gdbus_connection_flush_helper_SOURCES = gdbus-connection-flush-helper.c
390 gdbus_connection_flush_helper_LDADD = $(progs_ldadd)
391
392 appinfo_SOURCES = appinfo.c
393 appinfo_LDADD   = $(progs_ldadd)
394
395 appinfo_test_SOURCES = appinfo-test.c
396 appinfo_test_LDADD   = $(progs_ldadd)
397
398 contenttype_SOURCES = contenttype.c
399 contenttype_LDADD   = $(progs_ldadd)
400
401 mimeapps_SOURCES = mimeapps.c
402 mimeapps_LDADD   = $(progs_ldadd)
403
404 file_SOURCES = file.c
405 file_LDADD   = $(progs_ldadd)
406
407 fileattributematcher_SOURCES = fileattributematcher.c
408 fileattributematcher_LDADD   = $(progs_ldadd)
409
410 gapplication_SOURCES = gapplication.c gdbus-sessionbus.c
411 gapplication_LDADD = $(progs_ldadd)
412
413 basic_application_LDADD = $(progs_ldadd)
414
415 gapplication_example_open_SOURCES = gapplication-example-open.c
416 gapplication_example_open_LDADD   = $(progs_ldadd)
417
418 gapplication_example_cmdline_SOURCES = gapplication-example-cmdline.c
419 gapplication_example_cmdline_LDADD   = $(progs_ldadd)
420
421 gapplication_example_cmdline2_SOURCES = gapplication-example-cmdline2.c
422 gapplication_example_cmdline2_LDADD   = $(progs_ldadd)
423
424 gapplication_example_cmdline3_SOURCES = gapplication-example-cmdline3.c
425 gapplication_example_cmdline3_LDADD   = $(progs_ldadd)
426
427 gapplication_example_actions_SOURCES = gapplication-example-actions.c
428 gapplication_example_actions_LDADD   = $(progs_ldadd)
429
430 gmenumodel_LDADD = $(progs_ldadd)
431
432 schema_tests = \
433         schema-tests/array-default-not-in-choices.gschema.xml           \
434         schema-tests/bad-choice.gschema.xml                             \
435         schema-tests/bad-key.gschema.xml                                \
436         schema-tests/bad-key2.gschema.xml                               \
437         schema-tests/bad-key3.gschema.xml                               \
438         schema-tests/bad-key4.gschema.xml                               \
439         schema-tests/bad-type.gschema.xml                               \
440         schema-tests/bare-alias.gschema.xml                             \
441         schema-tests/choice-alias.gschema.xml                           \
442         schema-tests/choice-bad.gschema.xml                             \
443         schema-tests/choice-badtype.gschema.xml                         \
444         schema-tests/choice-invalid-alias.gschema.xml                   \
445         schema-tests/choice-missing-value.gschema.xml                   \
446         schema-tests/choice-shadowed-alias.gschema.xml                  \
447         schema-tests/choice-upside-down.gschema.xml                     \
448         schema-tests/choice.gschema.xml                                 \
449         schema-tests/choices-wrong-type.gschema.xml                     \
450         schema-tests/default-in-aliases.gschema.xml                     \
451         schema-tests/default-not-in-choices.gschema.xml                 \
452         schema-tests/default-out-of-range.gschema.xml                   \
453         schema-tests/empty-key.gschema.xml                              \
454         schema-tests/enum-with-aliases.gschema.xml                      \
455         schema-tests/enum-with-bad-default.gschema.xml                  \
456         schema-tests/enum-with-chained-alias.gschema.xml                \
457         schema-tests/enum-with-choice.gschema.xml                       \
458         schema-tests/enum-with-invalid-alias.gschema.xml                \
459         schema-tests/enum-with-repeated-alias.gschema.xml               \
460         schema-tests/enum-with-repeated-nick.gschema.xml                \
461         schema-tests/enum-with-repeated-value.gschema.xml               \
462         schema-tests/enum-with-shadow-alias.gschema.xml                 \
463         schema-tests/enum.gschema.xml                                   \
464         schema-tests/flags-aliased-default.gschema.xml                  \
465         schema-tests/flags-bad-default.gschema.xml                      \
466         schema-tests/flags-more-than-one-bit.gschema.xml                \
467         schema-tests/flags-with-enum-attr.gschema.xml                   \
468         schema-tests/flags-with-enum-tag.gschema.xml                    \
469         schema-tests/extend-and-shadow-indirect.gschema.xml             \
470         schema-tests/extend-and-shadow.gschema.xml                      \
471         schema-tests/extend-missing.gschema.xml                         \
472         schema-tests/extend-nonlist.gschema.xml                         \
473         schema-tests/extend-self.gschema.xml                            \
474         schema-tests/extend-wrong-list-indirect.gschema.xml             \
475         schema-tests/extend-wrong-list.gschema.xml                      \
476         schema-tests/extending.gschema.xml                              \
477         schema-tests/from-docs.gschema.xml                              \
478         schema-tests/incomplete-list.gschema.xml                        \
479         schema-tests/inherit-gettext-domain.gschema.xml                 \
480         schema-tests/invalid-path.gschema.xml                           \
481         schema-tests/key-in-list-indirect.gschema.xml                   \
482         schema-tests/key-in-list.gschema.xml                            \
483         schema-tests/list-of-missing.gschema.xml                        \
484         schema-tests/missing-quotes.gschema.xml                         \
485         schema-tests/no-default.gschema.xml                             \
486         schema-tests/overflow.gschema.xml                               \
487         schema-tests/override-missing.gschema.xml                       \
488         schema-tests/override-range-error.gschema.xml                   \
489         schema-tests/override-then-key.gschema.xml                      \
490         schema-tests/override-twice.gschema.xml                         \
491         schema-tests/override-type-error.gschema.xml                    \
492         schema-tests/override.gschema.xml                               \
493         schema-tests/range-badtype.gschema.xml                          \
494         schema-tests/range-default-high.gschema.xml                     \
495         schema-tests/range-default-low.gschema.xml                      \
496         schema-tests/range-high-default.gschema.xml                     \
497         schema-tests/range-low-default.gschema.xml                      \
498         schema-tests/range-missing-max.gschema.xml                      \
499         schema-tests/range-missing-min.gschema.xml                      \
500         schema-tests/range-parse-error.gschema.xml                      \
501         schema-tests/range-wrong-type.gschema.xml                       \
502         schema-tests/range.gschema.xml                                  \
503         schema-tests/wrong-category.gschema.xml
504
505 proxy_SOURCES = proxy.c
506 proxy_LDADD   = $(progs_ldadd) \
507         $(top_builddir)/gthread/libgthread-2.0.la
508
509 tls_certificate_SOURCES = tls-certificate.c gtesttlsbackend.c gtesttlsbackend.h
510 tls_certificate_LDADD   = $(progs_ldadd)
511
512 tls_interaction_LDADD = $(progs_ldadd)
513
514 cancellable_LDADD = $(progs_ldadd)
515
516 vfs_LDADD = $(progs_ldadd)
517
518 network_monitor_LDADD = $(progs_ldadd)
519
520 # -----------------------------------------------------------------------------
521
522 if OS_UNIX
523 gdbus_example_objectmanager_server_SOURCES  = gdbus-example-objectmanager-server.c
524 gdbus_example_objectmanager_server_CFLAGS   = -I$(top_builddir)/gio/tests/gdbus-object-manager-example
525 gdbus_example_objectmanager_server_LDADD    = $(top_builddir)/gio/tests/gdbus-object-manager-example/libgdbus-example-objectmanager.la $(progs_ldadd)
526
527 gdbus_example_objectmanager_client_SOURCES  = gdbus-example-objectmanager-client.c
528 gdbus_example_objectmanager_client_CFLAGS   = -I$(top_builddir)/gio/tests/gdbus-object-manager-example
529 gdbus_example_objectmanager_client_LDADD    = $(top_builddir)/gio/tests/gdbus-object-manager-example/libgdbus-example-objectmanager.la $(progs_ldadd)
530
531 gdbus_peer_SOURCES = gdbus-peer.c gdbus-tests.h gdbus-tests.c
532 gdbus_peer_CFLAGS  = -I$(top_builddir)/gio/tests/gdbus-object-manager-example
533 gdbus_peer_LDADD   = $(top_builddir)/gio/tests/gdbus-object-manager-example/libgdbus-example-objectmanager.la $(progs_ldadd)
534
535 endif OS_UNIX
536
537 # -----------------------------------------------------------------------------
538
539 EXTRA_DIST += \
540         socket-common.c                 \
541         org.gtk.test.gschema            \
542         org.gtk.test.gschema.xml        \
543         testenum.h                      \
544         enums.xml.template              \
545         de.po                           \
546         $(schema_tests)                 \
547         org.gtk.schemasourcecheck.gschema.xml \
548         appinfo-test.desktop            \
549         appinfo-test2.desktop           \
550         appinfo-test-gnome.desktop      \
551         appinfo-test-notgnome.desktop   \
552         gdbus-testserver.py             \
553         test-codegen.xml                \
554         cert1.pem                       \
555         cert2.pem                       \
556         cert3.pem                       \
557         key.pem                         \
558         key8.pem                        \
559         key-cert.pem                    \
560         cert-key.pem                    \
561         cert-list.pem                   \
562         nothing.pem                     \
563         $(NULL)
564
565 MISC_STUFF = test.mo
566
567 test.mo: de.po
568         $(MSGFMT) -o test.mo $(srcdir)/de.po; \
569         $(MKDIR_P) de/LC_MESSAGES; \
570         cp -f test.mo de/LC_MESSAGES
571
572 CLEANFILES = gdbus-test-codegen-generated.[ch] gdbus-test-codegen-generated-doc-*.xml
573
574 DISTCLEANFILES = \
575         applications/mimeinfo.cache     \
576         org.gtk.test.enums.xml          \
577         de/LC_MESSAGES/test.mo          \
578         test.mo                         \
579         gsettings.store                 \
580         gschemas.compiled               \
581         schema-source/gschemas.compiled
582
583 distclean-local:
584         rm -r xdgdatahome xdgdatadir