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 9fa225cbcSrjsivch_la_LTLIBRARIES = ivch.la 10fa225cbcSrjsivch_la_LDFLAGS = -module -avoid-version 11fa225cbcSrjsivch_ladir = @moduledir@/drivers 12fa225cbcSrjs 13fa225cbcSrjsivch_la_SOURCES = \ 14fa225cbcSrjs ivch.c \ 15fa225cbcSrjs ivch_module.c \ 16fa225cbcSrjs ivch_reg.h 17