blob: 427673d32f9d22bdc9e21152c4e99366462eec86 [file] [log] [blame]
Brian2457f4c2007-08-02 14:22:02 -06001# Configuration for building only libOSMesa on BlueGene, no Xlib driver
2# This doesn't really have a lot of dependencies, so it should be usable
3# on other (gcc-based) systems too.
4# It uses static linking and disables multithreading.
5
6include $(TOP)/configs/default
7
8CONFIG_NAME = bluegene-osmesa
9
10# Compiler and flags
11CC = /bgl/BlueLight/ppcfloor/blrts-gnu/bin/powerpc-bgl-blrts-gnu-gcc
12CXX = /bgl/BlueLight/ppcfloor/blrts-gnu/bin/powerpc-bgl-blrts-gnu-g++
13CFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
14CXXFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURC
15
16MKLIB_OPTIONS = -static
17
18# Directories
19SRC_DIRS = mesa glu
20DRIVER_DIRS = osmesa
21PROGRAM_DIRS = osdemos
22
23
24# Dependencies
25OSMESA_LIB_DEPS = -lm
26GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(OSMESA_LIB)
27APP_LIB_DEPS = -lOSMesa -lGLU