mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 10:40:11 +01:00
Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
23 lines
623 B
Text
23 lines
623 B
Text
# Configuration for Linux with x86 optimizations, static libs
|
|
|
|
include $(TOP)/configs/linux-x86
|
|
|
|
CONFIG_NAME = linux-x86-static
|
|
|
|
MKLIB_OPTIONS = -static
|
|
|
|
# Library names (actual file names)
|
|
GL_LIB_NAME = libGL.a
|
|
GLU_LIB_NAME = libGLU.a
|
|
GLUT_LIB_NAME = libglut.a
|
|
GLW_LIB_NAME = libGLw.a
|
|
OSMESA_LIB_NAME = libOSMesa.a
|
|
|
|
# Library/program dependencies (static libs don't have dependencies)
|
|
GL_LIB_DEPS =
|
|
OSMESA_LIB_DEPS =
|
|
GLU_LIB_DEPS =
|
|
GLUT_LIB_DEPS =
|
|
GLW_LIB_DEPS =
|
|
APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) \
|
|
$(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lpthread -lstdc++ -lm
|