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
|
2009-11-18 07:25:46 -07:00
|
|
|
MESA_MINOR=8
|
2007-04-27 17:01:23 -06:00
|
|
|
MESA_TINY=0
|
2008-04-30 15:06:00 -07:00
|
|
|
MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
|
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
|
2007-09-28 18:42:21 -06:00
|
|
|
LDFLAGS =
|
2009-09-12 09:27:01 -07:00
|
|
|
HOST_CFLAGS = $(CFLAGS)
|
2004-03-26 15:16:35 +00:00
|
|
|
GLU_CFLAGS =
|
2004-04-07 23:15:26 +00:00
|
|
|
|
2008-09-11 11:00:54 -06:00
|
|
|
# Compiler for building demos/tests/etc
|
|
|
|
APP_CC = $(CC)
|
|
|
|
APP_CXX = $(CXX)
|
|
|
|
|
2004-04-07 23:15:26 +00:00
|
|
|
# Misc tools and flags
|
2008-07-08 07:44:58 -07:00
|
|
|
SHELL = /bin/sh
|
2008-07-11 13:54:48 -07:00
|
|
|
MKLIB = $(SHELL) $(TOP)/bin/mklib
|
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
|
2009-05-22 09:39:02 -07:00
|
|
|
|
|
|
|
# Use MINSTALL for installing libraries, INSTALL for everything else
|
|
|
|
MINSTALL = $(SHELL) $(TOP)/bin/minstall
|
|
|
|
INSTALL = $(MINSTALL)
|
2004-03-26 15:16:35 +00:00
|
|
|
|
2008-01-15 09:52:17 -08:00
|
|
|
# Tools for regenerating glapi (generally only needed by the developers)
|
2005-07-01 01:27:00 +00:00
|
|
|
PYTHON2 = python
|
|
|
|
PYTHON_FLAGS = -t -O -O
|
2008-01-15 09:52:17 -08:00
|
|
|
INDENT = indent
|
|
|
|
INDENT_FLAGS = -i4 -nut -br -brs -npcs -ce -T GLubyte -T GLbyte -T Bool
|
2005-07-01 01:27:00 +00:00
|
|
|
|
2004-03-26 15:16:35 +00:00
|
|
|
# Library names (base name)
|
|
|
|
GL_LIB = GL
|
|
|
|
GLU_LIB = GLU
|
|
|
|
GLUT_LIB = glut
|
2009-01-23 12:32:35 +00:00
|
|
|
GLEW_LIB = GLEW
|
2004-03-26 15:16:35 +00:00
|
|
|
GLW_LIB = GLw
|
|
|
|
OSMESA_LIB = OSMesa
|
2009-12-21 11:13:18 +08:00
|
|
|
EGL_LIB = EGL
|
2004-03-26 15:16:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
# 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
|
2009-01-24 16:54:59 +00:00
|
|
|
GLEW_LIB_NAME = lib$(GLEW_LIB).a
|
2005-03-23 02:12:21 +00:00
|
|
|
GLW_LIB_NAME = lib$(GLW_LIB).so
|
2005-06-07 15:25:08 +00:00
|
|
|
OSMESA_LIB_NAME = lib$(OSMESA_LIB).so
|
2009-12-21 11:13:18 +08:00
|
|
|
EGL_LIB_NAME = lib$(EGL_LIB).so
|
2004-03-26 15:16:35 +00:00
|
|
|
|
2008-08-12 10:59:40 -07:00
|
|
|
# globs used to install the lib and all symlinks
|
|
|
|
GL_LIB_GLOB = $(GL_LIB_NAME)*
|
|
|
|
GLU_LIB_GLOB = $(GLU_LIB_NAME)*
|
|
|
|
GLUT_LIB_GLOB = $(GLUT_LIB_NAME)*
|
|
|
|
GLW_LIB_GLOB = $(GLW_LIB_NAME)*
|
|
|
|
OSMESA_LIB_GLOB = $(OSMESA_LIB_NAME)*
|
2009-12-21 11:13:18 +08:00
|
|
|
EGL_LIB_GLOB = $(EGL_LIB_NAME)*
|
2004-03-26 15:16:35 +00:00
|
|
|
|
|
|
|
# Optional assembly language optimization files for libGL
|
2008-02-19 13:27:13 +09:00
|
|
|
MESA_ASM_SOURCES =
|
2004-03-26 15:16:35 +00:00
|
|
|
|
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
|
2008-07-18 07:40:41 -07:00
|
|
|
MOTIF_CFLAGS = -I/usr/include/Motif1.2
|
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
|
2009-12-10 01:03:15 +01:00
|
|
|
SRC_DIRS = glsl mesa gallium egl gallium/winsys glu glut/glx glew glw
|
2004-03-26 15:16:35 +00:00
|
|
|
GLU_DIRS = sgi
|
2009-02-10 17:43:25 +01:00
|
|
|
DRIVER_DIRS = x11 osmesa
|
2005-05-05 13:08:06 +00:00
|
|
|
# Which subdirs under $(TOP)/progs/ to enter:
|
2009-10-01 13:11:25 -06:00
|
|
|
PROGRAM_DIRS = demos redbook samples glsl objviewer xdemos
|
2004-03-26 15:16:35 +00:00
|
|
|
|
2009-12-21 11:13:18 +08:00
|
|
|
# EGL drivers to build
|
2010-01-22 15:07:58 +08:00
|
|
|
EGL_DRIVERS_DIRS = glx
|
2007-10-24 08:34:01 -04:00
|
|
|
|
2009-02-10 13:59:35 +01:00
|
|
|
# Gallium directories and
|
2009-02-10 16:23:02 +01:00
|
|
|
GALLIUM_DIRS = auxiliary drivers state_trackers
|
2009-12-31 23:46:46 +00:00
|
|
|
GALLIUM_AUXILIARIES = $(TOP)/src/gallium/auxiliary/libgallium.a
|
2010-01-14 22:51:25 +00:00
|
|
|
GALLIUM_DRIVERS_DIRS = softpipe failover svga i915 i965 r300 trace identity
|
2009-02-20 11:03:18 +00:00
|
|
|
GALLIUM_DRIVERS = $(foreach DIR,$(GALLIUM_DRIVERS_DIRS),$(TOP)/src/gallium/drivers/$(DIR)/lib$(DIR).a)
|
2010-01-22 16:02:39 +08:00
|
|
|
GALLIUM_WINSYS_DIRS = drm xlib
|
2010-01-22 15:51:51 +08:00
|
|
|
GALLIUM_WINSYS_DRM_DIRS = swrast
|
2010-01-26 17:31:06 -07:00
|
|
|
GALLIUM_STATE_TRACKERS_DIRS = glx vega
|
2008-02-18 14:25:04 +09:00
|
|
|
|
2010-01-11 01:23:01 +08:00
|
|
|
# native displays EGL should support
|
|
|
|
EGL_DISPLAYS = x11
|
2009-02-10 13:59:35 +01:00
|
|
|
|
|
|
|
# Library 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
|
2009-08-21 13:53:36 +08:00
|
|
|
EGL_LIB_DEPS = $(EXTRA_LIB_PATH) -ldl -lpthread
|
2008-01-03 14:59:14 -08:00
|
|
|
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
|
2007-10-29 09:04:30 -06:00
|
|
|
|
|
|
|
# Program dependencies - specific GL/glut libraries added in Makefiles
|
|
|
|
APP_LIB_DEPS = -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
|
2008-07-03 09:17:44 -07:00
|
|
|
INSTALL_LIB_DIR = $(INSTALL_DIR)/$(LIB_DIR)
|
|
|
|
INSTALL_INC_DIR = $(INSTALL_DIR)/include
|
|
|
|
DRI_DRIVER_INSTALL_DIR = $(INSTALL_LIB_DIR)/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)
|
|
|
|
|
2010-01-23 20:18:43 +08:00
|
|
|
# EGL driver install directory
|
|
|
|
EGL_DRIVER_INSTALL_DIR = $(INSTALL_LIB_DIR)/egl
|
|
|
|
|
2009-03-06 08:46:08 +09:00
|
|
|
# Xorg driver install directory (for xorg state-tracker)
|
|
|
|
XORG_DRIVER_INSTALL_DIR = $(INSTALL_LIB_DIR)/xorg/modules/drivers
|
|
|
|
|
2008-11-24 11:01:57 -08:00
|
|
|
# pkg-config substitutions
|
|
|
|
GL_PC_REQ_PRIV =
|
|
|
|
GL_PC_LIB_PRIV =
|
|
|
|
GL_PC_CFLAGS =
|
|
|
|
DRI_PC_REQ_PRIV =
|
|
|
|
GLU_PC_REQ = gl
|
|
|
|
GLU_PC_REQ_PRIV =
|
|
|
|
GLU_PC_LIB_PRIV =
|
|
|
|
GLU_PC_CFLAGS =
|
|
|
|
GLUT_PC_REQ_PRIV =
|
|
|
|
GLUT_PC_LIB_PRIV =
|
|
|
|
GLUT_PC_CFLAGS =
|
|
|
|
GLW_PC_REQ_PRIV =
|
|
|
|
GLW_PC_LIB_PRIV =
|
|
|
|
GLW_PC_CFLAGS =
|
2008-12-14 09:35:29 -08:00
|
|
|
OSMESA_PC_REQ =
|
|
|
|
OSMESA_PC_LIB_PRIV =
|