Clone of mesa.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Makefile for demo programs for VMS
  2. # contributed by Jouk Jansen joukj@crys.chem.uva.nl
  3. .first
  4. define gl [-.include.gl]
  5. .include [-]mms-config.
  6. ##### MACROS #####
  7. INCDIR = [-.include]
  8. CFLAGS = /include=$(INCDIR)/define=(FBIND=1)
  9. GL_LIBS = [-.lib]libMesaaux/l,libMesatk/l,libMesaGLU/l,libMesaGL/l,$(XLIBS)
  10. LIB_DEP = [-.lib]$(GL_LIB) [-.lib]$(GLU_LIB) [-.lib]$(TK_LIB) [-.lib]$(AUX_LIB)
  11. PROGS = bounce.exe;,gamma.exe;,gears.exe;,glxdemo.exe;,glxpixmap.exe;,\
  12. isosurf.exe;,offset.exe;,osdemo.exe;,spin.exe;,test0.exe;,\
  13. texobj.exe;,xdemo.exe;,reflect.exe;,winpos.exe;
  14. ##### RULES #####
  15. ##### TARGETS #####
  16. default :
  17. mms $(PROGS)
  18. clean :
  19. delete *.obj;*
  20. realclean :
  21. delete $(PROGS)
  22. delete *.obj;*
  23. bounce.exe; : bounce.obj $(LIB_DEP)
  24. link bounce,$(GL_LIBS)
  25. gamma.exe; : gamma.obj $(LIB_DEP)
  26. link gamma,$(GL_LIBS)
  27. gears.exe; : gears.obj $(LIB_DEP)
  28. link gears,$(GL_LIBS)
  29. glxdemo.exe; : glxdemo.obj $(LIB_DEP)
  30. link glxdemo,$(GL_LIBS)
  31. glxpixmap.exe; : glxpixmap.obj $(LIB_DEP)
  32. link glxpixmap,$(GL_LIBS)
  33. isosurf.exe; : isosurf.obj $(LIB_DEP)
  34. link isosurf,$(GL_LIBS)
  35. offset.exe; : offset.obj $(LIB_DEP)
  36. link offset,$(GL_LIBS)
  37. osdemo.exe; : osdemo.obj $(LIB_DEP)
  38. link osdemo,$(GL_LIBS)
  39. spin.exe; : spin.obj $(LIB_DEP)
  40. link spin,$(GL_LIBS)
  41. test0.exe; : test0.obj $(LIB_DEP)
  42. link test0,$(GL_LIBS)
  43. texobj.exe; : texobj.obj $(LIB_DEP)
  44. link texobj,$(GL_LIBS)
  45. xdemo.exe; : xdemo.obj $(LIB_DEP)
  46. link xdemo,$(GL_LIBS)
  47. reflect.exe; : reflect.obj $(LIB_DEP)
  48. link reflect,$(GL_LIBS)
  49. winpos.exe; : winpos.obj $(LIB_DEP)
  50. link winpos,$(GL_LIBS)