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.

1234567891011121314151617181920212223242526272829303132333435363738
  1. ## Process this file with automake to produce Makefile.in
  2. GLincludedir = $(includedir)/GL
  3. INC_GGI = ggimesa.h
  4. INC_OSMESA = osmesa.h
  5. INC_SVGA = svgamesa.h
  6. INC_X11 = glx.h glxext.h glx_mangle.h
  7. INC_GLUT = glut.h glutf90.h
  8. if HAVE_GGI
  9. sel_inc_ggi = $(INC_GGI)
  10. endif
  11. if HAVE_OSMESA
  12. sel_inc_osmesa = $(INC_OSMESA)
  13. endif
  14. if HAVE_SVGA
  15. sel_inc_svga = $(INC_SVGA)
  16. endif
  17. if HAVE_X11
  18. sel_inc_x11 = $(INC_X11)
  19. endif
  20. if NEED_GLUT
  21. sel_inc_glut = $(INC_GLUT)
  22. endif
  23. EXTRA_HEADERS = amesa.h dosmesa.h foomesa.h glut_h.dja mesa_wgl.h mglmesa.h \
  24. vms_x_fix.h wmesa.h \
  25. $(INC_GGI) $(INC_OSMESA) $(INC_SVGA) $(INC_X11) $(INC_GLUT)
  26. GLinclude_HEADERS = gl.h glext.h gl_mangle.h glu.h glu_mangle.h \
  27. $(sel_inc_ggi) $(sel_inc_osmesa) $(sel_inc_svga) \
  28. $(sel_inc_x11) $(sel_inc_glut)
  29. include $(top_srcdir)/common_rules.make