blob: 0c2a9bfa21ef2aabf1532d84f6ab0f28c2428faf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
noinst_LTLIBRARIES = libpixops.la
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/gdk-pixbuf
noinst_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)
EXTRA_DIST = \
DETAILS \
makefile.mingw \
makefile.mingw.in
|