forked from AuroraMiddleware/gtk
6992607bb0
Ok, we'll try this again. io-xpm.c: Fixed. Now actually loads XPMs instead of a big black blob. configure.in : yes, I know it was broken. It wasn't finished quite yet (I always have larger fish to fry) Oh, and if anyone touches this module again without emailing the people in AUTHORS, I will go ballistic (after spending precious time figuring out why this commit never happened the 1st time I tried...)
69 lines
1.3 KiB
Makefile
69 lines
1.3 KiB
Makefile
|
|
lib_LTLIBRARIES = \
|
|
libgdk_pixbuf.la
|
|
|
|
libexecdir = $(libdir)/gdk-pixbuf/loaders
|
|
|
|
libexec_LTLIBRARIES = \
|
|
libpixbuf-png.la \
|
|
libpixbuf-jpeg.la \
|
|
libpixbuf-gif.la \
|
|
libpixbuf-xpm.la \
|
|
libpixbuf-tiff.la
|
|
|
|
noinst_PROGRAMS = testpixbuf
|
|
DEPS = libgdk_pixbuf.la
|
|
INCLUDES = $(GNOME_INCLUDEDIR)
|
|
AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(libexecdir)\""
|
|
LDADDS = libgdk_pixbuf.la @GNOME_LIBDIR@ @GNOMEUI_LIBS@
|
|
|
|
testpixbuf_DEPENDENCIES = $(DEPS)
|
|
testpixbuf_LDADD = $(LDADDS)
|
|
|
|
#
|
|
# The GdkPixBuf library
|
|
#
|
|
libgdk_pixbufincludedir = $(includedir)/gdk-pixbuf
|
|
|
|
libgdk_pixbuf_la_SOURCES = \
|
|
gdk-pixbuf.c \
|
|
gdk-pixbuf-io.c
|
|
|
|
libgdk_pixbufinclude_HEADERS = \
|
|
gdk-pixbuf.h \
|
|
gdk-pixbuf-io.h
|
|
|
|
#
|
|
# The PNG plugin.
|
|
#
|
|
libpixbuf_png_la_SOURCES = io-png.c
|
|
libpixbuf_png_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_png_la_LIBADD = $(LIBPNG)
|
|
|
|
#
|
|
# The JPEG loader
|
|
#
|
|
libpixbuf_jpeg_la_SOURCES = io-jpeg.c
|
|
libpixbuf_jpeg_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_jpeg_la_LIBADD = $(LIBJPEG)
|
|
|
|
#
|
|
# The XPM loader
|
|
#
|
|
libpixbuf_xpm_la_SOURCES = io-xpm.c
|
|
libpixbuf_xpm_la_LDFLAGS = -avoid-version -module
|
|
|
|
#
|
|
# The GIF loader
|
|
#
|
|
libpixbuf_gif_la_SOURCES = io-gif.c
|
|
libpixbuf_gif_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_gif_la_LIBADD = $(LIBGIF)
|
|
|
|
#
|
|
# The TIFF loader
|
|
#
|
|
libpixbuf_tiff_la_SOURCES = io-tiff.c
|
|
libpixbuf_tiff_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_tiff_la_LIBADD = $(LIBTIFF)
|