forked from AuroraMiddleware/gtk
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
33 lines
622 B
Makefile
33 lines
622 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
noinst_LTLIBRARIES = libpixops.la
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) -I$(top_builddir) \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GDK_PIXBUF_DEP_CFLAGS)
|
|
|
|
noinst_PROGRAMS = timescale
|
|
|
|
timescale_SOURCES = timescale.c
|
|
timescale_LDADD = libpixops.la $(GLIB_LIBS) $(GDK_PIXBUF_DEP_LIBS)
|
|
|
|
if USE_MMX
|
|
mmx_sources = \
|
|
have_mmx.S \
|
|
scale_line_22_33_mmx.S \
|
|
composite_line_22_4a4_mmx.S \
|
|
composite_line_color_22_4a4_mmx.S
|
|
endif
|
|
|
|
libpixops_la_SOURCES = \
|
|
pixops.c \
|
|
pixops.h \
|
|
pixops-internal.h \
|
|
$(mmx_sources)
|
|
|
|
EXTRA_DIST += \
|
|
DETAILS \
|
|
pixbuf-transform-math.ltx \
|
|
makefile.msc
|