mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-28 20:54:00 +08:00
31 lines
944 B
Plaintext
31 lines
944 B
Plaintext
# Configuration for Linux for 64-bit X86 (Opteron)
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = linux-x86-64
|
|
|
|
# Compiler and flags
|
|
CC = gcc
|
|
CXX = g++
|
|
|
|
CFLAGS = -m64 -Wall -O3 -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -DPTHREADS -I/usr/X11R6/include
|
|
|
|
CXXFLAGS = -m64 -Wall -O3 -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
|
|
|
|
GLUT_CFLAGS = -fexceptions
|
|
|
|
|
|
ASM_SOURCES = $(X86_SOURCES)
|
|
|
|
|
|
LIB_DIR = $(TOP)/lib64
|
|
|
|
|
|
# Library/program dependencies
|
|
GL_LIB_DEPS = -L/usr/X11R6/lib64 -lX11 -lXext -lm -lpthread
|
|
OSMESA_LIB_DEPS = -L$(LIB_DIR) -lGL
|
|
GLU_LIB_DEPS = -L$(LIB_DIR) -lGL -lm
|
|
GLUT_LIB_DEPS = -L$(LIB_DIR) -lGLU -lGL -L/usr/X11R6/lib64 -lX11 -lXmu -lXt -lXi -lm
|
|
GLW_LIB_DEPS = -L$(LIB_DIR) -lGL -L/usr/X11R6/lib64 -lXt -lXm -lX11
|
|
APP_LIB_DEPS = -L$(LIB_DIR) -lglut -lGLU -lGL -lm
|