blob: 02c69e6c67e946707568830574bb09e7fe0afc8b [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
Brian23f71f22007-08-03 10:08:39 -060018OSMESA_LIB_NAME = libOSMesa.a
19
Brian2457f4c2007-08-02 14:22:02 -060020# Directories
21SRC_DIRS = mesa glu
22DRIVER_DIRS = osmesa
23PROGRAM_DIRS = osdemos
24
25
26# Dependencies
27OSMESA_LIB_DEPS = -lm
28GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(OSMESA_LIB)
Brian00294292007-08-03 07:24:11 -060029APP_LIB_DEPS = -lOSMesa -lGLU -lm