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