gio: Convert data-to-c.c to perl
[platform/upstream/glib.git] / gio / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 NULL =
4
5 SUBDIRS = gdbus-2.0/codegen
6
7 if OS_UNIX
8 SUBDIRS += xdgmime
9 endif
10
11 if OS_WIN32_AND_DLL_COMPILATION
12 if MS_LIB_AVAILABLE
13 noinst_DATA = gio-2.0.lib
14
15 install_ms_lib_cmd = $(INSTALL) gio-2.0.lib $(DESTDIR)$(libdir)
16 uninstall_ms_lib_cmd = -rm $(DESTDIR)$(libdir)/gio-2.0.lib
17 endif
18 endif
19
20 install-ms-lib:
21         $(install_ms_lib_cmd)
22
23 uninstall-ms-lib:
24         $(uninstall_ms_lib_cmd)
25
26 gio.def: gio.symbols
27         $(AM_V_GEN) (echo EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <$(srcdir)/gio.symbols | sed -e '/^$$/d' -e 's/^/        /' -e 's/G_GNUC_[^ ]*//g' | sort) > gio.def.tmp && \
28           mv gio.def.tmp gio.def
29
30 if OS_LINUX
31 if HAVE_GNUC_VISIBILITY
32 TESTS = abicheck.sh
33 endif
34 endif
35
36 AM_CPPFLAGS = \
37         -DG_LOG_DOMAIN=\"GLib-GIO\"                     \
38         $(gmodule_INCLUDES)                             \
39         $(GLIB_DEBUG_FLAGS)                             \
40         -DGIO_COMPILATION                               \
41         -DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\"  
42
43 lib_LTLIBRARIES = libgio-2.0.la
44
45 gdbus_headers =                         \
46         gdbusauthobserver.h             \
47         gcredentials.h                  \
48         gdbusutils.h                    \
49         gdbuserror.h                    \
50         gdbusaddress.h                  \
51         gdbusconnection.h               \
52         gdbusmessage.h                  \
53         gdbusnameowning.h               \
54         gdbusnamewatching.h             \
55         gdbusproxy.h                    \
56         gdbusintrospection.h            \
57         gdbusmethodinvocation.h         \
58         gdbusserver.h                   \
59         gdbusinterface.h                \
60         gdbusinterfaceskeleton.h        \
61         gdbusobject.h                   \
62         gdbusobjectskeleton.h           \
63         gdbusobjectproxy.h              \
64         gdbusobjectmanager.h            \
65         gdbusobjectmanagerclient.h      \
66         gdbusobjectmanagerserver.h      \
67         $(NULL)
68
69 gdbus_sources =                                                         \
70         gdbusutils.h                    gdbusutils.c                    \
71         gdbusaddress.h                  gdbusaddress.c                  \
72         gdbusauthobserver.h             gdbusauthobserver.c             \
73         gdbusauth.h                     gdbusauth.c                     \
74         gdbusauthmechanism.h            gdbusauthmechanism.c            \
75         gdbusauthmechanismanon.h        gdbusauthmechanismanon.c        \
76         gdbusauthmechanismexternal.h    gdbusauthmechanismexternal.c    \
77         gdbusauthmechanismsha1.h        gdbusauthmechanismsha1.c        \
78         gdbuserror.h                    gdbuserror.c                    \
79         gdbusconnection.h               gdbusconnection.c               \
80         gdbusmessage.h                  gdbusmessage.c                  \
81         gdbusnameowning.h               gdbusnameowning.c               \
82         gdbusnamewatching.h             gdbusnamewatching.c             \
83         gdbusproxy.h                    gdbusproxy.c                    \
84         gdbusprivate.h                  gdbusprivate.c                  \
85         gdbusintrospection.h            gdbusintrospection.c            \
86         gdbusmethodinvocation.h         gdbusmethodinvocation.c         \
87         gdbusserver.h                   gdbusserver.c                   \
88         gdbusinterface.h                gdbusinterface.c                \
89         gdbusinterfaceskeleton.h        gdbusinterfaceskeleton.c        \
90         gdbusobject.h                   gdbusobject.c                   \
91         gdbusobjectskeleton.h           gdbusobjectskeleton.c           \
92         gdbusobjectproxy.h              gdbusobjectproxy.c              \
93         gdbusobjectmanager.h            gdbusobjectmanager.c            \
94         gdbusobjectmanagerclient.h      gdbusobjectmanagerclient.c      \
95         gdbusobjectmanagerserver.h      gdbusobjectmanagerserver.c      \
96         $(NULL)
97
98 settings_headers = \
99         gsettingsbackend.h              \
100         gsettingsschema.h               \
101         gsettings.h
102
103 settings_sources = \
104         gvdb/gvdb-format.h              \
105         gvdb/gvdb-reader.h              \
106         gvdb/gvdb-reader.c              \
107         gdelayedsettingsbackend.h       \
108         gdelayedsettingsbackend.c       \
109         gkeyfilesettingsbackend.c       \
110         gmemorysettingsbackend.c        \
111         gnullsettingsbackend.c          \
112         gsettingsbackendinternal.h      \
113         gsettingsbackend.c              \
114         gsettingsschema.h               \
115         gsettingsschema-internal.h      \
116         gsettingsschema.c               \
117         gsettings-mapping.h             \
118         gsettings-mapping.c             \
119         gsettings.c
120
121 if OS_WIN32
122 settings_sources += \
123         gregistrysettingsbackend.h      \
124         gregistrysettingsbackend.c
125 endif
126
127 if OS_CARBON
128 AM_CPPFLAGS += -DG_OS_CARBON
129
130 settings_sources += \
131         gnextstepsettingsbackend.c
132 endif
133
134 application_headers = \
135         gapplication.h                  \
136         gapplicationcommandline.h       \
137                                         \
138         gactiongroup.h                  \
139         gactionmap.h                    \
140         gsimpleactiongroup.h            \
141         gremoteactiongroup.h            \
142         gactiongroupexporter.h          \
143         gdbusactiongroup.h              \
144         gaction.h                       \
145         gsimpleaction.h                 \
146                                         \
147         gmenumodel.h                    \
148         gmenu.h                         \
149         gmenuexporter.h                 \
150         gdbusmenumodel.h                \
151         $(NULL)
152
153 application_sources = \
154         gapplication.c                          \
155         gapplicationcommandline.c               \
156         gapplicationimpl-dbus.c                 \
157         gapplicationimpl.h                      \
158                                                 \
159         gactiongroup.c                          \
160         gactionmap.c                            \
161         gsimpleactiongroup.c                    \
162         gremoteactiongroup.c                    \
163         gactiongroupexporter.c                  \
164         gdbusactiongroup.c                      \
165         gaction.c                               \
166         gsimpleaction.c                         \
167                                                 \
168         gmenumodel.c                            \
169         gmenu.c                                 \
170         gmenuexporter.c                         \
171         gdbusmenumodel.c                        \
172         $(NULL)
173
174 local_sources = \
175         glocaldirectorymonitor.c        \
176         glocaldirectorymonitor.h        \
177         glocalfile.c                    \
178         glocalfile.h                    \
179         glocalfileenumerator.c          \
180         glocalfileenumerator.h          \
181         glocalfileinfo.c                \
182         glocalfileinfo.h                \
183         glocalfileinputstream.c         \
184         glocalfileinputstream.h         \
185         glocalfilemonitor.c             \
186         glocalfilemonitor.h             \
187         glocalfileoutputstream.c        \
188         glocalfileoutputstream.h        \
189         glocalfileiostream.c            \
190         glocalfileiostream.h            \
191         glocalvfs.c                     \
192         glocalvfs.h                     \
193         gsocks4proxy.c                  \
194         gsocks4proxy.h                  \
195         gsocks4aproxy.c                 \
196         gsocks4aproxy.h                 \
197         gsocks5proxy.c                  \
198         gsocks5proxy.h                  \
199         $(NULL)
200
201 platform_libadd =
202 platform_deps =
203 appinfo_sources =
204
205 if HAVE_INOTIFY
206 SUBDIRS += inotify
207 platform_libadd += inotify/libinotify.la
208 platform_deps += inotify/libinotify.la
209 endif
210
211 if HAVE_FEN
212 AM_CPPFLAGS += -DHAVE_FEN
213 SUBDIRS += fen
214 platform_libadd += fen/libfen.la
215 platform_deps += fen/libfen.la
216 endif
217
218 if OS_WIN32
219 SUBDIRS += win32
220 platform_libadd += win32/libgiowin32.la
221 platform_deps += win32/libgiowin32.la
222 endif
223
224 SUBDIRS += .
225
226 if HAVE_FAM
227 SUBDIRS += fam
228 endif
229
230 if OS_UNIX
231 appinfo_sources += gdesktopappinfo.c
232 platform_libadd += xdgmime/libxdgmime.la $(RESOLVER_LIBADD)
233 platform_deps += xdgmime/libxdgmime.la
234 unix_sources = \
235         gfiledescriptorbased.c  \
236         gunixconnection.c       \
237         gunixcredentialsmessage.c       \
238         gunixfdlist.c           \
239         gunixfdmessage.c        \
240         gunixmount.c            \
241         gunixmount.h            \
242         gunixmounts.c           \
243         gunixsocketaddress.c    \
244         gunixvolume.c           \
245         gunixvolume.h           \
246         gunixvolumemonitor.c    \
247         gunixvolumemonitor.h    \
248         gunixinputstream.c      \
249         gunixoutputstream.c     \
250         $(NULL)
251
252
253 giounixincludedir=$(includedir)/gio-unix-2.0/gio
254 giounixinclude_HEADERS = \
255         gdesktopappinfo.h       \
256         gfiledescriptorbased.h  \
257         gunixconnection.h       \
258         gunixcredentialsmessage.h       \
259         gunixmounts.h           \
260         gunixfdlist.h           \
261         gunixfdmessage.h        \
262         gunixinputstream.h      \
263         gunixoutputstream.h     \
264         gunixsocketaddress.h    \
265         $(NULL)
266
267 if HAVE_NETLINK
268 unix_sources +=                  \
269         gnetworkmonitornetlink.c \
270         gnetworkmonitornetlink.h \
271         $(NULL)
272 endif
273 endif
274
275 win32_actual_sources = \
276         gwin32mount.c \
277         gwin32mount.h \
278         gwin32volumemonitor.c \
279         gwin32volumemonitor.h \
280         gwin32inputstream.c \
281         gwin32outputstream.c \
282         gwin32outputstream.h \
283         $(NULL)
284
285 win32_more_sources_for_vcproj = \
286         gwin32appinfo.c \
287         gregistrysettingsbackend.c \
288         win32/gwin32directorymonitor.c \
289         win32/gwinhttpfile.c \
290         win32/gwinhttpfileinputstream.c \
291         win32/gwinhttpfileoutputstream.c \
292         win32/gwinhttpvfs.c
293
294 if OS_WIN32
295 appinfo_sources += gwin32appinfo.c gwin32appinfo.h
296 platform_libadd += -lshlwapi -lws2_32 -ldnsapi
297 win32_sources = $(win32_actual_sources)
298
299 giowin32includedir=$(includedir)/gio-win32-2.0/gio
300 giowin32include_HEADERS = \
301         gwin32inputstream.h \
302         gwin32outputstream.h \
303         $(NULL)
304
305 endif
306
307 SUBDIRS += tests
308
309 libgio_2_0_la_SOURCES =         \
310         gappinfo.c              \
311         gasynchelper.c          \
312         gasynchelper.h          \
313         gasyncinitable.c        \
314         gasyncresult.c          \
315         gbufferedinputstream.c  \
316         gbufferedoutputstream.c \
317         gcancellable.c          \
318         gcontenttype.c          \
319         gcontenttypeprivate.h   \
320         gcharsetconverter.c     \
321         gconverter.c            \
322         gconverterinputstream.c \
323         gconverteroutputstream.c        \
324         gcredentials.c          \
325         gdatainputstream.c      \
326         gdataoutputstream.c     \
327         gdrive.c                \
328         gdummyfile.h            \
329         gdummyfile.c            \
330         gdummyproxyresolver.c   \
331         gdummyproxyresolver.h   \
332         gdummytlsbackend.c      \
333         gdummytlsbackend.h      \
334         gemblem.h               \
335         gemblem.c               \
336         gemblemedicon.h         \
337         gemblemedicon.c         \
338         gfile.c                 \
339         gfileattribute.c        \
340         gfileattribute-priv.h   \
341         gfileenumerator.c       \
342         gfileicon.c             \
343         gfileinfo.c             \
344         gfileinfo-priv.h        \
345         gfileinputstream.c      \
346         gfilemonitor.c          \
347         gfilenamecompleter.c    \
348         gfileoutputstream.c     \
349         gfileiostream.c         \
350         gfilterinputstream.c    \
351         gfilteroutputstream.c   \
352         gicon.c                 \
353         ginetaddress.c          \
354         ginetaddressmask.c      \
355         ginetsocketaddress.c    \
356         ginitable.c             \
357         ginputstream.c          \
358         gioenums.h              \
359         gioerror.c              \
360         giomodule.c             \
361         giomodule-priv.h        \
362         gioscheduler.c          \
363         giostream.c             \
364         gloadableicon.c         \
365         gmount.c                \
366         gmemoryinputstream.c    \
367         gmemoryoutputstream.c   \
368         gmountoperation.c       \
369         gnativevolumemonitor.c  \
370         gnativevolumemonitor.h  \
371         gnetworkaddress.c       \
372         gnetworkingprivate.h    \
373         gnetworkmonitor.c       \
374         gnetworkmonitorbase.c   \
375         gnetworkmonitorbase.h   \
376         gnetworkservice.c       \
377         goutputstream.c         \
378         gpermission.c           \
379         gpollableinputstream.c  \
380         gpollableoutputstream.c \
381         gpollfilemonitor.c      \
382         gpollfilemonitor.h      \
383         gproxyresolver.c        \
384         gresolver.c             \
385         gresource.c             \
386         gresourcefile.c         \
387         gresourcefile.h         \
388         gseekable.c             \
389         gsimpleasyncresult.c    \
390         gsimplepermission.c     \
391         gsocket.c               \
392         gsocketaddress.c        \
393         gsocketaddressenumerator.c \
394         gsocketclient.c         \
395         gsocketconnectable.c    \
396         gsocketconnection.c     \
397         gsocketcontrolmessage.c \
398         gsocketinputstream.c    \
399         gsocketinputstream.h    \
400         gsocketlistener.c       \
401         gsocketoutputstream.c   \
402         gsocketoutputstream.h   \
403         gproxy.c                \
404         gproxyaddress.c         \
405         gproxyaddressenumerator.c \
406         gsocketservice.c        \
407         gsrvtarget.c            \
408         gtcpconnection.c        \
409         gtcpwrapperconnection.c \
410         gthreadedsocketservice.c\
411         gthemedicon.c           \
412         gthreadedresolver.c     \
413         gthreadedresolver.h     \
414         gtlsbackend.c           \
415         gtlscertificate.c       \
416         gtlsclientconnection.c  \
417         gtlsconnection.c        \
418         gtlsdatabase.c          \
419         gtlsfiledatabase.c      \
420         gtlsinteraction.c       \
421         gtlspassword.c          \
422         gtlsserverconnection.c  \
423         gunionvolumemonitor.c   \
424         gunionvolumemonitor.h   \
425         gvfs.c                  \
426         gvolume.c               \
427         gvolumemonitor.c        \
428         gzlibcompressor.c       \
429         gzlibdecompressor.c     \
430         gmountprivate.h         \
431         gioenumtypes.h          \
432         gioenumtypes.c          \
433         $(appinfo_sources)      \
434         $(unix_sources)         \
435         $(win32_sources)        \
436         $(application_sources)  \
437         $(settings_sources)     \
438         $(gdbus_sources)        \
439         $(local_sources)        \
440         $(NULL)
441
442 EXTRA_DIST += strinfo.c
443
444 libgio_2_0_la_LIBADD = \
445         $(top_builddir)/glib/libglib-2.0.la             \
446         $(top_builddir)/gobject/libgobject-2.0.la       \
447         $(top_builddir)/gmodule/libgmodule-2.0.la       \
448         $(platform_libadd)                              \
449         $(ZLIB_LIBS)                                    \
450         $(SELINUX_LIBS)                                 \
451         $(GLIB_LIBS)                                    \
452         $(XATTR_LIBS)                                   \
453         $(NETWORK_LIBS)                                 \
454         $(NULL)
455
456 libgio_2_0_la_CPPFLAGS = $(ZLIB_CFLAGS) $(AM_CPPFLAGS)
457
458 if OS_CARBON
459 libgio_2_0_la_CFLAGS = -xobjective-c
460 endif
461
462 if PLATFORM_WIN32
463 no_undefined = -no-undefined
464 endif
465
466 if OS_WIN32_AND_DLL_COMPILATION
467 export_symbols = -export-symbols gio.def
468 gio_def = gio.def
469
470 gio_win32_res = gio-win32-res.o
471 gio_win32_res_ldflag = -Wl,$(gio_win32_res)
472
473 install-def-file:
474         $(INSTALL) gio.def $(DESTDIR)$(libdir)/gio-2.0.def
475
476 uninstall-def-file:
477         -rm $(DESTDIR)$(libdir)/gio-2.0.def
478 else
479 install-def-file:
480 uninstall-def-file:
481
482 export_symbols = $(LIBTOOL_EXPORT_OPTIONS)
483 endif
484
485 install-data-local: install-ms-lib install-def-file
486         $(mkinstalldirs) $(DESTDIR)$(GIO_MODULE_DIR)
487
488 uninstall-local: uninstall-ms-lib uninstall-def-file
489
490 libgio_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
491         $(gio_win32_res_ldflag) \
492         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
493         -export-dynamic $(no_undefined) $(export_symbols)
494
495 libgio_2_0_la_DEPENDENCIES = $(gio_win32_res) $(gio_def) $(platform_deps)
496
497 gio-win32-res.o: gio.rc
498         $(WINDRES) gio.rc $@
499
500 gio_headers =                   \
501         gappinfo.h              \
502         gasyncinitable.h        \
503         gasyncresult.h          \
504         gbufferedinputstream.h  \
505         gbufferedoutputstream.h \
506         gcancellable.h          \
507         gcontenttype.h          \
508         gcharsetconverter.h     \
509         gconverter.h            \
510         gconverterinputstream.h \
511         gconverteroutputstream.h        \
512         gdatainputstream.h      \
513         gdataoutputstream.h     \
514         gdrive.h                \
515         gemblem.h               \
516         gemblemedicon.h         \
517         gfile.h                 \
518         gfileattribute.h        \
519         gfileenumerator.h       \
520         gfileicon.h             \
521         gfileinfo.h             \
522         gfileinputstream.h      \
523         gfilemonitor.h          \
524         gfilenamecompleter.h    \
525         gfileoutputstream.h     \
526         gfileiostream.h         \
527         gfilterinputstream.h    \
528         gfilteroutputstream.h   \
529         gicon.h                 \
530         ginetaddress.h          \
531         ginetaddressmask.h      \
532         ginetsocketaddress.h    \
533         ginputstream.h          \
534         ginitable.h             \
535         gio.h                   \
536         giotypes.h              \
537         gioenums.h              \
538         gioerror.h              \
539         giomodule.h             \
540         gioscheduler.h          \
541         giostream.h             \
542         gloadableicon.h         \
543         gmount.h                \
544         gmemoryinputstream.h    \
545         gmemoryoutputstream.h   \
546         gmountoperation.h       \
547         gnativevolumemonitor.h  \
548         gnetworkaddress.h       \
549         gnetworkmonitor.h       \
550         gnetworkservice.h       \
551         goutputstream.h         \
552         gpermission.h           \
553         gpollableinputstream.h  \
554         gpollableoutputstream.h \
555         gproxyaddress.h         \
556         gproxy.h                \
557         gproxyaddressenumerator.h \
558         gproxyresolver.h        \
559         gresolver.h             \
560         gresource.h             \
561         gseekable.h             \
562         gsimpleasyncresult.h    \
563         gsimplepermission.h     \
564         gsocket.h               \
565         gsocketaddress.h        \
566         gsocketaddressenumerator.h \
567         gsocketclient.h         \
568         gsocketconnectable.h    \
569         gsocketconnection.h     \
570         gsocketcontrolmessage.h \
571         gsocketlistener.h       \
572         gsocketservice.h        \
573         gsrvtarget.h            \
574         gtcpconnection.h        \
575         gtcpwrapperconnection.h \
576         gthreadedsocketservice.h\
577         gthemedicon.h           \
578         gtlsbackend.h           \
579         gtlscertificate.h       \
580         gtlsclientconnection.h  \
581         gtlsconnection.h        \
582         gtlsdatabase.h          \
583         gtlsfiledatabase.h      \
584         gtlsinteraction.h       \
585         gtlspassword.h          \
586         gtlsserverconnection.h  \
587         gvfs.h                  \
588         gvolume.h               \
589         gvolumemonitor.h        \
590         gzlibcompressor.h       \
591         gzlibdecompressor.h     \
592         $(application_headers)  \
593         $(settings_headers)     \
594         $(gdbus_headers)        \
595         $(NULL)
596
597 gioincludedir=$(includedir)/glib-2.0/gio/
598 gioinclude_HEADERS =            \
599         $(gio_headers)          \
600         gioenumtypes.h
601
602 # these sources (also mentioned above) are generated.
603 BUILT_SOURCES =                 \
604         gconstructor_as_data.h  \
605         gioenumtypes.h          \
606         gioenumtypes.c          \
607         $(NULL)
608
609 EXTRA_DIST +=                   \
610         data-to-c.pl            \
611         gio.symbols             \
612         gioenumtypes.h.template \
613         gioenumtypes.c.template \
614         makefile.msc            \
615         abicheck.sh             \
616         gio.rc.in               \
617         gschema.dtd             \
618         $(NULL)
619
620 BUILT_EXTRA_DIST =              \
621         gio.rc
622
623 # This is read by gobject-introspection/misc/ and gtk-doc
624 gio-public-headers.txt: Makefile
625         echo $(gioinclude_HEADERS) $(giowin32include_HEADERS) $(giounixinclude_HEADERS) > $@.tmp && mv $@.tmp $@
626
627 CLEANFILES = gio-public-headers.txt gconstructor_as_data.h
628
629 all-local: gio-public-headers.txt
630
631 gioenumtypes.h: $(gio_headers) gioenumtypes.h.template
632         $(AM_V_GEN) ( top_builddir=`cd $(top_builddir) && pwd`; \
633           cd $(srcdir) && $$top_builddir/gobject/glib-mkenums --template gioenumtypes.h.template $(gio_headers) ) > \
634             gioenumtypes.h.tmp && mv gioenumtypes.h.tmp gioenumtypes.h
635
636 gioenumtypes.c: $(gio_headers) gioenumtypes.c.template
637         $(AM_V_GEN) ( top_builddir=`cd $(top_builddir) && pwd`; \
638           cd $(srcdir) && $$top_builddir/gobject/glib-mkenums --template gioenumtypes.c.template $(gio_headers) ) > \
639             gioenumtypes.c.tmp && mv gioenumtypes.c.tmp gioenumtypes.c
640
641 gio-2.0.lib: libgio-2.0.la gio.def
642         lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgio-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gio.def -out:$@
643
644 bin_PROGRAMS = gio-querymodules glib-compile-schemas glib-compile-resources gsettings
645
646 glib_compile_resources_LDADD = \
647         $(top_builddir)/glib/libglib-2.0.la \
648         $(top_builddir)/gobject/libgobject-2.0.la       \
649         libgio-2.0.la
650
651 glib_compile_resources_SOURCES = \
652         gvdb/gvdb-format.h              \
653         gvdb/gvdb-builder.h             \
654         gvdb/gvdb-builder.c             \
655         glib-compile-resources.c
656
657 gio_querymodules_SOURCES = gio-querymodules.c
658 gio_querymodules_LDADD   = \
659         $(top_builddir)/glib/libglib-2.0.la             \
660         $(top_builddir)/gobject/libgobject-2.0.la       \
661         $(top_builddir)/gmodule/libgmodule-2.0.la       \
662         libgio-2.0.la                                   \
663         $(NULL)
664
665 gconstructor_as_data.h: $(top_srcdir)/glib/gconstructor.h data-to-c.pl
666         $(AM_V_GEN) $(srcdir)/data-to-c.pl $(top_srcdir)/glib/gconstructor.h gconstructor_code > $@.tmp && mv $@.tmp $@
667
668 glib_compile_schemas_LDADD = $(top_builddir)/glib/libglib-2.0.la
669 glib_compile_schemas_SOURCES = \
670         gconstructor_as_data.h \
671         gvdb/gvdb-format.h              \
672         gvdb/gvdb-builder.h             \
673         gvdb/gvdb-builder.c             \
674         glib-compile-schemas.c
675
676 gsettings_LDADD = \
677         $(top_builddir)/glib/libglib-2.0.la             \
678         $(top_builddir)/gobject/libgobject-2.0.la       \
679         libgio-2.0.la
680 gsettings_SOURCES = gsettings-tool.c
681
682 schemadir = $(datadir)/glib-2.0/schemas
683 dist_schema_DATA = gschema.dtd
684
685 # ------------------------------------------------------------------------
686 # gdbus(1) tool
687
688 bin_PROGRAMS += gdbus
689 gdbus_SOURCES = gdbus-tool.c
690 gdbus_LDADD = libgio-2.0.la \
691         $(top_builddir)/glib/libglib-2.0.la             \
692         $(top_builddir)/gobject/libgobject-2.0.la
693
694 completiondir = $(sysconfdir)/bash_completion.d
695 completion_DATA = \
696         gdbus-bash-completion.sh                \
697         gsettings-bash-completion.sh            \
698         gresource-bash-completion.sh
699 EXTRA_DIST += $(completion_DATA)
700
701 # ------------------------------------------------------------------------
702 # gresource tool
703
704 bin_PROGRAMS += gresource
705 gresource_SOURCES = gresource-tool.c
706 gresource_LDADD = libgio-2.0.la \
707         $(top_builddir)/glib/libglib-2.0.la             \
708         $(top_builddir)/gobject/libgobject-2.0.la \
709         $(ELF_LIBS)
710
711 # ------------------------------------------------------------------------
712
713 dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/gio.vcproj ../build/win32/vs10/gio.vcxproj ../build/win32/vs10/gio.vcxproj.filters
714         files='$(BUILT_EXTRA_DIST)'; \
715         for f in $$files; do \
716           if test -f $$f; then d=.; else d=$(srcdir); fi; \
717           cp $$d/$$f $(distdir) || exit 1; done
718
719 ../build/win32/vs9/gio.vcproj: $(top_srcdir)/build/win32/vs9/gio.vcprojin
720         for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \
721                 case $$F in \
722                 gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c) ;; \
723                 *.c) echo '   <File RelativePath="..\..\..\gio\'$$F'" />' \
724                      ;; \
725                 esac; \
726         done | sort -u >libgio.sourcefiles
727         $(CPP) -P - <$(top_srcdir)/build/win32/vs9/gio.vcprojin >$@
728         rm libgio.sourcefiles
729
730 ../build/win32/vs10/gio.vcxproj: $(top_srcdir)/build/win32/vs10/gio.vcxprojin
731         for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \
732                 case $$F in \
733                 gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c) ;; \
734                 *.c) echo '    <ClCompile Include="..\..\..\gio\'$$F'" />' \
735                      ;; \
736                 esac; \
737         done | sort -u >libgio.vs10.sourcefiles
738         $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gio.vcxprojin >$@
739         rm libgio.vs10.sourcefiles
740
741 ../build/win32/vs10/gio.vcxproj.filters: $(top_srcdir)/build/win32/vs10/gio.vcxproj.filtersin
742         for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \
743                 case $$F in \
744                 gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c) ;; \
745                 *.c) echo '    <ClCompile Include="..\..\..\gio\'$$F'"><Filter>Source Files</Filter></ClCompile>' \
746                      ;; \
747                 esac; \
748         done | sort -u >libgio.vs10.sourcefiles.filters
749         $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gio.vcxproj.filtersin >$@
750         rm libgio.vs10.sourcefiles.filters
751
752 if HAVE_GLIB_RUNTIME_LIBDIR
753 install-data-hook:
754         mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
755         mv $(DESTDIR)$(libdir)/libgio-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
756         mv $(DESTDIR)$(libdir)/libgio-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
757         rm -f $(DESTDIR)$(libdir)/libgio-2.0.so
758         ln -s $(GLIB_RUNTIME_LIBDIR)/libgio-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgio-2.0.so
759 endif