Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  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_CLOVER
  38. SUBDIRS += opencl
  39. endif
  40.  
  41. if HAVE_GALLIUM_SVGA
  42. if HAVE_DRI
  43. SUBDIRS += dri-vmwgfx
  44. endif
  45.  
  46. if HAVE_ST_XA
  47. SUBDIRS += xa-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.  
  62. if HAVE_ST_XORG
  63. SUBDIRS += xorg-i915
  64. endif
  65. endif
  66.  
  67. if HAVE_GALLIUM_ILO
  68. if HAVE_DRI
  69. SUBDIRS += dri-ilo
  70. endif
  71. endif
  72.  
  73. if HAVE_GALLIUM_R300
  74. if HAVE_DRI
  75. SUBDIRS += dri-r300
  76. endif
  77.  
  78. if HAVE_ST_XVMC
  79. SUBDIRS += xvmc-r300
  80. endif
  81.  
  82. if HAVE_ST_VDPAU
  83. SUBDIRS += vdpau-r300
  84. endif
  85. endif
  86.  
  87. if HAVE_GALLIUM_R600
  88. if HAVE_DRI
  89. SUBDIRS += dri-r600
  90. endif
  91.  
  92. if HAVE_ST_XORG
  93. SUBDIRS += xorg-r600
  94. endif
  95.  
  96. if HAVE_ST_XVMC
  97. SUBDIRS += xvmc-r600
  98. endif
  99.  
  100. if HAVE_ST_VDPAU
  101. SUBDIRS += vdpau-r600
  102. endif
  103. endif
  104.  
  105. if HAVE_GALLIUM_RADEONSI
  106. if HAVE_DRI
  107. SUBDIRS += dri-radeonsi
  108. endif
  109.  
  110. if HAVE_ST_XORG
  111. SUBDIRS += xorg-radeonsi
  112. endif
  113.  
  114. if HAVE_ST_VDPAU
  115. SUBDIRS += vdpau-radeonsi
  116. endif
  117. endif
  118.  
  119. if HAVE_GALLIUM_NOUVEAU
  120. if HAVE_DRI
  121. SUBDIRS += dri-nouveau
  122. endif
  123.  
  124. if HAVE_ST_XORG
  125. SUBDIRS += xorg-nouveau
  126. endif
  127.  
  128. if HAVE_ST_XVMC
  129. SUBDIRS += xvmc-nouveau
  130. endif
  131.  
  132. if HAVE_ST_VDPAU
  133. SUBDIRS += vdpau-nouveau
  134. endif
  135. endif
  136.  
  137. if HAVE_GALLIUM_SOFTPIPE
  138. if HAVE_DRI
  139. SUBDIRS += dri-swrast
  140. endif
  141.  
  142. if HAVE_ST_XVMC
  143. SUBDIRS += xvmc-softpipe
  144. endif
  145.  
  146. if HAVE_ST_VDPAU
  147. SUBDIRS += vdpau-softpipe
  148. endif
  149. endif
  150.  
  151. if NEED_GALLIUM_LOADER
  152. SUBDIRS += pipe-loader
  153. endif
  154.  
  155. if HAVE_GALLIUM_EGL
  156. SUBDIRS += egl-static
  157. endif
  158.