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 9ivch_la_LTLIBRARIES = ivch.la 10ivch_la_LDFLAGS = -module -avoid-version 11ivch_ladir = @moduledir@/drivers 12 13ivch_la_SOURCES = \ 14 ivch.c \ 15 ivch_module.c \ 16 ivch_reg.h 17