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