Merge branch '7.8'
[mesa.git] / configs / bluegene-xlc-osmesa
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
14 CXXFLAGS = -O3 -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
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