1noinst_LTLIBRARIES = libexa.la
2
3# Override these since EXA doesn't need them and the needed files aren't
4# built (in hw/xfree86/os-support/solaris) until after EXA is built
5SOLARIS_ASM_CFLAGS=""
6
7if XORG
8sdk_HEADERS = exa.h
9endif
10
11INCLUDES = \
12	$(XORG_INCS) \
13	-I$(srcdir)/../miext/cw
14
15AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS)
16
17libexa_la_SOURCES = \
18	exa.c \
19	exa.h \
20	exa_classic.c \
21	exa_migration_classic.c \
22	exa_driver.c \
23	exa_mixed.c \
24	exa_migration_mixed.c \
25	exa_accel.c \
26	exa_glyphs.c \
27	exa_offscreen.c \
28	exa_render.c \
29	exa_priv.h \
30	exa_unaccel.c
31