mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 03:10:09 +00:00
68f895bd68
Massive update... gdk-pixbuf-io.c: Fixed to compile and run in a very crippled state. io-bpm.c: Rough start on a WIN/OS2 BMP loader testpixbuf.c: Really crude test program for gdk-pixbuf io-gif.c: Fixed some boneheaded uninitalized variables causing the loader to choke
65 lines
1.1 KiB
Makefile
65 lines
1.1 KiB
Makefile
|
|
lib_LTLIBRARIES = \
|
|
libgdk-pixbuf.la \
|
|
libpixbuf-png.la \
|
|
libpixbuf-jpeg.la \
|
|
libpixbuf-gif.la \
|
|
libpixbuf-xpm.la \
|
|
libpixbuf-tiff.la
|
|
|
|
noinst_PROGRAMS = testpixbuf
|
|
DEPS = libgdk-pixbuf.la
|
|
LDADDS = libgdk-pixbuf.la @GNOME_LIBDIR@ @GNOMEUI_LIBS@
|
|
|
|
testpixbuf_DEPENDENCIES = $(DEPS)
|
|
testpixbuf_LDADD = $(LDADDS)
|
|
testpixbuf_CFLAGS = $(GNOME_INCLUDEDIR)
|
|
|
|
#
|
|
# The GdkPixBuf library
|
|
#
|
|
libgdk_pixbufincludedir = $(includedir)/gdk-pixbuf $(GNOME_INCLUDEDIR)
|
|
|
|
libgdk_pixbuf_la_SOURCES = \
|
|
gdk-pixbuf.c \
|
|
gdk-pixbuf-io.c
|
|
|
|
libgdk_pixbufinclude_HEADERS = \
|
|
gdk-pixbuf.h
|
|
|
|
#
|
|
# The PNG plugin.
|
|
#
|
|
libpixbuf_png_la_SOURCES = \
|
|
io-png.c
|
|
libpixbuf_png_la_LDFLAGS = -avoid-version
|
|
libpixbuf_png_la_LIBADD = -lpng -lz
|
|
|
|
#
|
|
# The JPEG loader
|
|
#
|
|
libpixbuf_jpeg_la_SOURCES = \
|
|
io-jpeg.c
|
|
libpixbuf_jpeg_la_LDFLAGS = -avoid-version
|
|
libpixbuf_jpeg_la_LIBADD = -ljpeg
|
|
|
|
#
|
|
# The XPM loader
|
|
#
|
|
libpixbuf_xpm_la_SOURCES = \
|
|
io-xpm.c
|
|
|
|
#
|
|
# The GIF loader
|
|
#
|
|
libpixbuf_gif_la_SOURCES = \
|
|
io-gif.c
|
|
libpixbuf_gif_la_LDFLAGS = -avoid-version
|
|
libpixbuf_gif_la_LIBADD= -lungif
|
|
|
|
#
|
|
# The TIFF loader
|
|
#
|
|
libpixbuf_tiff_la_SOURCES= \
|
|
io-tiff.c
|