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 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-dri3 \
  24. --enable-gallium-tests \
  25. --enable-gbm \
  26. --enable-gles1 \
  27. --enable-gles2 \
  28. --enable-glx-tls \
  29. --enable-va \
  30. --enable-vdpau \
  31. --enable-xa \
  32. --enable-xvmc \
  33. --with-egl-platforms=x11,wayland,drm
  34. ACLOCAL_AMFLAGS = -I m4
  35. EXTRA_DIST = \
  36. autogen.sh \
  37. common.py \
  38. docs \
  39. doxygen \
  40. scons \
  41. SConstruct
  42. noinst_HEADERS = \
  43. include/c99_alloca.h \
  44. include/c99_compat.h \
  45. include/c99_math.h \
  46. include/c99 \
  47. include/c11 \
  48. include/D3D9 \
  49. include/HaikuGL \
  50. include/no_extern_c.h \
  51. include/pci_ids
  52. # We list some directories in EXTRA_DIST, but don't actually want to include
  53. # the .gitignore files in the tarball.
  54. dist-hook:
  55. find $(distdir) -name .gitignore -exec $(RM) {} +