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 9fa225cbcSrjsch7017_la_LTLIBRARIES = ch7017.la 10fa225cbcSrjsch7017_la_LDFLAGS = -module -avoid-version 11fa225cbcSrjsch7017_ladir = @moduledir@/drivers 12fa225cbcSrjs 13fa225cbcSrjsch7017_la_SOURCES = \ 14fa225cbcSrjs ch7017.c \ 15fa225cbcSrjs ch7017_module.c \ 16fa225cbcSrjs ch7017_reg.h 17