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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. AUTOMAKE_OPTIONS = subdir-objects
  2. SUBDIRS = . galahad identity noop trace rbug
  3. ################################################################################
  4. if HAVE_GALLIUM_R600
  5. SUBDIRS += radeon
  6. else
  7. if HAVE_GALLIUM_RADEONSI
  8. SUBDIRS += radeon
  9. endif
  10. endif
  11. ################################################################################
  12. if HAVE_GALLIUM_FREEDRENO
  13. SUBDIRS += freedreno
  14. endif
  15. ################################################################################
  16. if HAVE_GALLIUM_I915
  17. SUBDIRS += i915
  18. endif
  19. ################################################################################
  20. if HAVE_GALLIUM_ILO
  21. SUBDIRS += ilo
  22. endif
  23. ################################################################################
  24. if HAVE_GALLIUM_NOUVEAU
  25. SUBDIRS += nouveau
  26. endif
  27. ################################################################################
  28. if HAVE_GALLIUM_SVGA
  29. SUBDIRS += svga
  30. endif
  31. ################################################################################
  32. if HAVE_GALLIUM_R300
  33. SUBDIRS += r300
  34. endif
  35. ################################################################################
  36. if HAVE_GALLIUM_R600
  37. SUBDIRS += r600
  38. endif
  39. ################################################################################
  40. if HAVE_GALLIUM_RADEONSI
  41. SUBDIRS += radeonsi
  42. endif
  43. ################################################################################
  44. if NEED_GALLIUM_SOFTPIPE_DRIVER
  45. SUBDIRS += softpipe
  46. endif
  47. ################################################################################
  48. if NEED_GALLIUM_LLVMPIPE_DRIVER
  49. SUBDIRS += llvmpipe
  50. endif