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

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