mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-26 20:00:32 +01:00
106 lines
2.6 KiB
Text
106 lines
2.6 KiB
Text
# Default/template configuration
|
|
|
|
# This is included by other config files which may override some
|
|
# of these variables.
|
|
# Think of this as a base class from which configs are derived.
|
|
|
|
|
|
CONFIG_NAME = default
|
|
|
|
# Version info
|
|
MESA_MAJOR=7
|
|
MESA_MINOR=1
|
|
MESA_TINY=0
|
|
|
|
# external projects. This should be useless now that we use libdrm.
|
|
DRM_SOURCE_PATH=$(TOP)/../drm
|
|
|
|
# Compiler and flags
|
|
CC = cc
|
|
CXX = CC
|
|
CFLAGS = -O
|
|
CXXFLAGS = -O
|
|
GLU_CFLAGS =
|
|
|
|
# Misc tools and flags
|
|
MKLIB_OPTIONS =
|
|
MKDEP = makedepend
|
|
MKDEP_OPTIONS = -fdepend
|
|
MAKE = make
|
|
INSTALL = $(TOP)/bin/minstall
|
|
|
|
# Python and flags (generally only needed by the developers)
|
|
PYTHON2 = python
|
|
PYTHON_FLAGS = -t -O -O
|
|
|
|
# Library names (base name)
|
|
GL_LIB = GL
|
|
GLU_LIB = GLU
|
|
GLUT_LIB = glut
|
|
GLW_LIB = GLw
|
|
OSMESA_LIB = OSMesa
|
|
|
|
|
|
# Library names (actual file names)
|
|
GL_LIB_NAME = lib$(GL_LIB).so
|
|
GLU_LIB_NAME = lib$(GLU_LIB).so
|
|
GLUT_LIB_NAME = lib$(GLUT_LIB).so
|
|
GLW_LIB_NAME = lib$(GLW_LIB).so
|
|
OSMESA_LIB_NAME = lib$(OSMESA_LIB).so
|
|
|
|
|
|
# Optional assembly language optimization files for libGL
|
|
ASM_SOURCES =
|
|
|
|
# GLw widget sources (Append "GLwMDrawA.c" here and add -lXm to GLW_LIB_DEPS in
|
|
# order to build the Motif widget too)
|
|
GLW_SOURCES = GLwDrawA.c
|
|
|
|
|
|
# Directories to build
|
|
LIB_DIR = lib
|
|
SRC_DIRS = mesa glu glut/glx glw
|
|
GLU_DIRS = sgi
|
|
DRIVER_DIRS = x11 osmesa
|
|
# Which subdirs under $(TOP)/progs/ to enter:
|
|
PROGRAM_DIRS = demos redbook samples glsl xdemos
|
|
|
|
LLVM_VERSION := $(shell llvm-config --version)
|
|
|
|
ifeq ($(LLVM_VERSION),)
|
|
$(warning Could not find LLVM! Make Sure 'llvm-config' is in the path)
|
|
MESA_NO_LLVM=1
|
|
else
|
|
MESA_NO_LLVM=0
|
|
$(info Using LLVM version: $(LLVM_VERSION))
|
|
endif
|
|
|
|
ifeq ($(MESA_NO_LLVM),0)
|
|
# LLVM_CFLAGS=`llvm-config --cflags` -DMESA_NO_LLVM=0
|
|
LLVM_CFLAGS=-DMESA_NO_LLVM=0
|
|
LLVM_CXXFLAGS=`llvm-config --cxxflags` -DMESA_NO_LLVM=0 -Wno-long-long
|
|
LLVM_LDFLAGS=`llvm-config --ldflags`
|
|
LLVM_LIBS=`llvm-config --libs`
|
|
else
|
|
LLVM_CFLAGS=-DMESA_NO_LLVM=1
|
|
LLVM_CXXFLAGS=-DMESA_NO_LLVM=1
|
|
endif
|
|
|
|
# Library/program dependencies
|
|
#EXTRA_LIB_PATH ?=
|
|
GL_LIB_DEPS = $(LLVM_LDFLAGS) $(LLVM_LIBS) $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread
|
|
OSMESA_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
|
|
GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
|
|
GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lm
|
|
GLW_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lXt -lX11
|
|
APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm
|
|
|
|
|
|
|
|
# Installation directories (for make install)
|
|
INSTALL_DIR = /usr/local
|
|
DRI_DRIVER_INSTALL_DIR = /usr/X11R6/lib/modules/dri
|
|
|
|
# Where libGL will look for DRI hardware drivers
|
|
DRI_DRIVER_SEARCH_DIR = $(DRI_DRIVER_INSTALL_DIR)
|
|
|