randr12: try and bring over most of the randr12 code into master
[nouveau] / src / Makefile.am
1 #  Copyright 2005 Adam Jackson.
2 #
3 #  Permission is hereby granted, free of charge, to any person obtaining a
4 #  copy of this software and associated documentation files (the "Software"),
5 #  to deal in the Software without restriction, including without limitation
6 #  on the rights to use, copy, modify, merge, publish, distribute, sub
7 #  license, and/or sell copies of the Software, and to permit persons to whom
8 #  the Software is furnished to do so, subject to the following conditions:
9 #
10 #  The above copyright notice and this permission notice (including the next
11 #  paragraph) shall be included in all copies or substantial portions of the
12 #  Software.
13 #
14 #  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 #  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 #  FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
17 #  ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18 #  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21 # this is obnoxious:
22 # -module lets us name the module exactly how we want
23 # -avoid-version prevents gratuitous .0.0.0 version numbers on the end
24 # _ladir passes a dummy rpath to libtool so the thing will actually link
25 # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
26 AM_CFLAGS = @XORG_CFLAGS@
27 nouveau_drv_la_LTLIBRARIES = nouveau_drv.la
28 nouveau_drv_la_LDFLAGS = -module -avoid-version
29 nouveau_drv_ladir = @moduledir@/drivers
30
31 nouveau_drv_la_SOURCES = \
32          nv_accel_common.c \
33          nv_bios.c \
34          nv_const.h \
35          nv_cursor.c \
36          nv_dac.c \
37          nv_dma.c \
38          nv_dma.h \
39          nv_dri.c \
40          nv_dri.h \
41          nv_exa.c \
42          nv_driver.c \
43          nv_hw.c \
44          nv_include.h \
45          nouveau_reg.h \
46          nv_dripriv.h \
47          nv_local.h \
48          nv_mem.c \
49          nv_notifier.c \
50          nv_proto.h \
51          nvreg.h \
52          nv_setup.c \
53          nv_shadow.c \
54          nv_type.h \
55          nv_video.c \
56          nv_xaa.c \
57          nv30_exa.c \
58          nv_crtc.c \
59          nv_output.c \
60          nv_i2c.c
61
62 #riva128_la_LTLIBRARIES = riva128.la
63 #riva128_la_LDFLAGS = -module -avoid-version
64 #riva128_ladir = @moduledir@/drivers
65
66 #riva128_la_SOURCES = \
67 #         riva_const.h \
68 #         riva_cursor.c \
69 #         riva_dac.c \
70 #         riva_dga.c \
71 #         riva_driver.c \
72 #         riva_hw.c \
73 #         riva_hw.h \
74 #         riva_include.h \
75 #         riva_local.h \
76 #         riva_proto.h \
77 #         riva_setup.c \
78 #         riva_shadow.c \
79 #         riva_tbl.h \
80 #         riva_type.h \
81 #         riva_xaa.c