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