mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 20:10:17 +01:00
Unused since removal of demos from the repository? Signed-off-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Brian Paul <brianp@vmware.com>
21 lines
418 B
Text
21 lines
418 B
Text
# Configuration for AIX with gcc
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = aix-gcc
|
|
|
|
# Compiler and flags
|
|
CC = gcc
|
|
CXX = g++
|
|
|
|
CFLAGS = -O2 -DAIXV3
|
|
CXXFLAGS = -O2 -DAIXV3
|
|
|
|
# Work around aliasing bugs - developers should comment this out
|
|
CFLAGS += -fno-strict-aliasing
|
|
CXXFLAGS += -fno-strict-aliasing
|
|
|
|
MKLIB_OPTIONS = -arch aix-gcc
|
|
GL_LIB_DEPS = -lX11 -lXext -lm
|
|
GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
|
|
|