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.

ultrix-gcc 535B

1234567891011121314151617181920212223
  1. # Configuration for Ultrix, with gcc
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = ultrix-gcc
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -pedantic -O2
  8. CXXFLAGS = -pedantic -O2
  9. MKLIB_OPTIONS = -static
  10. # Work around aliasing bugs - developers should comment this out
  11. CFLAGS += -fno-strict-aliasing
  12. CXXFLAGS += -fno-strict-aliasing
  13. GL_LIB_NAME = libGL.a
  14. GLU_LIB_NAME = libGLU.a
  15. GLW_LIB_NAME = libGLw.a
  16. OSMESA_LIB_NAME = libOSMesa.a
  17. APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lXmu -lX11 -lXi -lm