1noinst_LTLIBRARIES = libxf86config.la
2
3INTERNAL_SOURCES= \
4	Device.c \
5	Files.c \
6	Flags.c \
7	Input.c \
8	InputClass.c \
9	OutputClass.c \
10	Layout.c \
11	Module.c \
12	Video.c \
13	Monitor.c \
14	Pointer.c \
15	Screen.c \
16	Vendor.c \
17	read.c \
18	scan.c \
19	write.c \
20	DRI.c \
21	Extensions.c
22
23libxf86config_la_SOURCES = \
24	$(INTERNAL_SOURCES)
25
26AM_CFLAGS = $(DIX_CFLAGS) $(XORG_CFLAGS) \
27	-DDATADIR=\"$(datadir)\"
28
29EXTRA_DIST = \
30	Configint.h \
31	configProcs.h \
32	xf86Optrec.h \
33	xf86Parser.h \
34	xf86tokens.h
35
36sdk_HEADERS = \
37	xf86Parser.h \
38	xf86Optrec.h
39
40AM_CPPFLAGS = -I$(srcdir)/../common
41