]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/Makefile.am
b66a468af54c2661931d88fe2b26d69ca5a197b2
[~andy/gtk] / gdk-pixbuf / Makefile.am
1
2 SUBDIRS = pixops
3
4 if PLATFORM_WIN32
5 no_undefined = -no-undefined
6 endif
7
8 if OS_WIN32
9 gdk_pixbuf_def = $(srcdir)/gdk_pixbuf.def
10 gdk_pixbuf_symbols = -export-symbols $(gdk_pixbuf_def)
11
12 gdk_pixbuf_win32_res = gdk_pixbuf-win32-res.o
13 gdk_pixbuf_win32_res_ldflag = -Wl,$(gdk_pixbuf_win32_res)
14
15 gdk_pixbuf-win32-res.o : gdk_pixbuf.rc
16         $(WINDRES) gdk_pixbuf.rc $@
17
18 install-def-file:
19         $(INSTALL) $(gdk_pixbuf_def) $(DESTDIR)$(libdir)/gdk_pixbuf-2.0.def
20 uninstall-def-file:
21         -rm $(DESTDIR)$(libdir)/gdk_pixbuf-2.0.def
22 else
23 install-def-file:
24 uninstall-def-file:
25 endif
26
27 if MS_LIB_AVAILABLE
28 noinst_DATA = gdk_pixbuf-$(GTK_API_VERSION).lib
29
30 gdk_pixbuf-$(GTK_API_VERSION).lib: libgdk_pixbuf-$(GTK_API_VERSION).la gdk_pixbuf.def
31         lib -name:libgdk_pixbuf-$(GTK_API_VERSION)-@LT_CURRENT_MINUS_AGE@.dll -def:gdk_pixbuf.def -out:$@
32
33 install-ms-lib:
34         $(INSTALL) gdk_pixbuf-$(GTK_API_VERSION).lib $(DESTDIR)$(libdir)
35
36 uninstall-ms-lib:
37         -rm $(DESTDIR)$(libdir)/gdk_pixbuf-$(GTK_API_VERSION).lib
38 else
39 install-ms-lib:
40 uninstall-ms-lib:
41 endif
42
43 gdk_pixbuf.def: gdk-pixbuf.symbols
44         (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DG_OS_WIN32 -DALL_FILES - <$(srcdir)/gdk-pixbuf.symbols | sed -e '/^$$/d' -e 's/^/     /' -e 's/G_GNUC_[^ ]*//g') > gdk_pixbuf.def
45
46 gdk-pixbuf-alias.h: gdk-pixbuf.symbols
47          $(PERL) $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h
48
49 gdk-pixbuf-aliasdef.c: gdk-pixbuf.symbols
50          $(PERL) $(srcdir)/makegdkpixbufalias.pl -def < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-aliasdef.c
51
52 if OS_LINUX
53 TESTS = abicheck.sh
54 endif
55
56 lib_LTLIBRARIES =               \
57         libgdk_pixbuf-2.0.la
58
59 loaderdir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/loaders
60
61 module_libs = libgdk_pixbuf-$(GTK_API_VERSION).la $(GDK_PIXBUF_DEP_LIBS)
62
63 #
64 # The PNG plugin.
65 #
66 libpixbufloader_png_la_SOURCES = io-png.c
67 libpixbufloader_png_la_LDFLAGS = -avoid-version -module $(no_undefined)
68 libpixbufloader_png_la_LIBADD = $(LIBPNG) $(module_libs)
69 libpixbufloader_static_png_la_SOURCES = io-png.c
70
71 #
72 # The JPEG loader
73 #
74 libpixbufloader_static_jpeg_la_SOURCES = io-jpeg.c
75 libpixbufloader_jpeg_la_SOURCES = io-jpeg.c
76 libpixbufloader_jpeg_la_LDFLAGS = -avoid-version -module $(no_undefined)
77 libpixbufloader_jpeg_la_LIBADD = $(LIBJPEG) $(module_libs)
78
79 #
80 # The XPM loader
81 #
82 libpixbufloader_static_xpm_la_SOURCES = io-xpm.c
83 libpixbufloader_xpm_la_SOURCES = io-xpm.c
84 libpixbufloader_xpm_la_LDFLAGS = -avoid-version -module $(no_undefined)
85 libpixbufloader_xpm_la_LIBADD = $(module_libs)
86
87 #
88 # The GIF loader
89 #
90 libpixbufloader_static_gif_la_SOURCES = io-gif.c io-gif-animation.c io-gif-animation.h
91 libpixbufloader_gif_la_SOURCES = io-gif.c io-gif-animation.c io-gif-animation.h
92 libpixbufloader_gif_la_LDFLAGS = -avoid-version -module $(no_undefined)
93 libpixbufloader_gif_la_LIBADD = $(module_libs)
94
95 #
96 # The ICO loader
97 #
98 libpixbufloader_static_ico_la_SOURCES = io-ico.c
99 libpixbufloader_ico_la_SOURCES = io-ico.c
100 libpixbufloader_ico_la_LDFLAGS = -avoid-version -module $(no_undefined)
101 libpixbufloader_ico_la_LIBADD = $(module_libs)
102
103 #
104 # The ANI loader
105 #
106 libpixbufloader_static_ani_la_SOURCES = io-ani.c io-ani-animation.c io-ani-animation.h
107 libpixbufloader_ani_la_SOURCES = io-ani.c io-ani-animation.c io-ani-animation.h
108 libpixbufloader_ani_la_LDFLAGS = -avoid-version -module $(no_undefined)
109 libpixbufloader_ani_la_LIBADD = $(module_libs)
110
111 #
112 # The RAS loader
113 #
114 libpixbufloader_static_ras_la_SOURCES = io-ras.c
115 libpixbufloader_ras_la_SOURCES = io-ras.c
116 libpixbufloader_ras_la_LDFLAGS = -avoid-version -module $(no_undefined)
117 libpixbufloader_ras_la_LIBADD = $(module_libs)
118
119 #
120 # The TIFF loader
121 #
122 libpixbufloader_static_tiff_la_SOURCES = io-tiff.c
123 libpixbufloader_tiff_la_SOURCES = io-tiff.c
124 libpixbufloader_tiff_la_LDFLAGS = -avoid-version -module $(no_undefined)
125 libpixbufloader_tiff_la_LIBADD = $(LIBTIFF) $(module_libs)
126
127 #
128 # The PNM loader
129 #
130 libpixbufloader_static_pnm_la_SOURCES = io-pnm.c
131 libpixbufloader_pnm_la_SOURCES = io-pnm.c
132 libpixbufloader_pnm_la_LDFLAGS = -avoid-version -module $(no_undefined)
133 libpixbufloader_pnm_la_LIBADD = $(module_libs)
134
135 #
136 # The BMP loader
137 #
138 libpixbufloader_static_bmp_la_SOURCES = io-bmp.c
139 libpixbufloader_bmp_la_SOURCES = io-bmp.c
140 libpixbufloader_bmp_la_LDFLAGS = -avoid-version -module $(no_undefined)
141 libpixbufloader_bmp_la_LIBADD = $(module_libs)
142
143 #
144 # The WBMP loader
145 #
146 libpixbufloader_static_wbmp_la_SOURCES = io-wbmp.c
147 libpixbufloader_wbmp_la_SOURCES = io-wbmp.c
148 libpixbufloader_wbmp_la_LDFLAGS = -avoid-version -module $(no_undefined)
149 libpixbufloader_wbmp_la_LIBADD = $(module_libs)
150
151 #
152 # The XBM loader
153 #
154 libpixbufloader_static_xbm_la_SOURCES = io-xbm.c
155 libpixbufloader_xbm_la_SOURCES = io-xbm.c
156 libpixbufloader_xbm_la_LDFLAGS = -avoid-version -module $(no_undefined)
157 libpixbufloader_xbm_la_LIBADD = $(module_libs)
158
159 #
160 # The TGA loader
161 #
162 libpixbufloader_static_tga_la_SOURCES = io-tga.c
163 libpixbufloader_tga_la_SOURCES = io-tga.c
164 libpixbufloader_tga_la_LDFLAGS = -avoid-version -module $(no_undefined)
165 libpixbufloader_tga_la_LIBADD = $(module_libs)
166
167 #
168 # The PCX loader
169 #
170 libpixbufloader_static_pcx_la_SOURCES = io-pcx.c
171 libpixbufloader_pcx_la_SOURCES = io-pcx.c
172 libpixbufloader_pcx_la_LDFLAGS = -avoid-version -module $(no_undefined)
173 libpixbufloader_pcx_la_LIBADD = $(module_libs)
174
175 if HAVE_PNG
176 PNG_LIB = libpixbufloader-png.la
177 STATIC_PNG_LIB = libpixbufloader-static-png.la
178 endif
179
180 if HAVE_JPEG
181 JPEG_LIB = libpixbufloader-jpeg.la
182 STATIC_JPEG_LIB = libpixbufloader-static-jpeg.la
183 endif
184
185 GIF_LIB = libpixbufloader-gif.la
186 STATIC_GIF_LIB = libpixbufloader-static-gif.la
187
188 ICO_LIB = libpixbufloader-ico.la
189 STATIC_ICO_LIB = libpixbufloader-static-ico.la
190
191 ANI_LIB = libpixbufloader-ani.la
192 STATIC_ANI_LIB = libpixbufloader-static-ani.la
193
194 RAS_LIB = libpixbufloader-ras.la
195 STATIC_RAS_LIB = libpixbufloader-static-ras.la
196
197 if HAVE_TIFF
198 TIFF_LIB = libpixbufloader-tiff.la
199 STATIC_TIFF_LIB = libpixbufloader-static-tiff.la
200 endif
201
202 XPM_LIB = libpixbufloader-xpm.la
203 STATIC_XPM_LIB = libpixbufloader-static-xpm.la
204
205 PNM_LIB = libpixbufloader-pnm.la
206 STATIC_PNM_LIB = libpixbufloader-static-pnm.la
207
208 BMP_LIB = libpixbufloader-bmp.la
209 STATIC_BMP_LIB = libpixbufloader-static-bmp.la
210
211 WBMP_LIB = libpixbufloader-wbmp.la
212 STATIC_WBMP_LIB = libpixbufloader-static-wbmp.la
213
214 XBM_LIB = libpixbufloader-xbm.la
215 STATIC_XBM_LIB = libpixbufloader-static-xbm.la
216
217 TGA_LIB = libpixbufloader-tga.la
218 STATIC_TGA_LIB = libpixbufloader-static-tga.la
219
220 PCX_LIB = libpixbufloader-pcx.la
221 STATIC_PCX_LIB = libpixbufloader-static-pcx.la
222
223 if BUILD_DYNAMIC_MODULES
224
225 loader_LTLIBRARIES =    \
226         $(PNG_LIB)      \
227         $(JPEG_LIB)     \
228         $(GIF_LIB)      \
229         $(ICO_LIB)      \
230         $(ANI_LIB)      \
231         $(RAS_LIB)      \
232         $(XPM_LIB)      \
233         $(TIFF_LIB)     \
234         $(PNM_LIB)      \
235         $(BMP_LIB)      \
236         $(WBMP_LIB)     \
237         $(XBM_LIB)      \
238         $(TGA_LIB)      \
239         $(PCX_LIB)
240
241
242 extra_sources = 
243 builtin_objs = 
244 else
245 loader_LTLIBRARIES = 
246
247 noinst_LTLIBRARIES =            \
248         $(STATIC_PNG_LIB)       \
249         $(STATIC_JPEG_LIB)      \
250         $(STATIC_GIF_LIB)       \
251         $(STATIC_ICO_LIB)       \
252         $(STATIC_ANI_LIB)       \
253         $(STATIC_RAS_LIB)       \
254         $(STATIC_XPM_LIB)       \
255         $(STATIC_TIFF_LIB)      \
256         $(STATIC_PNM_LIB)       \
257         $(STATIC_BMP_LIB)       \
258         $(STATIC_WBMP_LIB)      \
259         $(STATIC_XBM_LIB)       \
260         $(STATIC_TGA_LIB)       \
261         $(STATIC_PCX_LIB)
262
263 builtin_objs = @INCLUDED_LOADER_OBJ@
264
265 endif
266
267 DEPS = libgdk_pixbuf-$(GTK_API_VERSION).la
268 INCLUDES = \
269         -DG_LOG_DOMAIN=\"GdkPixbuf\"            \
270         -I$(top_srcdir) -I$(top_builddir)       \
271         -I$(top_srcdir)/gdk-pixbuf              \
272         -I$(top_builddir)/gdk-pixbuf            \
273         -DGTK_SYSCONFDIR=\"$(sysconfdir)\"      \
274         -DGTK_VERSION=\"$(GTK_VERSION)\"        \
275         -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\"  \
276         -DG_DISABLE_DEPRECATED                  \
277         -DGDK_PIXBUF_DISABLE_DEPRECATED         \
278         -DGTK_PREFIX=\"$(prefix)\"              \
279         $(INCLUDED_LOADER_DEFINE)               \
280         $(GTK_DEBUG_FLAGS)                      \
281         $(GDK_PIXBUF_DEP_CFLAGS)                \
282         -DGDK_PIXBUF_ENABLE_BACKEND
283
284 AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(loaderdir)\"" "-DBUILT_MODULES_DIR=\"$(srcdir)/.libs\""
285 LDADDS = libgdk_pixbuf-$(GTK_API_VERSION).la
286
287 noinst_PROGRAMS = test-gdk-pixbuf
288 test_gdk_pixbuf_LDADD = $(LDADDS)
289
290 bin_PROGRAMS = gdk-pixbuf-csource gdk-pixbuf-query-loaders
291 gdk_pixbuf_csource_SOURCES = gdk-pixbuf-csource.c
292 gdk_pixbuf_csource_LDADD = $(LDADDS)
293
294 gdk_pixbuf_query_loaders_DEPENDENCIES = $(DEPS)
295 gdk_pixbuf_query_loaders_LDADD = $(LDADDS)
296
297 gdk_pixbuf_query_loaders_SOURCES = queryloaders.c
298
299
300 #
301 # The GdkPixBuf library
302 #
303 libgdk_pixbufincludedir = $(includedir)/gtk-2.0/gdk-pixbuf
304 libgdk_pixbuf_2_0_la_SOURCES =   \
305         gdk-pixbuf-i18n.h        \
306         gdk-pixbuf.c             \
307         gdk-pixbuf-animation.c   \
308         gdk-pixbuf-data.c        \
309         gdk-pixbuf-io.c          \
310         gdk-pixbuf-loader.c      \
311         gdk-pixbuf-scale.c       \
312         gdk-pixbuf-simple-anim.c \
313         gdk-pixbuf-util.c        \
314         gdk-pixdata.c            \
315         gdk-pixbuf-enum-types.c
316
317 libgdk_pixbuf_2_0_la_LDFLAGS = \
318         $(gdk_pixbuf_win32_res_ldflag)          \
319         -version-info $(LT_VERSION_INFO)        \
320         $(LIBTOOL_EXPORT_OPTIONS)               \
321         $(no_undefined)                         \
322         $(gdk_pixbuf_symbols)
323
324
325 libgdk_pixbuf_2_0_la_LIBADD = pixops/libpixops.la $(builtin_objs) $(GDK_PIXBUF_DEP_LIBS)
326 libgdk_pixbuf_2_0_la_DEPENDENCIES = pixops/libpixops.la $(builtin_objs) $(gdk_pixbuf_def) $(gdk_pixbuf_win32_res)
327
328 gdk_pixbuf_headers =                    \
329         gdk-pixbuf.h                    \
330         gdk-pixbuf-core.h               \
331         gdk-pixbuf-transform.h          \
332         gdk-pixbuf-io.h                 \
333         gdk-pixbuf-animation.h          \
334         gdk-pixbuf-simple-anim.h        \
335         gdk-pixbuf-loader.h
336
337 libgdk_pixbufinclude_HEADERS =          \
338         $(gdk_pixbuf_headers)           \
339         gdk-pixbuf-enum-types.h         \
340         gdk-pixbuf-marshal.h            \
341         gdk-pixbuf-features.h           \
342         gdk-pixdata.h
343
344 noinst_HEADERS =                \
345         gdk-pixbuf-alias.h      \
346         gdk-pixbuf-private.h    \
347         xpm-color-table.h
348
349 BUILT_SOURCES =                 \
350         gdk-pixbuf-alias.h      \
351         gdk-pixbuf-aliasdef.c   \
352         gdk-pixbuf-enum-types.h \
353         gdk-pixbuf-enum-types.c \
354         gdk-pixbuf-marshal.h    \
355         gdk-pixbuf-marshal.c
356
357 CLEANFILES =
358 MAINTAINERCLEANFILES =          \
359         gdk-pixbuf-aliasdef.c   \
360         gdk-pixbuf-enum-types.h \
361         gdk-pixbuf-enum-types.c \
362         gdk-pixbuf-marshal.h    \
363         gdk-pixbuf-marshal.c    \
364         gdk-pixbuf.loaders
365
366 #
367 # gdk-pixbuf-enum-types.h
368 #
369 gdk-pixbuf-enum-types.h: s-enum-types-h
370         @true
371
372 s-enum-types-h: @REBUILD@ $(gdk_pixbuf_headers) Makefile
373         ( cd $(srcdir) && glib-mkenums \
374                         --fhead "#ifndef __GDK_PIXBUF_ENUM_TYPES_H__\n#define __GDK_PIXBUF_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
375                         --fprod "/* enumerations from \"@filename@\" */\n" \
376                         --vhead "GType @enum_name@_get_type (void) G_GNUC_CONST;\n#define GDK_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n"         \
377                         --ftail "G_END_DECLS\n\n#endif /* __GDK_PIXBUF_ENUM_TYPES_H__ */" \
378                 $(gdk_pixbuf_headers) ) > tmp-gdk-pixbuf-enum-types.h \
379         && (cmp -s tmp-gdk-pixbuf-enum-types.h gdk-pixbuf-enum-types.h || cp tmp-gdk-pixbuf-enum-types.h gdk-pixbuf-enum-types.h ) \
380         && rm -f tmp-gdk-pixbuf-enum-types.h \
381         && echo timestamp > $(@F)
382
383 CLEANFILES += tmp-gdk-pixbuf-enum-types.h
384 MAINTAINERCLEANFILES += s-enum-types-h
385
386 #
387 # gdk-pixbuf-enum-types.c
388 #
389 gdk-pixbuf-enum-types.c: @REBUILD@ $(gdk_pixbuf_headers) Makefile
390         (cd $(srcdir) && glib-mkenums \
391                 --fhead "#include <gdk-pixbuf/gdk-pixbuf.h>\n#include \"gdk-pixbuf-alias.h\"\n" \
392                 --fprod "\n/* enumerations from \"@filename@\" */" \
393                 --ftail "\n#define __GDK_PIXBUF_ENUM_TYPES_C__\n#include \"gdk-pixbuf-aliasdef.c\"" \
394                 --vhead "GType\n@enum_name@_get_type (void)\n{\n  static GType etype = 0;\n  if (etype == 0) {\n    static const G@Type@Value values[] = {"       \
395                 --vprod "      { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
396                 --vtail "      { 0, NULL, NULL }\n    };\n    etype = g_@type@_register_static (g_intern_static_string (\"@EnumName@\"), values);\n  }\n  return etype;\n}\n" \
397                   $(gdk_pixbuf_headers)) > gdk-pixbuf-enum-types.c
398
399 #
400 # gdk-pixbuf-marshal.h
401 #
402 gdk-pixbuf-marshal.h: @REBUILD@ stamp-gdk-pixbuf-marshal.h
403         @true
404
405 stamp-gdk-pixbuf-marshal.h: @REBUILD@ $(srcdir)/gdk-pixbuf-marshal.list
406         $(GLIB_GENMARSHAL) --prefix=_gdk_pixbuf_marshal $(srcdir)/gdk-pixbuf-marshal.list --header >> xgen-gmh \
407         && (cmp -s xgen-gmh gdk-pixbuf-marshal.h || cp xgen-gmh gdk-pixbuf-marshal.h) \
408         && rm -f xgen-gmh xgen-gmh~ \
409         && echo timestamp > $(@F)
410
411 CLEANFILES += xgen-gmh
412 MAINTAINERCLEANFILES += stamp-gdk-pixbuf-marshal.h
413
414 #
415 # gdk-pixbuf-marshal.c
416 #
417 $(srcdir)/gdk-pixbuf-marshal.c: @REBUILD@ $(srcdir)/gdk-pixbuf-marshal.list
418         (echo -e "#include <gdk-pixbuf/gdk-pixbuf.h>\n#include \"gdk-pixbuf-alias.h\"" | $(GLIB_GENMARSHAL) --prefix=_gdk_pixbuf_marshal $(srcdir)/gdk-pixbuf-marshal.list --body ) >> xgen-gmc \
419         && cp xgen-gmc gdk-pixbuf-marshal.c \
420         && rm -f xgen-gmc xgen-gmc~
421
422 CLEANFILES += xgen-gmc
423
424 # if srcdir!=builddir, clean out maintainer-clean files from builddir
425 # this allows dist to pass.
426 distclean-local:
427         if test $(srcdir) != .; then \
428           rm -f $(MAINTAINERCLEANFILES); \
429         fi
430
431 EXTRA_DIST =                                    \
432         gdk-pixbuf-csource.1                    \
433         makefile.msc                            \
434         gdk-pixbuf.symbols                      \
435         makegdkpixbufalias.pl                   \
436         abicheck.sh                             \
437         gdk_pixbuf.def                          \
438         gdk_pixbuf.rc                           \
439         gdk-pixbuf-marshal.c                    \
440         gdk-pixbuf-marshal.list                 \
441         pixbufloader_ico.def                    \
442         pixbufloader_ani.def                    \
443         pixbufloader_pnm.def                    \
444         pixbufloader_xpm.def                    \
445         pixbufloader_bmp.def                    \
446         pixbufloader_jpeg.def                   \
447         pixbufloader_ras.def                    \
448         pixbufloader_gif.def                    \
449         pixbufloader_png.def                    \
450         pixbufloader_tiff.def                   \
451         pixbufloader_wbmp.def                   \
452         pixbufloader_xbm.def                    \
453         pixbufloader_tga.def                    \
454         gen-color-table.pl
455
456 if CROSS_COMPILING
457 RUN_QUERY_LOADER_TEST=false
458 else
459 RUN_QUERY_LOADER_TEST=test -z "$(DESTDIR)"
460 endif
461
462 # Running this if cross compiling or if DESTDIR is set is going to
463 # not work at all, so skip it
464 # We use install-data-hook here to workaround a bug in automake and/or libtool
465 # that makes the install target for the loader libraries a dependency on
466 # install-data-am, and not install-exec-am. We need to ensure this gets run
467 # after the libraries are installed in their final locations.
468 install-data-hook: install-ms-lib install-def-file
469         @if $(RUN_QUERY_LOADER_TEST) ; then \
470           $(mkinstalldirs) $(DESTDIR)$(sysconfdir)/gtk-2.0 ; \
471           $(top_builddir)/gdk-pixbuf/gdk-pixbuf-query-loaders > $(DESTDIR)$(sysconfdir)/gtk-2.0/gdk-pixbuf.loaders ; \
472         else \
473           echo "***" ; \
474           echo "*** Warning: gdk-pixbuf.loaders not built" ; \
475           echo "***" ; \
476           echo "*** Generate this file manually on host" ; \
477           echo "*** system using gdk-pixbuf-query-loaders" ; \
478           echo "***" ; \
479         fi
480
481 uninstall-local: uninstall-ms-lib uninstall-def-file
482         rm -f $(DESTDIR)$(sysconfdir)/gtk-2.0/gdk-pixbuf.loaders
483
484 if CROSS_COMPILING
485 else
486 all-local: gdk-pixbuf.loaders
487 endif
488
489 if BUILD_DYNAMIC_MODULES
490 gdk-pixbuf.loaders: $(loader_LTLIBRARIES) gdk-pixbuf-query-loaders
491         LOADERS=`echo libpixbufloader-*.la` ; \
492         if test "x$$LOADERS" != 'xlibpixbufloader-*.la' ; then \
493           echo "Writing a gdk-pixbuf.loader file to use when running examples before installing gdk-pixbuf."; \
494           $(top_builddir)/gdk-pixbuf/gdk-pixbuf-query-loaders $$LOADERS > ./gdk-pixbuf.loaders ;\
495         else \
496           echo "No dynamic modules found; will use only static modules for uninstalled example programs."; \
497           touch gdk-pixbuf.loaders; \
498         fi
499 else
500 gdk-pixbuf.loaders: 
501         echo "No dynamic modules found; will use only static modules for uninstalled example programs."; \
502         touch gdk-pixbuf.loaders;
503 endif