forked from AuroraMiddleware/gtk
45e99b52b1
2003-03-02 Tor Lillqvist <tml@iki.fi> * configure.in: Call AC_LIBTOOL_WIN32_DLL. Set OS_WIN32 conditional on Windows. * makefile.cygwin: Remove, unmaintained and obsolete. * Makefile.am (EXTRA_DIST): Remove here, too. * README.win32: Update. pixbuf: 2003-03-02 Tor Lillqvist <tml@iki.fi> * Makefile.am: Use -no-undefined on Windows. metal and redmond95: 2003-03-02 Tor Lillqvist <tml@iki.fi> * Makefile.am: Use -no-undefined, and do use GTK_LIBS on Windows.
26 lines
530 B
Makefile
26 lines
530 B
Makefile
if OS_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
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 $(no_undefined)
|
|
libpixmap_la_LIBADD = $(GTK_LIBS)
|
|
|
|
dist-hook:
|
|
cp -pr examples $(distdir); \
|
|
find $(distdir)/examples -name 'CVS' -print | xargs rm -rf
|