mesa/configs/default

88 lines
2.1 KiB
Plaintext
Raw Normal View History

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.
# 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
MESA_MAJOR=6
2005-08-23 01:45:54 +01:00
MESA_MINOR=5
2006-09-22 00:02:21 +01:00
MESA_TINY=2
2004-03-26 15:16:35 +00:00
# external projects. This should be useless now that we use libdrm.
DRM_SOURCE_PATH=$(TOP)/../drm
2004-03-26 15:16:35 +00:00
# Compiler and flags
CC = cc
CXX = CC
CFLAGS = -O
CXXFLAGS = -O
GLU_CFLAGS =
2004-04-08 00:15:26 +01:00
# Misc tools and flags
2004-03-26 15:16:35 +00:00
MKLIB_OPTIONS =
2004-04-08 00:15:26 +01:00
MKDEP = makedepend
MKDEP_OPTIONS = -fdepend
MAKE = make
INSTALL = $(TOP)/bin/minstall
2004-03-26 15:16:35 +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)
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 16:25:08 +01: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 =
# 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
2004-03-26 15:16:35 +00:00
# Directories to build
LIB_DIR = lib
2004-03-26 15:46:53 +00:00
SRC_DIRS = mesa glu glut/glx glw
2004-03-26 15:16:35 +00:00
GLU_DIRS = sgi
DRIVER_DIRS = x11 osmesa
2005-05-05 14:08:06 +01:00
# Which subdirs under $(TOP)/progs/ to enter:
2004-03-26 15:16:35 +00:00
PROGRAM_DIRS = demos redbook samples xdemos
# Library/program dependencies
#EXTRA_LIB_PATH ?=
GL_LIB_DEPS = $(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
INSTALL_DIR = /tmp/mesa2
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)