freedreno/a3xx: fix MAX_INPUTS shader cap
[mesa.git] / src / gallium / targets / Makefile.am
1 # Copyright © 2013 Intel Corporation
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 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 # and/or sell copies of the Software, and to permit persons to whom the
8 # 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,
15 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
18 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 # DEALINGS IN THE SOFTWARE.
22
23 SUBDIRS =
24
25 if HAVE_X11_DRIVER
26 SUBDIRS += libgl-xlib
27 endif
28
29 if HAVE_GALLIUM_OSMESA
30 SUBDIRS += osmesa
31 endif
32
33 if HAVE_GALLIUM_GBM
34 SUBDIRS += gbm
35 endif
36
37 if HAVE_ST_XA
38 SUBDIRS += xa
39 endif
40
41 if HAVE_CLOVER
42 SUBDIRS += opencl
43 endif
44
45 if HAVE_GALLIUM_SVGA
46 if HAVE_DRI
47 SUBDIRS += dri-vmwgfx
48 endif
49 endif
50
51 if HAVE_GALLIUM_FREEDRENO
52 if HAVE_DRI
53 SUBDIRS += dri-freedreno
54 endif
55 endif
56
57 if HAVE_GALLIUM_I915
58 if HAVE_DRI
59 SUBDIRS += dri-i915
60 endif
61 endif
62
63 if HAVE_GALLIUM_ILO
64 if HAVE_DRI
65 SUBDIRS += dri-ilo
66 endif
67 endif
68
69 if HAVE_GALLIUM_R300
70 if HAVE_DRI
71 SUBDIRS += r300/dri
72 endif
73 endif
74
75 if HAVE_GALLIUM_R600
76 if HAVE_DRI
77 SUBDIRS += r600/dri
78 endif
79
80 if HAVE_ST_XVMC
81 SUBDIRS += r600/xvmc
82 endif
83
84 if HAVE_ST_VDPAU
85 SUBDIRS += r600/vdpau
86 endif
87
88 if HAVE_ST_OMX
89 SUBDIRS += r600/omx
90 endif
91 endif
92
93 if HAVE_GALLIUM_RADEONSI
94 if HAVE_DRI
95 SUBDIRS += radeonsi/dri
96 endif
97
98 if HAVE_ST_VDPAU
99 SUBDIRS += radeonsi/vdpau
100 endif
101
102 if HAVE_ST_OMX
103 SUBDIRS += radeonsi/omx
104 endif
105 endif
106
107 if HAVE_GALLIUM_NOUVEAU
108 if HAVE_DRI
109 SUBDIRS += dri-nouveau
110 endif
111
112 if HAVE_ST_XVMC
113 SUBDIRS += xvmc-nouveau
114 endif
115
116 if HAVE_ST_VDPAU
117 SUBDIRS += vdpau-nouveau
118 endif
119
120 if HAVE_ST_OMX
121 SUBDIRS += omx-nouveau
122 endif
123 endif
124
125 if HAVE_GALLIUM_SOFTPIPE
126 if HAVE_DRI
127 SUBDIRS += dri-swrast
128 endif
129 endif
130
131 if NEED_GALLIUM_LOADER
132 SUBDIRS += pipe-loader
133 endif
134
135 if HAVE_GALLIUM_EGL
136 SUBDIRS += egl-static
137 endif