mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
9d16a01cfb
2002-03-07 James Henstridge <james@daa.com.au> * Makefile.am (libpixmap_la_LIBADD): link pixbuf engine against the gtk+ libraries, so that it can be used with programs that dlopen gtk+ without the RTLD_GLOBAL flag (such as scripting languages and mozilla).
22 lines
466 B
Makefile
22 lines
466 B
Makefile
INCLUDES = $(GTK_CFLAGS)
|
|
|
|
enginedir = $(libdir)/gtk-2.0/$(GTK_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
|
|
libpixmap_la_LIBADD = $(GTK_LIBS)
|
|
|
|
dist-hook:
|
|
cp -pr examples $(distdir); \
|
|
find $(distdir)/examples -name 'CVS' -print | xargs rm -rf
|