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