Merge commit 'origin/gallium-master-merge'
[mesa.git] / configs / sunos5-gcc
1 # Configuration for SunOS 5, with gcc
2
3 include $(TOP)/configs/default
4
5 CONFIG_NAME = sunos5-gcc
6
7 # Compiler and flags
8 CC = gcc
9 CXX = g++
10
11 WARN_FLAGS = -Wall
12 OPT_FLAGS = -O3 -g -fomit-frame-pointer -pipe
13 PIC_FLAGS = -fPIC
14
15 ARCH_FLAGS ?=
16
17 DEFINES = -D_REENTRANT -DUSE_XSHM
18
19 MESA_ASM_SOURCES = $(SPARC_SOURCES)
20 GLAPI_ASM_SOURCES = $(SPARC_API)
21 ASM_FLAGS = -DUSE_SPARC_ASM
22
23 CFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) \
24 $(ASM_FLAGS) -std=c99 -ffast-math -I/usr/openwin/include
25
26 CXXFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) \
27 -I/usr/openwin/include
28
29 GLUT_CFLAGS = -fexceptions -DSOLARIS_2_4_BUG
30
31 # Work around aliasing bugs - developers should comment this out
32 CFLAGS += -fno-strict-aliasing
33 CXXFLAGS += -fno-strict-aliasing
34
35 # Library/program dependencies
36 EXTRA_LIB_PATH=-L/usr/openwin/lib
37
38 GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lXmu -lXi -lm
39 GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lm
40 APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -lX11 -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm