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 614B

12345678910111213141516171819202122232425262728293031323334
  1. ## Process this file with automake to produce Makefile.in
  2. GLincludedir = $(includedir)/GL
  3. if HAVE_FX
  4. INC_FX = fxmesa.h
  5. endif
  6. if HAVE_GGI
  7. INC_GGI = ggimesa.h
  8. endif
  9. if HAVE_OSMESA
  10. INC_OSMESA = osmesa.h
  11. endif
  12. if HAVE_SVGA
  13. INC_SVGA = svgamesa.h
  14. endif
  15. if HAVE_X11
  16. INC_X11 = glx.h glx_mangle.h xmesa.h xmesa_x.h xmesa_xf86.h
  17. endif
  18. if NEED_GLUT
  19. INC_GLUT = glut.h
  20. endif
  21. EXTRA_DIST = fxmesa.h ggimesa.h osmesa.h svgamesa.h \
  22. glx.h glx_mangle.h xmesa.h xmesa_x.h xmesa_xf86.h
  23. GLinclude_HEADERS = gl.h glext.h gl_mangle.h glu.h glu_mangle.h \
  24. $(INC_FX) $(INC_GGI) $(INC_OSMESA) $(INC_SVGA) $(INC_X11) $(INC_GLUT)