1# this is obnoxious:
2# -module lets us name the module exactly how we want
3# -avoid-version prevents gratuitous .0.0.0 version numbers on the end
4# _ladir passes a dummy rpath to libtool so the thing will actually link
5# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
6AM_CFLAGS = @WARN_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ \
7	@PCIACCESS_CFLAGS@
8
9sil164_la_LTLIBRARIES = sil164.la
10sil164_la_LDFLAGS = -module -avoid-version
11sil164_ladir = @moduledir@/drivers
12
13sil164_la_SOURCES = \
14	sil164.c \
15	sil164_module.c \
16	sil164.h \
17	sil164_reg.h
18