mesa: Build both software rasterizers for debug
authorJakob Bornecrantz <jakob@vmware.com>
Tue, 10 Feb 2009 16:43:25 +0000 (17:43 +0100)
committerJakob Bornecrantz <jakob@vmware.com>
Tue, 10 Feb 2009 16:43:25 +0000 (17:43 +0100)
   But put the gallium one in lib/gallium

configs/default
src/gallium/winsys/xlib/Makefile

index 3a49c5a969542d86def9114422c2cd5b909fe6c9..4c8698ccc46a7ab24b9630f6307592a75729a3ba 100644 (file)
@@ -81,7 +81,7 @@ MOTIF_CFLAGS = -I/usr/include/Motif1.2
 LIB_DIR = lib
 SRC_DIRS = mesa gallium egl gallium/winsys glu glut/glx glew glw
 GLU_DIRS = sgi
-DRIVER_DIRS = 
+DRIVER_DIRS = x11 osmesa
 # Which subdirs under $(TOP)/progs/ to enter:
 PROGRAM_DIRS = demos redbook samples glsl xdemos
 
index 9d70f3cb9c1f960c4459efc935e1ff6792d9328d..bb187cc14a5788ad9d86a3020784d51d991585c4 100644 (file)
@@ -62,15 +62,17 @@ LIBS = \
 
 
 
-default: $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME)
+default: $(TOP)/$(LIB_DIR)/gallium $(TOP)/$(LIB_DIR)/gallium/$(GL_LIB_NAME)
 
+$(TOP)/$(LIB_DIR)/gallium:
+       @ mkdir -p $(TOP)/$(LIB_DIR)/gallium
 
 # Make the libGL.so library
-$(TOP)/$(LIB_DIR)/$(GL_LIB_NAME): $(XLIB_WINSYS_OBJECTS) $(LIBS) Makefile
+$(TOP)/$(LIB_DIR)/gallium/$(GL_LIB_NAME): $(XLIB_WINSYS_OBJECTS) $(LIBS) Makefile
        $(TOP)/bin/mklib -o $(GL_LIB) \
                -linker "$(CC)" \
                -major $(GL_MAJOR) -minor $(GL_MINOR) -patch $(GL_TINY) \
-               -install $(TOP)/$(LIB_DIR) \
+               -install $(TOP)/$(LIB_DIR)/gallium \
                $(MKLIB_OPTIONS) $(XLIB_WINSYS_OBJECTS) \
                --start-group $(LIBS) --end-group $(GL_LIB_DEPS)