mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 04:31:09 +00:00
23 lines
407 B
Makefile
23 lines
407 B
Makefile
|
noinst_LTLIBRARIES = libpixops.la
|
||
|
|
||
|
INCLUDES = $(GLIB_CFLAGS)
|
||
|
|
||
|
bin_PROGRAMS = timescale
|
||
|
|
||
|
timescale_SOURCES = timescale.c
|
||
|
timescale_LDADD = libpixops.la $(GLIB_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)
|