Makefile.am revision fa225cbc
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
9tfp410_la_LTLIBRARIES = tfp410.la
10tfp410_la_LDFLAGS = -module -avoid-version
11tfp410_ladir = @moduledir@/drivers
12
13tfp410_la_SOURCES = \
14	tfp410.c \
15	tfp410_module.c \
16	tfp410.h \
17	tfp410_reg.h
18