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.

linux-debug 834B

12345678910111213141516171819202122
  1. # Configuration for debugging on Linux
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = linux-debug
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -g -ansi -pedantic -Wall -Wmissing-prototypes -Wundef -fPIC -ffast-math -D_POSIX_SOURCE -D_SVID_SOURCE -D_BSD_SOURCE -I/usr/X11R6/include -DUSE_XSHM -DPTHREADS -DDEBUG -DMESA_DEBUG
  8. CXXFLAGS = -g -ansi -pedantic -Wall -Wmissing-prototypes -Wundef -fPIC -ffast-math -D_POSIX_SOURCE -D_SVID_SOURCE -D_BSD_SOURCE -DDEBUG -DMESA_DEBUG
  9. GLUT_CFLAGS = -fexceptions
  10. GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lm -lpthread
  11. OSMESA_LIB_DEPS = -L$(LIB_DIR) -lGL
  12. GLU_LIB_DEPS = -L$(LIB_DIR) -lGL -lm
  13. GLUT_LIB_DEPS = -L$(LIB_DIR) -lGLU -lGL -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lm
  14. GLW_LIB_DEPS = -L$(LIB_DIR) -lGL -lXt -L/usr/X11R6/lib -lX11
  15. APP_LIB_DEPS = -L$(LIB_DIR) -lglut -lGLU -lGL -lm