diff options
author | Chia-I Wu <[email protected]> | 2009-12-21 11:13:18 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-01-11 01:11:05 +0800 |
commit | d4c1ee05345e1e185ac15a3cd3552d9bb0d61bc3 (patch) | |
tree | 1f4c4c233171bc7ab1b1efa52c11f6be6a863b40 /configs/default | |
parent | 064242ae9f26bf64c84fe4a30a750bf7963e265c (diff) |
egl: Clean up the Makefile rules.
This allows libEGL to be built as a static library and removes libX11
from the dependencies.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'configs/default')
-rw-r--r-- | configs/default | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configs/default b/configs/default index 94beca4fa67..f5a4bc195f3 100644 --- a/configs/default +++ b/configs/default @@ -55,6 +55,7 @@ GLUT_LIB = glut GLEW_LIB = GLEW GLW_LIB = GLw OSMESA_LIB = OSMesa +EGL_LIB = EGL # Library names (actual file names) @@ -64,6 +65,7 @@ GLUT_LIB_NAME = lib$(GLUT_LIB).so GLEW_LIB_NAME = lib$(GLEW_LIB).a GLW_LIB_NAME = lib$(GLW_LIB).so OSMESA_LIB_NAME = lib$(OSMESA_LIB).so +EGL_LIB_NAME = lib$(EGL_LIB).so # globs used to install the lib and all symlinks GL_LIB_GLOB = $(GL_LIB_NAME)* @@ -71,6 +73,7 @@ GLU_LIB_GLOB = $(GLU_LIB_NAME)* GLUT_LIB_GLOB = $(GLUT_LIB_NAME)* GLW_LIB_GLOB = $(GLW_LIB_NAME)* OSMESA_LIB_GLOB = $(OSMESA_LIB_NAME)* +EGL_LIB_GLOB = $(EGL_LIB_NAME)* # Optional assembly language optimization files for libGL MESA_ASM_SOURCES = @@ -89,7 +92,7 @@ DRIVER_DIRS = x11 osmesa # Which subdirs under $(TOP)/progs/ to enter: PROGRAM_DIRS = demos redbook samples glsl objviewer xdemos -# EGL directories +# EGL drivers to build EGL_DRIVERS_DIRS = demo # Gallium directories and |