aboutsummaryrefslogtreecommitdiff
path: root/pixman/pixman/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pixman/pixman/makefile')
-rw-r--r--pixman/pixman/makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/pixman/pixman/makefile b/pixman/pixman/makefile
new file mode 100644
index 000000000..f971e5167
--- /dev/null
+++ b/pixman/pixman/makefile
@@ -0,0 +1,46 @@
+LIBRARY = libpixman-1
+
+INCLUDES += $(OBJDIR)
+
+CSRCS = \
+ pixman.c \
+ pixman-access.c \
+ pixman-access-accessors.c \
+ pixman-bits-image.c \
+ pixman-combine32.c \
+ pixman-combine-float.c \
+ pixman-conical-gradient.c \
+ pixman-x86.c \
+ pixman-mips.c \
+ pixman-arm.c \
+ pixman-ppc.c \
+ pixman-edge.c \
+ pixman-edge-accessors.c \
+ pixman-fast-path.c \
+ pixman-glyph.c \
+ pixman-general.c \
+ pixman-gradient-walker.c \
+ pixman-image.c \
+ pixman-implementation.c \
+ pixman-linear-gradient.c \
+ pixman-matrix.c \
+ pixman-noop.c \
+ pixman-radial-gradient.c \
+ pixman-region16.c \
+ pixman-region32.c \
+ pixman-solid-fill.c \
+ pixman-timer.c \
+ pixman-trap.c \
+ pixman-utils.c \
+ $(NULL)
+
+## mmx code
+ifndef IS64
+CSRCS += pixman-mmx.c
+DEFINES+=USE_X86_MMX
+endif
+
+# sse2 code
+CSRCS += pixman-sse2.c
+DEFINES+=USE_SSE2
+