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.

darwin-static 831B

123456789101112131415161718192021222324
  1. # Configuration for Darwin / MacOS X, making static libs
  2. include $(TOP)/configs/darwin
  3. CONFIG_NAME = darwin-static
  4. # Compiler and flags
  5. CFLAGS = -I/usr/X11R6/include -O3 -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
  6. CXXFLAGS = -I/usr/X11R6/include -O3 -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
  7. MKLIB_OPTIONS = -static
  8. # Library names (actual file names)
  9. GL_LIB_NAME = libGL.a
  10. GLU_LIB_NAME = libGLU.a
  11. GLUT_LIB_NAME = libglut.a
  12. GLW_LIB_NAME = libGLw.a
  13. OSMESA_LIB_NAME = libOSMesa.a
  14. GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lm -lpthread
  15. OSMESA_LIB_DEPS =
  16. GLU_LIB_DEPS =
  17. GLUT_LIB_DEPS =
  18. GLW_LIB_DEPS =
  19. APP_LIB_DEPS = -L$(TOP)/lib -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lm