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
9fa225cbcSrjstfp410_la_LTLIBRARIES = tfp410.la
10fa225cbcSrjstfp410_la_LDFLAGS = -module -avoid-version
11fa225cbcSrjstfp410_ladir = @moduledir@/drivers
12fa225cbcSrjs
13fa225cbcSrjstfp410_la_SOURCES = \
14fa225cbcSrjs	tfp410.c \
15fa225cbcSrjs	tfp410_module.c \
16fa225cbcSrjs	tfp410.h \
17fa225cbcSrjs	tfp410_reg.h
18