Merge branch 'gallium-polygon-stipple'
[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
30 # Work around aliasing bugs - developers should comment this out
31 CFLAGS += -fno-strict-aliasing
32 CXXFLAGS += -fno-strict-aliasing
33
34 # Library/program dependencies
35 EXTRA_LIB_PATH=-L/usr/openwin/lib
36
37 GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lXmu -lXi -lm
38 APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -lX11 -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm