Brian | 58484dc | 2007-09-20 15:09:57 -0600 | [diff] [blame] | 1 | # Configuration for building only libOSMesa on BlueGene using the IBM xlc compiler |
| 2 | # This doesn't really have a lot of dependencies, so it should be usable |
| 3 | # on similar systems too. |
| 4 | # It uses static linking and disables multithreading. |
| 5 | |
| 6 | include $(TOP)/configs/default |
| 7 | |
| 8 | CONFIG_NAME = bluegene-osmesa |
| 9 | |
| 10 | # Compiler and flags |
| 11 | CC = /opt/ibmcmp/vacpp/bg/8.0/bin/blrts_xlc |
| 12 | CXX = /opt/ibmcmp/vacpp/bg/8.0/bin/blrts_xlC |
| 13 | CFLAGS = -O3 -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE |
Brian | 6016de6 | 2007-09-20 18:42:47 -0600 | [diff] [blame] | 14 | CXXFLAGS = -O3 -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE |
Brian | 58484dc | 2007-09-20 15:09:57 -0600 | [diff] [blame] | 15 | |
| 16 | MKLIB_OPTIONS = -static |
| 17 | |
| 18 | OSMESA_LIB_NAME = libOSMesa.a |
| 19 | |
| 20 | # Directories |
| 21 | SRC_DIRS = mesa glu |
| 22 | DRIVER_DIRS = osmesa |
| 23 | PROGRAM_DIRS = osdemos |
| 24 | |
| 25 | |
| 26 | # Dependencies |
| 27 | OSMESA_LIB_DEPS = -lm |
| 28 | GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(OSMESA_LIB) |
| 29 | APP_LIB_DEPS = -lOSMesa -lGLU -lm |