1 | SUBDIRS = gdk-pixbuf demo doc |
---|
2 | |
---|
3 | bin_SCRIPTS = gdk-pixbuf-config |
---|
4 | |
---|
5 | confexecdir = $(libdir) |
---|
6 | confexec_DATA = \ |
---|
7 | gdk_pixbufConf.sh \ |
---|
8 | gdk_pixbuf_xlibConf.sh \ |
---|
9 | gnomecanvaspixbufConf.sh |
---|
10 | |
---|
11 | EXTRA_DIST = \ |
---|
12 | gdk_pixbufConf.sh.in \ |
---|
13 | gdk_pixbuf_xlibConf.sh.in \ |
---|
14 | gnomecanvaspixbufConf.sh.in \ |
---|
15 | gdk-pixbuf-config.in \ |
---|
16 | gdk-pixbuf.m4 \ |
---|
17 | gdk-pixbuf.spec \ |
---|
18 | gdk-pixbuf.spec.in |
---|
19 | |
---|
20 | m4datadir = $(datadir)/aclocal |
---|
21 | m4data_DATA = gdk-pixbuf.m4 |
---|
22 | |
---|
23 | gdk_pixbufConf.sh: gdk_pixbufConf.sh.in Makefile |
---|
24 | ## Use sed and then mv to avoid problems if the user interrupts. |
---|
25 | sed -e 's?\@GDK_PIXBUF_LIBDIR\@?$(GDK_PIXBUF_LIBDIR)?g' \ |
---|
26 | -e 's?\@GDK_PIXBUF_INCLUDEDIR\@?$(GDK_PIXBUF_INCLUDEDIR)?g' \ |
---|
27 | -e 's?\@VERSION\@?$(VERSION)?g' \ |
---|
28 | -e 's?\@GDK_PIXBUF_LIBS\@?$(GDK_PIXBUF_LIBS)?g' \ |
---|
29 | < $(srcdir)/gdk_pixbufConf.sh.in > gdk_pixbufConf.tmp \ |
---|
30 | && mv gdk_pixbufConf.tmp gdk_pixbufConf.sh |
---|
31 | |
---|
32 | gdk_pixbuf_xlibConf.sh: gdk_pixbuf_xlibConf.sh.in Makefile |
---|
33 | ## Use sed and then mv to avoid problems if the user interrupts. |
---|
34 | sed -e 's?\@GDK_PIXBUF_XLIB_LIBDIR\@?$(GDK_PIXBUF_XLIB_LIBDIR)?g' \ |
---|
35 | -e 's?\@GDK_PIXBUF_XLIB_INCLUDEDIR\@?$(GDK_PIXBUF_XLIB_INCLUDEDIR)?g' \ |
---|
36 | -e 's?\@VERSION\@?$(VERSION)?g' \ |
---|
37 | -e 's?\@GDK_PIXBUF_XLIB_LIBS\@?$(GDK_PIXBUF_XLIB_LIBS)?g' \ |
---|
38 | < $(srcdir)/gdk_pixbuf_xlibConf.sh.in > gdk_pixbuf_xlibConf.tmp \ |
---|
39 | && mv gdk_pixbuf_xlibConf.tmp gdk_pixbuf_xlibConf.sh |
---|
40 | |
---|
41 | gnomecanvaspixbufConf.sh: gnomecanvaspixbufConf.sh.in Makefile |
---|
42 | ## Use sed and then mv to avoid problems if the user interrupts. |
---|
43 | sed -e 's?\@GNOMECANVASPIXBUF_LIBDIR\@?$(GNOMECANVASPIXBUF_LIBDIR)?g' \ |
---|
44 | -e 's?\@GNOMECANVASPIXBUF_INCLUDEDIR\@?$(GNOMECANVASPIXBUF_INCLUDEDIR)?g' \ |
---|
45 | -e 's?\@VERSION\@?$(VERSION)?g' \ |
---|
46 | -e 's?\@GNOMECANVASPIXBUF_LIBS\@?$(GNOMECANVASPIXBUF_LIBS)?g' \ |
---|
47 | < $(srcdir)/gnomecanvaspixbufConf.sh.in > gnomecanvaspixbufConf.tmp \ |
---|
48 | && mv gnomecanvaspixbufConf.tmp gnomecanvaspixbufConf.sh |
---|