Merge branch 'crestline-qa', adding support for the 965GM chipset.
[mesa.git] / configs / default
1 # Default/template configuration
2
3 # This is included by other config files which may override some
4 # of these variables.
5 # Think of this as a base class from which configs are derived.
6
7
8 CONFIG_NAME = default
9
10 # Version info
11 MESA_MAJOR=6
12 MESA_MINOR=5
13 MESA_TINY=3
14
15 # external projects. This should be useless now that we use libdrm.
16 DRM_SOURCE_PATH=$(TOP)/../drm
17
18 # Compiler and flags
19 CC = cc
20 CXX = CC
21 CFLAGS = -O
22 CXXFLAGS = -O
23 GLU_CFLAGS =
24
25 # Misc tools and flags
26 MKLIB_OPTIONS =
27 MKDEP = makedepend
28 MKDEP_OPTIONS = -fdepend
29 MAKE = make
30 INSTALL = $(TOP)/bin/minstall
31
32 # Python and flags (generally only needed by the developers)
33 PYTHON2 = python
34 PYTHON_FLAGS = -t -O -O
35
36 # Library names (base name)
37 GL_LIB = GL
38 GLU_LIB = GLU
39 GLUT_LIB = glut
40 GLW_LIB = GLw
41 OSMESA_LIB = OSMesa
42
43
44 # Library names (actual file names)
45 GL_LIB_NAME = lib$(GL_LIB).so
46 GLU_LIB_NAME = lib$(GLU_LIB).so
47 GLUT_LIB_NAME = lib$(GLUT_LIB).so
48 GLW_LIB_NAME = lib$(GLW_LIB).so
49 OSMESA_LIB_NAME = lib$(OSMESA_LIB).so
50
51
52 # Optional assembly language optimization files for libGL
53 ASM_SOURCES =
54
55 # GLw widget sources (Append "GLwMDrawA.c" here and add -lXm to GLW_LIB_DEPS in
56 # order to build the Motif widget too)
57 GLW_SOURCES = GLwDrawA.c
58
59
60 # Directories to build
61 LIB_DIR = lib
62 SRC_DIRS = mesa glu glut/glx glw
63 GLU_DIRS = sgi
64 DRIVER_DIRS = x11 osmesa
65 # Which subdirs under $(TOP)/progs/ to enter:
66 PROGRAM_DIRS = demos redbook samples xdemos
67
68
69 # Library/program dependencies
70 #EXTRA_LIB_PATH ?=
71 GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread
72 OSMESA_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
73 GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
74 GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lm
75 GLW_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lXt -lX11
76 APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm
77
78
79
80 # Installation directories (for make install)
81 INSTALL_DIR = /usr/local
82 DRI_DRIVER_INSTALL_DIR = /usr/X11R6/lib/modules/dri
83
84 # Where libGL will look for DRI hardware drivers
85 DRI_DRIVER_SEARCH_DIR = $(DRI_DRIVER_INSTALL_DIR)
86