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-osmesa16 764B

12345678910111213141516171819202122232425262728
  1. # Configuration for 16 bits/channel OSMesa library on Linux
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = linux-osmesa16
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DPTHREADS -I/usr/X11R6/include -DCHAN_BITS=16 -DDEFAULT_SOFTWARE_DEPTH_BITS=31
  8. CXXFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
  9. # Library names
  10. OSMESA_LIB = OSMesa16
  11. OSMESA_LIB_NAME = libOSMesa16.so
  12. # Directories
  13. SRC_DIRS = mesa glu
  14. DRIVER_DIRS = osmesa
  15. PROGRAM_DIRS =
  16. # Dependencies
  17. OSMESA_LIB_DEPS = -lm -lpthread
  18. GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(OSMESA_LIB)
  19. APP_LIB_DEPS = -lOSMesa16