2004-03-26 15:16:35 +00:00
|
|
|
# Default/template configuration
|
|
|
|
|
|
|
|
# This is included by other config files which may override some
|
|
|
|
# of these variables.
|
2006-06-22 22:50:48 +00:00
|
|
|
# Think of this as a base class from which configs are derived.
|
|
|
|
|
2004-03-26 15:16:35 +00:00
|
|
|
|
|
|
|
CONFIG_NAME = default
|
|
|
|
|
|
|
|
# Version info
|
2007-04-27 17:01:23 -06:00
|
|
|
MESA_MAJOR=7
|
2007-05-14 14:30:36 -06:00
|
|
|
MESA_MINOR=1
|
2007-04-27 17:01:23 -06:00
|
|
|
MESA_TINY=0
|
2004-03-26 15:16:35 +00:00
|
|
|
|
2005-08-19 20:20:03 +00:00
|
|
|
# external projects. This should be useless now that we use libdrm.
|
2005-07-02 21:28:01 +00:00
|
|
|
DRM_SOURCE_PATH=$(TOP)/../drm
|
2004-03-26 15:16:35 +00:00
|
|
|
|
|
|
|
# Compiler and flags
|
|
|
|
CC = cc
|
|
|
|
CXX = CC
|
2008-01-03 15:08:53 -08:00
|
|
|
HOST_CC = $(CC)
|
2004-03-26 15:16:35 +00:00
|
|
|
CFLAGS = -O
|
|
|
|
CXXFLAGS = -O
|
|
|
|
GLU_CFLAGS =
|
2004-04-07 23:15:26 +00:00
|
|
|
|
|
|
|
# Misc tools and flags
|
2004-03-26 15:16:35 +00:00
|
|
|
MKLIB_OPTIONS =
|
2004-04-07 23:15:26 +00:00
|
|
|
MKDEP = makedepend
|
2004-12-08 15:16:36 +00:00
|
|
|
MKDEP_OPTIONS = -fdepend
|
2004-06-01 00:06:14 +00:00
|
|
|
MAKE = make
|
2006-10-19 20:09:05 +00:00
|
|
|
INSTALL = $(TOP)/bin/minstall
|
2004-03-26 15:16:35 +00:00
|
|
|
|
2005-07-01 01:27:00 +00:00
|
|
|
# Python and flags (generally only needed by the developers)
|
|
|
|
PYTHON2 = python
|
|
|
|
PYTHON_FLAGS = -t -O -O
|
|
|
|
|
2004-03-26 15:16:35 +00:00
|
|
|
# Library names (base name)
|
|
|
|
GL_LIB = GL
|
|
|
|
GLU_LIB = GLU
|
|
|
|
GLUT_LIB = glut
|
|
|
|
GLW_LIB = GLw
|
|
|
|
OSMESA_LIB = OSMesa
|
|
|
|
|
|
|
|
|
|
|
|
# Library names (actual file names)
|
2005-03-23 02:12:21 +00:00
|
|
|
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
|
2005-06-07 15:25:08 +00:00
|
|
|
OSMESA_LIB_NAME = lib$(OSMESA_LIB).so
|
2004-03-26 15:16:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Optional assembly language optimization files for libGL
|
|
|
|
ASM_SOURCES =
|
|
|
|
|
2004-07-20 20:43:24 +00:00
|
|
|
# GLw widget sources (Append "GLwMDrawA.c" here and add -lXm to GLW_LIB_DEPS in
|
|
|
|
# order to build the Motif widget too)
|
2004-03-26 21:48:09 +00:00
|
|
|
GLW_SOURCES = GLwDrawA.c
|
2004-03-26 15:16:35 +00:00
|
|
|
|
|
|
|
|
2006-06-22 22:50:48 +00:00
|
|
|
# Directories to build
|
2006-07-13 02:50:27 +00:00
|
|
|
LIB_DIR = lib
|
2008-02-15 17:50:12 +09:00
|
|
|
SRC_DIRS = gallium mesa glu glut/glx glw
|
2004-03-26 15:16:35 +00:00
|
|
|
GLU_DIRS = sgi
|
|
|
|
DRIVER_DIRS = x11 osmesa
|
2005-05-05 13:08:06 +00:00
|
|
|
# Which subdirs under $(TOP)/progs/ to enter:
|
2007-04-08 15:50:31 -06:00
|
|
|
PROGRAM_DIRS = demos redbook samples glsl xdemos
|
2004-03-26 15:16:35 +00:00
|
|
|
|
2007-10-24 08:34:01 -04:00
|
|
|
|
2004-03-26 15:16:35 +00:00
|
|
|
# Library/program dependencies
|
2006-09-06 13:56:26 +00:00
|
|
|
#EXTRA_LIB_PATH ?=
|
2008-01-03 14:59:14 -08:00
|
|
|
GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread
|
|
|
|
OSMESA_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
|
|
|
|
GLU_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
|
|
|
|
GLUT_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lX11 -lXmu -lXi -lm
|
|
|
|
GLW_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lXt -lX11
|
|
|
|
APP_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm
|
2006-06-22 22:50:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Installation directories (for make install)
|
2006-10-19 20:11:15 +00:00
|
|
|
INSTALL_DIR = /usr/local
|
2006-06-22 22:50:48 +00:00
|
|
|
DRI_DRIVER_INSTALL_DIR = /usr/X11R6/lib/modules/dri
|
2006-07-13 02:50:27 +00:00
|
|
|
|
|
|
|
# Where libGL will look for DRI hardware drivers
|
|
|
|
DRI_DRIVER_SEARCH_DIR = $(DRI_DRIVER_INSTALL_DIR)
|
|
|
|
|