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.

1234567891011121314151617181920212223
  1. # Configuration for AIX with gcc
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = aix-gcc
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -O2 -DAIXV3
  8. CXXFLAGS = -O2 -DAIXV3
  9. # Work around aliasing bugs - developers should comment this out
  10. CFLAGS += -fno-strict-aliasing
  11. CXXFLAGS += -fno-strict-aliasing
  12. MKLIB_OPTIONS = -arch aix-gcc
  13. GL_LIB_DEPS = -lX11 -lXext -lm
  14. GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
  15. GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lXi -lXmu
  16. APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -Wl,-brtl -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm -lX11 -lXext -lXmu -lXi