Merge commit 'origin/master' into gallium-0.2
[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=7
12 MESA_MINOR=3
13 MESA_TINY=0
14 MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
15
16 # external projects. This should be useless now that we use libdrm.
17 DRM_SOURCE_PATH=$(TOP)/../drm
18
19 # Compiler and flags
20 CC = cc
21 CXX = CC
22 HOST_CC = $(CC)
23 CFLAGS = -O
24 CXXFLAGS = -O
25 LDFLAGS =
26 GLU_CFLAGS =
27
28 # Compiler for building demos/tests/etc
29 APP_CC = $(CC)
30 APP_CXX = $(CXX)
31
32 # Misc tools and flags
33 SHELL = /bin/sh
34 MKLIB = $(SHELL) $(TOP)/bin/mklib
35 MKLIB_OPTIONS =
36 MKDEP = makedepend
37 MKDEP_OPTIONS = -fdepend
38 MAKE = make
39 INSTALL = $(SHELL) $(TOP)/bin/minstall
40
41 # Tools for regenerating glapi (generally only needed by the developers)
42 PYTHON2 = python
43 PYTHON_FLAGS = -t -O -O
44 INDENT = indent
45 INDENT_FLAGS = -i4 -nut -br -brs -npcs -ce -T GLubyte -T GLbyte -T Bool
46
47 # Library names (base name)
48 GL_LIB = GL
49 GLU_LIB = GLU
50 GLUT_LIB = glut
51 GLW_LIB = GLw
52 OSMESA_LIB = OSMesa
53
54
55 # Library names (actual file names)
56 GL_LIB_NAME = lib$(GL_LIB).so
57 GLU_LIB_NAME = lib$(GLU_LIB).so
58 GLUT_LIB_NAME = lib$(GLUT_LIB).so
59 GLW_LIB_NAME = lib$(GLW_LIB).so
60 OSMESA_LIB_NAME = lib$(OSMESA_LIB).so
61
62 # globs used to install the lib and all symlinks
63 GL_LIB_GLOB = $(GL_LIB_NAME)*
64 GLU_LIB_GLOB = $(GLU_LIB_NAME)*
65 GLUT_LIB_GLOB = $(GLUT_LIB_NAME)*
66 GLW_LIB_GLOB = $(GLW_LIB_NAME)*
67 OSMESA_LIB_GLOB = $(OSMESA_LIB_NAME)*
68
69 # Optional assembly language optimization files for libGL
70 MESA_ASM_SOURCES =
71
72 # GLw widget sources (Append "GLwMDrawA.c" here and add -lXm to GLW_LIB_DEPS in
73 # order to build the Motif widget too)
74 GLW_SOURCES = GLwDrawA.c
75 MOTIF_CFLAGS = -I/usr/include/Motif1.2
76
77
78 # Directories to build
79 LIB_DIR = lib
80 SRC_DIRS = mesa gallium egl gallium/winsys glu glut/glx glw
81 GLU_DIRS = sgi
82 DRIVER_DIRS =
83 # Which subdirs under $(TOP)/progs/ to enter:
84 PROGRAM_DIRS = demos redbook samples glsl xdemos
85
86 # EGL directories
87 EGL_DRIVERS_DIRS = demo
88
89 # Gallium directories and
90 GALLIUM_AUXILIARY_DIRS = draw translate cso_cache pipebuffer tgsi sct rtasm util
91 GALLIUM_AUXILIARIES = $(foreach DIR,$(GALLIUM_AUXILIARY_DIRS),$(TOP)/src/gallium/auxiliary/$(DIR)/lib$(DIR).a)
92 GALLIUM_DRIVER_DIRS = softpipe i915simple i965simple nv04 nv10 nv20 nv30 nv40 nv50 failover
93 GALLIUM_DRIVERS = $(foreach DIR,$(GALLIUM_DRIVER_DIRS),$(TOP)/src/gallium/drivers/$(DIR)/lib$(DIR).a)
94 GALLIUM_WINSYS_DIRS = xlib egl_xlib
95
96
97 # Library dependencies
98 #EXTRA_LIB_PATH ?=
99 GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread
100 OSMESA_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
101 GLU_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
102 GLUT_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lX11 -lXmu -lXi -lm
103 GLW_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lXt -lX11
104 APP_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm
105
106 # Program dependencies - specific GL/glut libraries added in Makefiles
107 APP_LIB_DEPS = -lm
108
109
110 # Installation directories (for make install)
111 INSTALL_DIR = /usr/local
112 INSTALL_LIB_DIR = $(INSTALL_DIR)/$(LIB_DIR)
113 INSTALL_INC_DIR = $(INSTALL_DIR)/include
114 DRI_DRIVER_INSTALL_DIR = $(INSTALL_LIB_DIR)/dri
115
116 # Where libGL will look for DRI hardware drivers
117 DRI_DRIVER_SEARCH_DIR = $(DRI_DRIVER_INSTALL_DIR)
118
119 # pkg-config substitutions
120 GL_PC_REQ_PRIV =
121 GL_PC_LIB_PRIV =
122 GL_PC_CFLAGS =
123 DRI_PC_REQ_PRIV =
124 GLU_PC_REQ = gl
125 GLU_PC_REQ_PRIV =
126 GLU_PC_LIB_PRIV =
127 GLU_PC_CFLAGS =
128 GLUT_PC_REQ_PRIV =
129 GLUT_PC_LIB_PRIV =
130 GLUT_PC_CFLAGS =
131 GLW_PC_REQ_PRIV =
132 GLW_PC_LIB_PRIV =
133 GLW_PC_CFLAGS =
134 OSMESA_PC_REQ =
135 OSMESA_PC_LIB_PRIV =