mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
e0d30ee141
2008-08-12 Michael Natterer <mitch@imendio.com> * configure.in: define -DGDK_PIXBUF_DISABLE_DEPRECATED in the global CFLAGS. * gdk-pixbuf/Makefile.am: make the contents gdk-pixbuf-marshal.h visible for GDK_PIXBUF_COMPILATION. * contrib/gdk-pixbuf-xlib/Makefile.am * demos/Makefile.am * demos/gtk-demo/Makefile.am * gdk-pixbuf/pixops/Makefile.am * gdk/Makefile.am * gdk/x11/Makefile.am * gtk/Makefile.am * gtk/tests/Makefile.am * gtk/theme-bits/Makefile.am * modules/engines/ms-windows/Makefile.am * modules/engines/pixbuf/Makefile.am * modules/input/Makefile.am * perf/Makefile.am * tests/Makefile.am: remove -DDGDK_PIXBUF_DISABLE_DEPRECATED here. svn path=/trunk/; revision=21096
39 lines
744 B
Makefile
39 lines
744 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
SUBDIRS=Theme
|
|
|
|
EXTRA_DIST += Makefile.msc
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
|
|
LDADDS = \
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \
|
|
$(top_builddir)/gdk/$(gdktargetlib) \
|
|
$(top_builddir)/gtk/$(gtktargetlib) \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
enginedir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/engines
|
|
|
|
engine_LTLIBRARIES = libwimp.la
|
|
|
|
libwimp_la_SOURCES = \
|
|
msw_rc_style.c \
|
|
msw_rc_style.h \
|
|
msw_style.c \
|
|
msw_style.h \
|
|
msw_theme_main.c \
|
|
xp_theme.c \
|
|
xp_theme_defs.h \
|
|
xp_theme.h
|
|
|
|
libwimp_la_LDFLAGS = \
|
|
-avoid-version -module -no-undefined -export-dynamic
|
|
|
|
libwimp_la_LIBADD = $(LDADDS) -lgdi32
|