1 # $NetBSD: Makefile,v 1.2 2008/08/02 11:38:05 rtr Exp $ 2 3 NOLINT= 1 # defined 4 5 .include <bsd.own.mk> 6 7 LIB= pixman-1 8 9 DIST= ${X11SRCDIR.pixman}/pixman 10 .PATH: ${DIST} ${DIST}/../../combine 11 12 SRCS= pixman-access.c pixman-region16.c pixman-access-accessors.c \ 13 pixman-region32.c pixman-image.c pixman-combine32.c \ 14 pixman-combine64.c pixman-compose.c pixman-compose-accessors.c \ 15 pixman-pict.c pixman-source.c pixman-transformed.c pixman-utils.c \ 16 pixman-transformed-accessors.c pixman-edge.c \ 17 pixman-edge-accessors.c pixman-trap.c pixman-compute-region.c \ 18 pixman-timer.c 19 20 # XXX 21 22 # .if MMX 23 # SRCS+= pixman-mmx.c 24 # .endif 25 26 # .if VMX 27 # SRCS+= pixman-vmx.c 28 # .endif 29 30 # .if SSE 31 # SRCS+= pixman-sse.c 32 # .endif 33 34 INCS= pixman.h pixman-version.h 35 INCSDIR=${X11INCDIR}/pixman-1 36 37 CPPFLAGS+= -DPIXMAN_DISABLE_DEPRECATED -DHAVE_CONFIG_H \ 38 -I${X11SRCDIR.pixman}/../include \ 39 -I${X11SRCDIR.pixman}/../combine \ 40 -I${X11SRCDIR.pixman}/pixman 41 42 .include <bsd.x11.mk> 43 .include <bsd.lib.mk> 44