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

12345678910111213141516171819202122232425262728
  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. # Work around aliasing bugs - developers should comment this out
  9. CFLAGS += -fno-strict-aliasing
  10. CXXFLAGS += -fno-strict-aliasing
  11. # Library names (actual file names)
  12. GL_LIB_NAME = libGL.a
  13. GLU_LIB_NAME = libGLU.a
  14. GLUT_LIB_NAME = libglut.a
  15. GLW_LIB_NAME = libGLw.a
  16. OSMESA_LIB_NAME = libOSMesa.a
  17. GL_LIB_DEPS =
  18. OSMESA_LIB_DEPS =
  19. GLU_LIB_DEPS =
  20. GLUT_LIB_DEPS =
  21. GLW_LIB_DEPS =
  22. APP_LIB_DEPS = -Wl,-search_paths_first -L$(TOP)/lib -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lstdc++ -lgcc_s.1 -lm