mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-20 18:38:08 +02:00
43 lines
724 B
Makefile
43 lines
724 B
Makefile
noinst_LTLIBRARIES = libpixman.la
|
|
|
|
libpixman_la_SOURCES = \
|
|
pixman.h \
|
|
pixman-remap.h \
|
|
pixman-xserver-compat.h \
|
|
pixregion.c \
|
|
pixregionint.h \
|
|
fbpict.h \
|
|
fbpict.c \
|
|
icblt.c \
|
|
icbltone.c \
|
|
iccolor.c \
|
|
icformat.c \
|
|
icimage.c \
|
|
icimage.h \
|
|
icint.h \
|
|
icpixels.c \
|
|
icrect.c \
|
|
icrop.h \
|
|
icstipple.c \
|
|
ictrap.c \
|
|
ictransform.c \
|
|
ictri.c \
|
|
icutil.c \
|
|
fbedge.c \
|
|
fbedgeimp.h \
|
|
fbtrap.c \
|
|
fbcompose.c \
|
|
renderedge.c \
|
|
renderedge.h \
|
|
slim_internal.h
|
|
|
|
if USE_MMX
|
|
noinst_LTLIBRARIES += libpixman-mmx.la
|
|
libpixman_mmx_la_SOURCES = \
|
|
fbmmx.c \
|
|
fbmmx.h
|
|
libpixman_mmx_la_CFLAGS = @MMX_CFLAGS@ $(WARN_CFLAGS)
|
|
libpixman_la_LIBADD = libpixman-mmx.la
|
|
endif
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(srcdir) @WARN_CFLAGS@
|