mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-18 09:00:34 +00:00
d18953ca2b
2007-07-04 Tor Lillqvist <tml@novell.com> * pixops/Makefile.am (timescale_LDADD): Use GDK_PIXBUF_DEP_LIBS instead of GDK_PIXBUF_EXTRA_LIBS here, too. svn path=/trunk/; revision=18381
32 lines
620 B
Makefile
32 lines
620 B
Makefile
noinst_LTLIBRARIES = libpixops.la
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) -I$(top_builddir) \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GDK_PIXBUF_DEP_CFLAGS) \
|
|
-DGDK_PIXBUF_DISABLE_DEPRECATED
|
|
|
|
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
|