GApplication: merge DBus interface into C source
[platform/upstream/glib.git] / gio / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 NULL =
4
5 SUBDIRS=
6
7 if OS_UNIX
8 SUBDIRS += libasyncns 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 -e 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 if HAVE_THREADS
37 THREAD_FLAGS=-DG_THREADS_MANDATORY
38 endif
39
40 AM_CPPFLAGS = \
41         -DG_LOG_DOMAIN=\"GLib-GIO\"                     \
42         $(gmodule_INCLUDES)                             \
43         $(GLIB_DEBUG_FLAGS)                             \
44         $(THREAD_FLAGS)                                 \
45         -DG_DISABLE_DEPRECATED                          \
46         -DGIO_COMPILATION                               \
47         -DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\"  
48
49 lib_LTLIBRARIES = libgio-2.0.la
50
51 marshal_sources = \
52         gio-marshal.h   \
53         gio-marshal.c   \
54         $(NULL)
55
56 if CROSS_COMPILING
57   glib_genmarshal=$(GLIB_GENMARSHAL)
58 else
59   glib_genmarshal=../gobject/glib-genmarshal
60 endif
61
62 gio-marshal.h: gio-marshal.list
63         $(AM_V_GEN) $(glib_genmarshal) --prefix=_gio_marshal $(srcdir)/gio-marshal.list --header --internal > $@.tmp && \
64           mv $@.tmp $@
65
66 gio-marshal.c: gio-marshal.h gio-marshal.list
67         $(AM_V_GEN) (echo "#include \"gio-marshal.h\""; \
68         $(glib_genmarshal) --prefix=_gio_marshal $(srcdir)/gio-marshal.list --body --internal) > $@.tmp && \
69           mv $@.tmp $@
70
71 gdbus_headers =                         \
72         gdbusauthobserver.h             \
73         gcredentials.h                  \
74         gdbusutils.h                    \
75         gdbuserror.h                    \
76         gdbusaddress.h                  \
77         gdbusconnection.h               \
78         gdbusmessage.h                  \
79         gdbusnameowning.h               \
80         gdbusnamewatching.h             \
81         gdbusproxy.h                    \
82         gdbusintrospection.h            \
83         gdbusmethodinvocation.h         \
84         gdbusserver.h                   \
85         $(NULL)
86
87 gdbus_sources =                                                         \
88         gdbusutils.h                    gdbusutils.c                    \
89         gdbusaddress.h                  gdbusaddress.c                  \
90         gdbusauthobserver.h             gdbusauthobserver.c             \
91         gdbusauth.h                     gdbusauth.c                     \
92         gdbusauthmechanism.h            gdbusauthmechanism.c            \
93         gdbusauthmechanismanon.h        gdbusauthmechanismanon.c        \
94         gdbusauthmechanismexternal.h    gdbusauthmechanismexternal.c    \
95         gdbusauthmechanismsha1.h        gdbusauthmechanismsha1.c        \
96         gdbuserror.h                    gdbuserror.c                    \
97         gdbusconnection.h               gdbusconnection.c               \
98         gdbusmessage.h                  gdbusmessage.c                  \
99         gdbusnameowning.h               gdbusnameowning.c               \
100         gdbusnamewatching.h             gdbusnamewatching.c             \
101         gdbusproxy.h                    gdbusproxy.c                    \
102         gdbusprivate.h                  gdbusprivate.c                  \
103         gdbusintrospection.h            gdbusintrospection.c            \
104         gdbusmethodinvocation.h         gdbusmethodinvocation.c         \
105         gdbusserver.h                   gdbusserver.c                   \
106         $(NULL)
107
108 settings_headers = \
109         gsettingsbackend.h              \
110         gsettings.h
111
112 settings_sources = \
113         gvdb/gvdb-format.h              \
114         gvdb/gvdb-reader.h              \
115         gvdb/gvdb-reader.c              \
116         gdelayedsettingsbackend.h       \
117         gdelayedsettingsbackend.c       \
118         gkeyfilesettingsbackend.c       \
119         gmemorysettingsbackend.h        \
120         gmemorysettingsbackend.c        \
121         gnullsettingsbackend.h          \
122         gnullsettingsbackend.c          \
123         gsettingsbackendinternal.h      \
124         gsettingsbackend.c              \
125         gsettingsschema.h               \
126         gsettingsschema.c               \
127         gsettings-mapping.h             \
128         gsettings-mapping.c             \
129         gsettings.c
130
131 if OS_WIN32
132 settings_sources += \
133         gregistrysettingsbackend.h      \
134         gregistrysettingsbackend.c
135 endif
136
137 application_headers = \
138         gactiongroup.h                  \
139         gsimpleactiongroup.h            \
140         gaction.h                       \
141         gsimpleaction.h                 \
142         gapplicationcommandline.h       \
143         gapplication.h
144
145 application_sources = \
146         gactiongroup.c                          \
147         gsimpleactiongroup.c                    \
148         gaction.c                               \
149         gsimpleaction.c                         \
150         gapplicationcommandline.c               \
151         gapplicationimpl.h                      \
152         gapplicationimpl-dbus.c                 \
153         gapplication.c
154
155 local_sources = \
156         glocaldirectorymonitor.c        \
157         glocaldirectorymonitor.h        \
158         glocalfile.c                    \
159         glocalfile.h                    \
160         glocalfileenumerator.c          \
161         glocalfileenumerator.h          \
162         glocalfileinfo.c                \
163         glocalfileinfo.h                \
164         glocalfileinputstream.c         \
165         glocalfileinputstream.h         \
166         glocalfilemonitor.c             \
167         glocalfilemonitor.h             \
168         glocalfileoutputstream.c        \
169         glocalfileoutputstream.h        \
170         glocalfileiostream.c            \
171         glocalfileiostream.h            \
172         glocalvfs.c                     \
173         glocalvfs.h                     \
174         gsocks4proxy.c                  \
175         gsocks4proxy.h                  \
176         gsocks4aproxy.c                 \
177         gsocks4aproxy.h                 \
178         gsocks5proxy.c                  \
179         gsocks5proxy.h                  \
180         $(NULL)
181
182 platform_libadd =
183 platform_deps =
184 appinfo_sources =
185
186 if HAVE_INOTIFY
187 SUBDIRS += inotify
188 platform_libadd += inotify/libinotify.la
189 platform_deps += inotify/libinotify.la
190 endif
191
192 if HAVE_FEN
193 AM_CPPFLAGS += -DHAVE_FEN
194 SUBDIRS += fen
195 platform_libadd += fen/libfen.la
196 platform_deps += fen/libfen.la
197 endif
198
199 if OS_WIN32
200 SUBDIRS += win32
201 platform_libadd += win32/libgiowin32.la
202 platform_deps += win32/libgiowin32.la
203 endif
204
205
206 SUBDIRS += .
207
208 if HAVE_FAM
209 SUBDIRS += fam
210 endif
211
212 if OS_UNIX
213 appinfo_sources += gdesktopappinfo.c
214 platform_libadd += libasyncns/libasyncns.la xdgmime/libxdgmime.la
215 platform_deps += libasyncns/libasyncns.la xdgmime/libxdgmime.la
216 unix_sources = \
217         gfiledescriptorbased.c  \
218         gunixconnection.c       \
219         gunixcredentialsmessage.c       \
220         gunixfdlist.c           \
221         gunixfdmessage.c        \
222         gunixmount.c            \
223         gunixmount.h            \
224         gunixmounts.c           \
225         gunixresolver.c         \
226         gunixresolver.h         \
227         gunixsocketaddress.c    \
228         gunixvolume.c           \
229         gunixvolume.h           \
230         gunixvolumemonitor.c    \
231         gunixvolumemonitor.h    \
232         gunixinputstream.c      \
233         gunixoutputstream.c     \
234         $(NULL)
235
236
237 giounixincludedir=$(includedir)/gio-unix-2.0/gio
238 giounixinclude_HEADERS = \
239         gdesktopappinfo.h       \
240         gfiledescriptorbased.h  \
241         gunixconnection.h       \
242         gunixcredentialsmessage.h       \
243         gunixmounts.h           \
244         gunixfdlist.h           \
245         gunixfdmessage.h        \
246         gunixinputstream.h      \
247         gunixoutputstream.h     \
248         gunixsocketaddress.h    \
249         $(NULL)
250 endif
251
252 win32_actual_sources = \
253         gwin32mount.c \
254         gwin32mount.h \
255         gwin32resolver.c \
256         gwin32resolver.h \
257         gwin32volumemonitor.c \
258         gwin32volumemonitor.h \
259         gwin32inputstream.c \
260         gwin32outputstream.c \
261         gwin32outputstream.h \
262         $(NULL)
263
264 win32_more_sources_for_vcproj = \
265         gwin32appinfo.c \
266         win32/gwin32directorymonitor.c \
267         win32/gwinhttpfile.c \
268         win32/gwinhttpfileinputstream.c \
269         win32/gwinhttpfileoutputstream.c \
270         win32/gwinhttpvfs.c
271
272 if OS_WIN32
273 appinfo_sources += gwin32appinfo.c gwin32appinfo.h
274 platform_libadd += -lshlwapi -lws2_32 -ldnsapi
275 win32_sources = $(win32_actual_sources)
276
277 giowin32includedir=$(includedir)/gio-win32-2.0/gio
278 giowin32include_HEADERS = \
279         gwin32inputstream.h \
280         gwin32outputstream.h \
281         $(NULL)
282
283 endif
284
285 SUBDIRS += tests
286
287 libgio_2_0_la_SOURCES =         \
288         gappinfo.c              \
289         gasynchelper.c          \
290         gasynchelper.h          \
291         gasyncinitable.c        \
292         gasyncresult.c          \
293         gbufferedinputstream.c  \
294         gbufferedoutputstream.c \
295         gcancellable.c          \
296         gcontenttype.c          \
297         gcontenttypeprivate.h   \
298         gcharsetconverter.c     \
299         gconverter.c            \
300         gconverterinputstream.c \
301         gconverteroutputstream.c        \
302         gcredentials.c          \
303         gdatainputstream.c      \
304         gdataoutputstream.c     \
305         gdrive.c                \
306         gdummyfile.h            \
307         gdummyfile.c            \
308         gdummyproxyresolver.c   \
309         gdummyproxyresolver.h   \
310         gemblem.h               \
311         gemblem.c               \
312         gemblemedicon.h         \
313         gemblemedicon.c         \
314         gfile.c                 \
315         gfileattribute.c        \
316         gfileattribute-priv.h   \
317         gfileenumerator.c       \
318         gfileicon.c             \
319         gfileinfo.c             \
320         gfileinfo-priv.h        \
321         gfileinputstream.c      \
322         gfilemonitor.c          \
323         gfilenamecompleter.c    \
324         gfileoutputstream.c     \
325         gfileiostream.c         \
326         gfilterinputstream.c    \
327         gfilteroutputstream.c   \
328         gicon.c                 \
329         ginetaddress.c          \
330         ginetsocketaddress.c    \
331         ginitable.c             \
332         ginputstream.c          \
333         gioenums.h              \
334         gioerror.c              \
335         giomodule.c             \
336         giomodule-priv.h        \
337         gioscheduler.c          \
338         giostream.c             \
339         gloadableicon.c         \
340         gmount.c                \
341         gmemoryinputstream.c    \
342         gmemoryoutputstream.c   \
343         gmountoperation.c       \
344         gnativevolumemonitor.c  \
345         gnativevolumemonitor.h  \
346         gnetworkaddress.c       \
347         gnetworkingprivate.h    \
348         gnetworkservice.c       \
349         goutputstream.c         \
350         gpermission.c           \
351         gpollfilemonitor.c      \
352         gpollfilemonitor.h      \
353         gproxyresolver.c        \
354         gresolver.c             \
355         gseekable.c             \
356         gsimpleasyncresult.c    \
357         gsimplepermission.c     \
358         gsocket.c               \
359         gsocketaddress.c        \
360         gsocketaddressenumerator.c \
361         gsocketclient.c         \
362         gsocketconnectable.c    \
363         gsocketconnection.c     \
364         gsocketcontrolmessage.c \
365         gsocketinputstream.c    \
366         gsocketinputstream.h    \
367         gsocketlistener.c       \
368         gsocketoutputstream.c   \
369         gsocketoutputstream.h   \
370         gproxy.c                \
371         gproxyaddress.c         \
372         gproxyaddressenumerator.c \
373         gproxyconnection.c      \
374         gproxyconnection.h      \
375         gsocketservice.c        \
376         gsrvtarget.c            \
377         gtcpconnection.c        \
378         gthreadedsocketservice.c\
379         gthemedicon.c           \
380         gthreadedresolver.c     \
381         gthreadedresolver.h     \
382         gunionvolumemonitor.c   \
383         gunionvolumemonitor.h   \
384         gvfs.c                  \
385         gvolume.c               \
386         gvolumemonitor.c        \
387         gzlibcompressor.c       \
388         gzlibdecompressor.c     \
389         gmountprivate.h         \
390         gioenumtypes.h          \
391         gioenumtypes.c          \
392         $(appinfo_sources)      \
393         $(unix_sources)         \
394         $(win32_sources)        \
395         $(application_sources)  \
396         $(settings_sources)     \
397         $(gdbus_sources)        \
398         $(local_sources)        \
399         $(marshal_sources)      \
400         $(NULL)
401
402 EXTRA_DIST += strinfo.c
403
404 $(libgio_2_0_la_OBJECTS): $(marshal_sources)
405
406 libgio_2_0_la_LIBADD = \
407         $(top_builddir)/glib/libglib-2.0.la             \
408         $(top_builddir)/gobject/libgobject-2.0.la       \
409         $(top_builddir)/gmodule/libgmodule-2.0.la       \
410         $(platform_libadd)                              \
411         $(ZLIB_LIBS)                                    \
412         $(SELINUX_LIBS)                                 \
413         $(GLIB_LIBS)                                    \
414         $(XATTR_LIBS)                                   \
415         $(NULL)
416
417 if PLATFORM_WIN32
418 no_undefined = -no-undefined
419 endif
420
421 if OS_WIN32_AND_DLL_COMPILATION
422 export_symbols = -export-symbols gio.def
423 gio_def = gio.def
424
425 gio_win32_res = gio-win32-res.o
426 gio_win32_res_ldflag = -Wl,$(gio_win32_res)
427
428 install-def-file:
429         $(INSTALL) gio.def $(DESTDIR)$(libdir)/gio-2.0.def
430
431 uninstall-def-file:
432         -rm $(DESTDIR)$(libdir)/gio-2.0.def
433 else
434 install-def-file:
435 uninstall-def-file:
436
437 export_symbols = -export-symbols-regex '^g_.*'
438 endif
439
440 install-data-local: install-ms-lib install-def-file
441         $(mkinstalldirs) $(DESTDIR)$(GIO_MODULE_DIR)
442
443 uninstall-local: uninstall-ms-lib uninstall-def-file
444
445 libgio_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
446         $(gio_win32_res_ldflag) \
447         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
448         -export-dynamic $(no_undefined) $(export_symbols)
449
450 libgio_2_0_la_DEPENDENCIES = $(gio_win32_res) $(gio_def) $(platform_deps)
451
452 gio-win32-res.o: gio.rc
453         $(WINDRES) gio.rc $@
454
455 gio_headers =                   \
456         gappinfo.h              \
457         gasyncinitable.h        \
458         gasyncresult.h          \
459         gbufferedinputstream.h  \
460         gbufferedoutputstream.h \
461         gcancellable.h          \
462         gcontenttype.h          \
463         gcharsetconverter.h     \
464         gconverter.h            \
465         gconverterinputstream.h \
466         gconverteroutputstream.h        \
467         gdatainputstream.h      \
468         gdataoutputstream.h     \
469         gdrive.h                \
470         gemblem.h               \
471         gemblemedicon.h         \
472         gfile.h                 \
473         gfileattribute.h        \
474         gfileenumerator.h       \
475         gfileicon.h             \
476         gfileinfo.h             \
477         gfileinputstream.h      \
478         gfilemonitor.h          \
479         gfilenamecompleter.h    \
480         gfileoutputstream.h     \
481         gfileiostream.h         \
482         gfilterinputstream.h    \
483         gfilteroutputstream.h   \
484         gicon.h                 \
485         ginetaddress.h          \
486         ginetsocketaddress.h    \
487         ginputstream.h          \
488         ginitable.h             \
489         gio.h                   \
490         giotypes.h              \
491         gioenums.h              \
492         gioerror.h              \
493         giomodule.h             \
494         gioscheduler.h          \
495         giostream.h             \
496         gloadableicon.h         \
497         gmount.h                \
498         gmemoryinputstream.h    \
499         gmemoryoutputstream.h   \
500         gmountoperation.h       \
501         gnativevolumemonitor.h  \
502         gnetworkaddress.h       \
503         gnetworkservice.h       \
504         goutputstream.h         \
505         gpermission.h           \
506         gproxyaddress.h         \
507         gproxy.h                \
508         gproxyaddressenumerator.h \
509         gproxyresolver.h        \
510         gresolver.h             \
511         gseekable.h             \
512         gsimpleasyncresult.h    \
513         gsimplepermission.h     \
514         gsocket.h               \
515         gsocketaddress.h        \
516         gsocketaddressenumerator.h \
517         gsocketclient.h         \
518         gsocketconnectable.h    \
519         gsocketconnection.h     \
520         gsocketcontrolmessage.h \
521         gsocketlistener.h       \
522         gsocketservice.h        \
523         gsrvtarget.h            \
524         gtcpconnection.h        \
525         gthreadedsocketservice.h\
526         gthemedicon.h           \
527         gvfs.h                  \
528         gvolume.h               \
529         gvolumemonitor.h        \
530         gzlibcompressor.h       \
531         gzlibdecompressor.h     \
532         $(application_headers)  \
533         $(settings_headers)     \
534         $(gdbus_headers)        \
535         $(NULL)
536
537 gioincludedir=$(includedir)/glib-2.0/gio/
538 gioinclude_HEADERS =            \
539         $(gio_headers)          \
540         gioenumtypes.h
541
542 # these sources (also mentioned above) are generated.
543 BUILT_SOURCES =                 \
544         gio-marshal.h           \
545         gio-marshal.c           \
546         gioenumtypes.h          \
547         gioenumtypes.c          \
548         $(NULL)
549
550 EXTRA_DIST +=                   \
551         gio-marshal.list        \
552         gio.symbols             \
553         gioenumtypes.h.template \
554         gioenumtypes.c.template \
555         makefile.msc            \
556         abicheck.sh             \
557         gio.rc.in               \
558         gschema.dtd             \
559         $(NULL)
560
561 BUILT_EXTRA_DIST =              \
562         gio.rc
563
564 CLEANFILES =                    \
565         $(marshal_sources)      \
566         $(NULL)
567
568 gioenumtypes.h: $(gio_headers) gioenumtypes.h.template
569         $(AM_V_GEN) ( top_builddir=`cd $(top_builddir) && pwd`; \
570           cd $(srcdir) && $$top_builddir/gobject/glib-mkenums --template gioenumtypes.h.template $(gio_headers) ) > \
571             gioenumtypes.h.tmp && mv gioenumtypes.h.tmp gioenumtypes.h
572
573 gioenumtypes.c: $(gio_headers) gioenumtypes.c.template
574         $(AM_V_GEN) ( top_builddir=`cd $(top_builddir) && pwd`; \
575           cd $(srcdir) && $$top_builddir/gobject/glib-mkenums --template gioenumtypes.c.template $(gio_headers) ) > \
576             gioenumtypes.c.tmp && mv gioenumtypes.c.tmp gioenumtypes.c
577
578 gio-2.0.lib: libgio-2.0.la gio.def
579         lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgio-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gio.def -out:$@
580
581 bin_PROGRAMS = gio-querymodules glib-compile-schemas gsettings
582
583 gio_querymodules_SOURCES = gio-querymodules.c
584 gio_querymodules_LDADD   = \
585         $(top_builddir)/glib/libglib-2.0.la             \
586         $(top_builddir)/gobject/libgobject-2.0.la       \
587         $(top_builddir)/gmodule/libgmodule-2.0.la       \
588         libgio-2.0.la                                   \
589         $(NULL)
590
591 glib_compile_schemas_LDADD = $(top_builddir)/glib/libglib-2.0.la
592 glib_compile_schemas_SOURCES = \
593         gvdb/gvdb-format.h              \
594         gvdb/gvdb-builder.h             \
595         gvdb/gvdb-builder.c             \
596         glib-compile-schemas.c
597
598 gsettings_LDADD = \
599         $(top_builddir)/glib/libglib-2.0.la             \
600         $(top_builddir)/gobject/libgobject-2.0.la       \
601         libgio-2.0.la
602 gsettings_SOURCES = gsettings-tool.c
603
604 schemadir = $(datadir)/glib-2.0/schemas
605 dist_schema_DATA = gschema.dtd
606
607 # ------------------------------------------------------------------------
608 # gdbus(1) tool
609
610 bin_PROGRAMS += gdbus
611 gdbus_SOURCES = gdbus-tool.c
612 gdbus_LDADD = libgio-2.0.la \
613         $(top_builddir)/glib/libglib-2.0.la             \
614         $(top_builddir)/gobject/libgobject-2.0.la
615
616 completiondir = $(sysconfdir)/bash_completion.d
617 completion_SCRIPTS = \
618         gdbus-bash-completion.sh                \
619         gsettings-bash-completion.sh
620 EXTRA_DIST += $(completion_SCRIPTS)
621
622 # ------------------------------------------------------------------------
623
624 dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/gio.vcproj
625         files='$(BUILT_EXTRA_DIST)'; \
626         for f in $$files; do \
627           if test -f $$f; then d=.; else d=$(srcdir); fi; \
628           cp $$d/$$f $(distdir) || exit 1; done
629
630 ../build/win32/vs9/gio.vcproj: $(top_srcdir)/build/win32/vs9/gio.vcprojin
631         for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_actual_more_sources_for_vcproj) | tr '/' '\\'`; do \
632                 case $$F in \
633                 gunix*.c|gdesktopappinfo.c) ;; \
634                 *.c) echo '   <File RelativePath="..\..\..\gio\'$$F'" />' \
635                      ;; \
636                 esac; \
637         done | sort -u >libgio.sourcefiles
638         $(CPP) -P - <$(top_srcdir)/build/win32/vs9/gio.vcprojin >$@
639         rm libgio.sourcefiles
640
641 if HAVE_GLIB_RUNTIME_LIBDIR
642 install-data-hook:
643         mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
644         mv $(DESTDIR)$(libdir)/libgio-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
645         mv $(DESTDIR)$(libdir)/libgio-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
646         rm -f $(DESTDIR)$(libdir)/libgio-2.0.so
647         ln -s $(GLIB_RUNTIME_LIBDIR)/libgio-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgio-2.0.so
648 endif