mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
64f06bf079
000-01-11 Jacob Berkman <jacob@helixcode.com> * gdk-pixbuf/pixops/Makefile.am (INCLUDES): added to
23 lines
428 B
Makefile
23 lines
428 B
Makefile
noinst_LTLIBRARIES = libpixops.la
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(LIBART_CFLAGS)
|
|
|
|
bin_PROGRAMS = timescale
|
|
|
|
timescale_SOURCES = timescale.c
|
|
timescale_LDADD = libpixops.la $(GLIB_LIBS) -lm
|
|
|
|
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)
|