summaryrefslogtreecommitdiff
path: root/GL/mesa/X/Makefile.am
blob: d8abbc6bd952bf1bec7ee6e60171c8ef788303c8 (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 = libX.la

INCLUDES = -I@MESA_SOURCE@/include \
           -I. \
           -I@MESA_SOURCE@/src/mesa/glapi \
           -I@MESA_SOURCE@/src/mesa/main \
           -I@MESA_SOURCE@/src/mesa

# -DXFree86Server is required because the X11 driver in Mesa thinks that
# symbol means "being built in the server"
AM_CFLAGS = \
	$(DIX_CFLAGS) \
	-DXFree86Server \
	@GLX_DEFINES@

XM_SOURCES = \
	xm_api.c \
	xm_buffer.c \
	xm_dd.c \
	xm_image.c \
	xm_line.c \
	xm_span.c \
	xm_tri.c

XM_SOURCES += drivers/common/driverfuncs.c

nodist_libX_la_SOURCES = $(XM_SOURCES)