mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2025-09-01 02:10:49 +00:00
40 lines
945 B
Makefile
40 lines
945 B
Makefile
lib_LTLIBRARIES = libpixman-1.la
|
|
libpixman_1_la_LDFLAGS = -version-info $(LT_VERSION_INFO)
|
|
libpixman_1_la_LIBADD = @DEP_LIBS@ -lm libpixmanwrapper.la
|
|
libpixman_1_la_SOURCES = \
|
|
pixman.h \
|
|
pixman-region.c \
|
|
pixman-private.h \
|
|
pixman-image.c \
|
|
pixman-compose.c \
|
|
pixman-pict.c \
|
|
pixman-utils.c \
|
|
pixman-edge.c \
|
|
pixman-edge-imp.h \
|
|
pixman-trap.c \
|
|
pixman-compute-region.c \
|
|
pixman-timer.c
|
|
|
|
libpixmanincludedir = $(includedir)/pixman-1/
|
|
libpixmaninclude_HEADERS = pixman.h
|
|
|
|
# wrapper library
|
|
noinst_LTLIBRARIES = libpixmanwrapper.la
|
|
libpixmanwrapper_la_SOURCES = \
|
|
pixman-compose.c \
|
|
pixman-edge.c
|
|
libpixmanwrapper_la_CFLAGS = $(DEP_CFLAGS) -DPIXMAN_FB_ACCESSORS
|
|
|
|
|
|
|
|
# mmx code
|
|
if USE_MMX
|
|
noinst_LTLIBRARIES += libpixman-mmx.la
|
|
libpixman_mmx_la_SOURCES = \
|
|
pixman-mmx.c \
|
|
pixman-mmx.h
|
|
libpixman_mmx_la_CFLAGS = $(DEP_CFLAGS) $(MMX_CFLAGS)
|
|
libpixman_mmx_la_LIBADD = $(DEP_LIBS)
|
|
libpixman_1_la_LIBADD += libpixman-mmx.la
|
|
endif
|