Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.am 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # Copyright © 2012 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, EXPRESS OR
  15. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  20. # IN THE SOFTWARE.
  21. SUBDIRS = src
  22. AM_DISTCHECK_CONFIGURE_FLAGS = \
  23. --enable-dri \
  24. --enable-dri3 \
  25. --enable-egl \
  26. --enable-gallium-tests \
  27. --enable-gallium-osmesa \
  28. --enable-gallium-llvm \
  29. --enable-gbm \
  30. --enable-gles1 \
  31. --enable-gles2 \
  32. --enable-glx \
  33. --enable-glx-tls \
  34. --enable-nine \
  35. --enable-opencl \
  36. --enable-opengl \
  37. --enable-va \
  38. --enable-vdpau \
  39. --enable-xa \
  40. --enable-xvmc \
  41. --disable-llvm-shared-libs \
  42. --with-egl-platforms=x11,wayland,drm,surfaceless \
  43. --with-dri-drivers=i915,i965,nouveau,radeon,r200,swrast \
  44. --with-gallium-drivers=i915,ilo,nouveau,r300,r600,radeonsi,freedreno,svga,swrast,vc4,virgl,swr \
  45. --with-vulkan-drivers=intel
  46. ACLOCAL_AMFLAGS = -I m4
  47. EXTRA_DIST = \
  48. autogen.sh \
  49. common.py \
  50. docs \
  51. doxygen \
  52. scons \
  53. SConstruct
  54. noinst_HEADERS = \
  55. include/c99_alloca.h \
  56. include/c99_compat.h \
  57. include/c99_math.h \
  58. include/c11 \
  59. include/D3D9 \
  60. include/HaikuGL \
  61. include/no_extern_c.h \
  62. include/pci_ids
  63. # We list some directories in EXTRA_DIST, but don't actually want to include
  64. # the .gitignore files in the tarball.
  65. dist-hook:
  66. find $(distdir) -name .gitignore -exec $(RM) {} +