GPeriodic: a periodic event clock
[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         gperiodic.c             \
351         gpermission.c           \
352         gpollfilemonitor.c      \
353         gpollfilemonitor.h      \
354         gproxyresolver.c        \
355         gresolver.c             \
356         gseekable.c             \
357         gsimpleasyncresult.c    \
358         gsimplepermission.c     \
359         gsocket.c               \
360         gsocketaddress.c        \
361         gsocketaddressenumerator.c \
362         gsocketclient.c         \
363         gsocketconnectable.c    \
364         gsocketconnection.c     \
365         gsocketcontrolmessage.c \
366         gsocketinputstream.c    \
367         gsocketinputstream.h    \
368         gsocketlistener.c       \
369         gsocketoutputstream.c   \
370         gsocketoutputstream.h   \
371         gproxy.c                \
372         gproxyaddress.c         \
373         gproxyaddressenumerator.c \
374         gproxyconnection.c      \
375         gproxyconnection.h      \
376         gsocketservice.c        \
377         gsrvtarget.c            \
378         gtcpconnection.c        \
379         gthreadedsocketservice.c\
380         gthemedicon.c           \
381         gthreadedresolver.c     \
382         gthreadedresolver.h     \
383         gunionvolumemonitor.c   \
384         gunionvolumemonitor.h   \
385         gvfs.c                  \
386         gvolume.c               \
387         gvolumemonitor.c        \
388         gzlibcompressor.c       \
389         gzlibdecompressor.c     \
390         gmountprivate.h         \
391         gioenumtypes.h          \
392         gioenumtypes.c          \
393         $(appinfo_sources)      \
394         $(unix_sources)         \
395         $(win32_sources)        \
396         $(application_sources)  \
397         $(settings_sources)     \
398         $(gdbus_sources)        \
399         $(local_sources)        \
400         $(marshal_sources)      \
401         $(NULL)
402
403 EXTRA_DIST += strinfo.c
404
405 $(libgio_2_0_la_OBJECTS): $(marshal_sources)
406
407 libgio_2_0_la_LIBADD = \
408         $(top_builddir)/glib/libglib-2.0.la             \
409         $(top_builddir)/gobject/libgobject-2.0.la       \
410         $(top_builddir)/gmodule/libgmodule-2.0.la       \
411         $(platform_libadd)                              \
412         $(ZLIB_LIBS)                                    \
413         $(SELINUX_LIBS)                                 \
414         $(GLIB_LIBS)                                    \
415         $(XATTR_LIBS)                                   \
416         $(NULL)
417
418 if PLATFORM_WIN32
419 no_undefined = -no-undefined
420 endif
421
422 if OS_WIN32_AND_DLL_COMPILATION
423 export_symbols = -export-symbols gio.def
424 gio_def = gio.def
425
426 gio_win32_res = gio-win32-res.o
427 gio_win32_res_ldflag = -Wl,$(gio_win32_res)
428
429 install-def-file:
430         $(INSTALL) gio.def $(DESTDIR)$(libdir)/gio-2.0.def
431
432 uninstall-def-file:
433         -rm $(DESTDIR)$(libdir)/gio-2.0.def
434 else
435 install-def-file:
436 uninstall-def-file:
437
438 export_symbols = -export-symbols-regex '^g_.*'
439 endif
440
441 install-data-local: install-ms-lib install-def-file
442         $(mkinstalldirs) $(DESTDIR)$(GIO_MODULE_DIR)
443
444 uninstall-local: uninstall-ms-lib uninstall-def-file
445
446 libgio_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
447         $(gio_win32_res_ldflag) \
448         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
449         -export-dynamic $(no_undefined) $(export_symbols)
450
451 libgio_2_0_la_DEPENDENCIES = $(gio_win32_res) $(gio_def) $(platform_deps)
452
453 gio-win32-res.o: gio.rc
454         $(WINDRES) gio.rc $@
455
456 gio_headers =                   \
457         gappinfo.h              \
458         gasyncinitable.h        \
459         gasyncresult.h          \
460         gbufferedinputstream.h  \
461         gbufferedoutputstream.h \
462         gcancellable.h          \
463         gcontenttype.h          \
464         gcharsetconverter.h     \
465         gconverter.h            \
466         gconverterinputstream.h \
467         gconverteroutputstream.h        \
468         gdatainputstream.h      \
469         gdataoutputstream.h     \
470         gdrive.h                \
471         gemblem.h               \
472         gemblemedicon.h         \
473         gfile.h                 \
474         gfileattribute.h        \
475         gfileenumerator.h       \
476         gfileicon.h             \
477         gfileinfo.h             \
478         gfileinputstream.h      \
479         gfilemonitor.h          \
480         gfilenamecompleter.h    \
481         gfileoutputstream.h     \
482         gfileiostream.h         \
483         gfilterinputstream.h    \
484         gfilteroutputstream.h   \
485         gicon.h                 \
486         ginetaddress.h          \
487         ginetsocketaddress.h    \
488         ginputstream.h          \
489         ginitable.h             \
490         gio.h                   \
491         giotypes.h              \
492         gioenums.h              \
493         gioerror.h              \
494         giomodule.h             \
495         gioscheduler.h          \
496         giostream.h             \
497         gloadableicon.h         \
498         gmount.h                \
499         gmemoryinputstream.h    \
500         gmemoryoutputstream.h   \
501         gmountoperation.h       \
502         gnativevolumemonitor.h  \
503         gnetworkaddress.h       \
504         gnetworkservice.h       \
505         goutputstream.h         \
506         gperiodic.h             \
507         gpermission.h           \
508         gproxyaddress.h         \
509         gproxy.h                \
510         gproxyaddressenumerator.h \
511         gproxyresolver.h        \
512         gresolver.h             \
513         gseekable.h             \
514         gsimpleasyncresult.h    \
515         gsimplepermission.h     \
516         gsocket.h               \
517         gsocketaddress.h        \
518         gsocketaddressenumerator.h \
519         gsocketclient.h         \
520         gsocketconnectable.h    \
521         gsocketconnection.h     \
522         gsocketcontrolmessage.h \
523         gsocketlistener.h       \
524         gsocketservice.h        \
525         gsrvtarget.h            \
526         gtcpconnection.h        \
527         gthreadedsocketservice.h\
528         gthemedicon.h           \
529         gvfs.h                  \
530         gvolume.h               \
531         gvolumemonitor.h        \
532         gzlibcompressor.h       \
533         gzlibdecompressor.h     \
534         $(application_headers)  \
535         $(settings_headers)     \
536         $(gdbus_headers)        \
537         $(NULL)
538
539 gioincludedir=$(includedir)/glib-2.0/gio/
540 gioinclude_HEADERS =            \
541         $(gio_headers)          \
542         gioenumtypes.h
543
544 # these sources (also mentioned above) are generated.
545 BUILT_SOURCES =                 \
546         gio-marshal.h           \
547         gio-marshal.c           \
548         gioenumtypes.h          \
549         gioenumtypes.c          \
550         $(NULL)
551
552 EXTRA_DIST +=                   \
553         gio-marshal.list        \
554         gio.symbols             \
555         gioenumtypes.h.template \
556         gioenumtypes.c.template \
557         makefile.msc            \
558         abicheck.sh             \
559         gio.rc.in               \
560         gschema.dtd             \
561         $(NULL)
562
563 BUILT_EXTRA_DIST =              \
564         gio.rc
565
566 CLEANFILES =                    \
567         $(marshal_sources)      \
568         $(NULL)
569
570 gioenumtypes.h: $(gio_headers) gioenumtypes.h.template
571         $(AM_V_GEN) ( top_builddir=`cd $(top_builddir) && pwd`; \
572           cd $(srcdir) && $$top_builddir/gobject/glib-mkenums --template gioenumtypes.h.template $(gio_headers) ) > \
573             gioenumtypes.h.tmp && mv gioenumtypes.h.tmp gioenumtypes.h
574
575 gioenumtypes.c: $(gio_headers) gioenumtypes.c.template
576         $(AM_V_GEN) ( top_builddir=`cd $(top_builddir) && pwd`; \
577           cd $(srcdir) && $$top_builddir/gobject/glib-mkenums --template gioenumtypes.c.template $(gio_headers) ) > \
578             gioenumtypes.c.tmp && mv gioenumtypes.c.tmp gioenumtypes.c
579
580 gio-2.0.lib: libgio-2.0.la gio.def
581         lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgio-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gio.def -out:$@
582
583 bin_PROGRAMS = gio-querymodules glib-compile-schemas gsettings
584
585 gio_querymodules_SOURCES = gio-querymodules.c
586 gio_querymodules_LDADD   = \
587         $(top_builddir)/glib/libglib-2.0.la             \
588         $(top_builddir)/gobject/libgobject-2.0.la       \
589         $(top_builddir)/gmodule/libgmodule-2.0.la       \
590         libgio-2.0.la                                   \
591         $(NULL)
592
593 glib_compile_schemas_LDADD = $(top_builddir)/glib/libglib-2.0.la
594 glib_compile_schemas_SOURCES = \
595         gvdb/gvdb-format.h              \
596         gvdb/gvdb-builder.h             \
597         gvdb/gvdb-builder.c             \
598         glib-compile-schemas.c
599
600 gsettings_LDADD = \
601         $(top_builddir)/glib/libglib-2.0.la             \
602         $(top_builddir)/gobject/libgobject-2.0.la       \
603         libgio-2.0.la
604 gsettings_SOURCES = gsettings-tool.c
605
606 schemadir = $(datadir)/glib-2.0/schemas
607 dist_schema_DATA = gschema.dtd
608
609 # ------------------------------------------------------------------------
610 # gdbus(1) tool
611
612 bin_PROGRAMS += gdbus
613 gdbus_SOURCES = gdbus-tool.c
614 gdbus_LDADD = libgio-2.0.la \
615         $(top_builddir)/glib/libglib-2.0.la             \
616         $(top_builddir)/gobject/libgobject-2.0.la
617
618 completiondir = $(sysconfdir)/bash_completion.d
619 completion_SCRIPTS = \
620         gdbus-bash-completion.sh                \
621         gsettings-bash-completion.sh
622 EXTRA_DIST += $(completion_SCRIPTS)
623
624 # ------------------------------------------------------------------------
625
626 dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/gio.vcproj
627         files='$(BUILT_EXTRA_DIST)'; \
628         for f in $$files; do \
629           if test -f $$f; then d=.; else d=$(srcdir); fi; \
630           cp $$d/$$f $(distdir) || exit 1; done
631
632 ../build/win32/vs9/gio.vcproj: $(top_srcdir)/build/win32/vs9/gio.vcprojin
633         for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_actual_more_sources_for_vcproj) | tr '/' '\\'`; do \
634                 case $$F in \
635                 gunix*.c|gdesktopappinfo.c) ;; \
636                 *.c) echo '   <File RelativePath="..\..\..\gio\'$$F'" />' \
637                      ;; \
638                 esac; \
639         done | sort -u >libgio.sourcefiles
640         $(CPP) -P - <$(top_srcdir)/build/win32/vs9/gio.vcprojin >$@
641         rm libgio.sourcefiles
642
643 if HAVE_GLIB_RUNTIME_LIBDIR
644 install-data-hook:
645         mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
646         mv $(DESTDIR)$(libdir)/libgio-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
647         mv $(DESTDIR)$(libdir)/libgio-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
648         rm -f $(DESTDIR)$(libdir)/libgio-2.0.so
649         ln -s $(GLIB_RUNTIME_LIBDIR)/libgio-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgio-2.0.so
650 endif