forked from AuroraMiddleware/gtk
d8efdf0024
Sun Sep 29 14:22:47 2002 Manish Singh <yosh@gimp.org> * contrib/gdk-pixbuf-xlib/Makefile.am demos/Makefile.am demos/gtk-demo/Makefile.am: add deprecation compile flags * demos/testanimation.c demos/testpixbuf-save.c demos/testpixbuf.c demos/gtk-demo/*.c gdk-pixbuf/gdk-pixbuf-animation.c gdk-pixbuf/gdk-pixbuf.c: minor cleanups, getting rid of unnecessary casts
36 lines
1014 B
Makefile
36 lines
1014 B
Makefile
lib_LTLIBRARIES=libgdk_pixbuf_xlib-2.0.la
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) -I$(top_builddir) \
|
|
-I$(top_srcdir)/gdk-pixbuf \
|
|
-I$(top_srcdir)/contrib \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DGDK_PIXBUF_DISABLE_DEPRECATED \
|
|
@GDK_PIXBUF_XLIB_DEP_CFLAGS@ \
|
|
@STRIP_END@
|
|
|
|
libgdk_pixbuf_xlib_2_0_la_LDFLAGS = \
|
|
-export-dynamic \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
|
|
libgdk_pixbuf_xlib_2_0_la_LIBADD = \
|
|
@GDK_PIXBUF_XLIB_DEP_LIBS@
|
|
|
|
libgdk_pixbuf_xlib_2_0_la_SOURCES = \
|
|
gdk-pixbuf-xlib-private.h \
|
|
gdk-pixbuf-xlib.c \
|
|
gdk-pixbuf-xlib-render.c \
|
|
gdk-pixbuf-xlib-drawable.c \
|
|
gdk-pixbuf-xlibrgb.c
|
|
|
|
libgdk_pixbuf_xlibincludedir=$(includedir)/gtk-2.0/gdk-pixbuf-xlib
|
|
|
|
libgdk_pixbuf_xlibinclude_HEADERS = \
|
|
gdk-pixbuf-xlib.h \
|
|
gdk-pixbuf-xlibrgb.h
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = gdk-pixbuf-xlib-2.0.pc
|
|
|
|
EXTRA_DIST = gdk-pixbuf-xlib-2.0.pc.in
|