mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
340e710fc3
2006-04-12 Matthias Clasen <mclasen@redhat.com> * contrib/gdk-pixbuf-xlib/Makefile.am: * modules/engines/pixbuf/Makefile.am * gdk-pixbuf/Makefile.am: Build fixes for Cygwin. (#338262)
35 lines
750 B
Makefile
35 lines
750 B
Makefile
if PLATFORM_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
-DGDK_PIXBUF_DISABLE_DEPRECATED \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
LDADDS = \
|
|
$(GTK_DEP_LIBS) \
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \
|
|
$(top_builddir)/gdk/$(gdktargetlib) \
|
|
$(top_builddir)/gtk/$(gtktargetlib)
|
|
|
|
enginedir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/engines
|
|
|
|
engine_LTLIBRARIES = libpixmap.la
|
|
|
|
libpixmap_la_SOURCES = \
|
|
pixbuf-draw.c \
|
|
pixbuf-main.c \
|
|
pixbuf-render.c \
|
|
pixbuf-rc-style.c \
|
|
pixbuf-rc-style.h \
|
|
pixbuf-style.h \
|
|
pixbuf.h
|
|
|
|
libpixmap_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libpixmap_la_LIBADD = $(LDADDS)
|
|
|