mesa: remove redudant lines for libglapi.a
authorBrian Paul <brianp@vmware.com>
Fri, 2 Jan 2009 23:15:16 +0000 (16:15 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 2 Jan 2009 23:16:36 +0000 (16:16 -0700)
src/mesa/Makefile

index 274010c54f5ab8e7b25366fdb6781be439aa2443..552c20e0b9b2818d5fe7a9fcc2b671406ebf0a60 100644 (file)
@@ -34,14 +34,10 @@ libmesa.a: $(MESA_OBJECTS)
 
 # Make archive of gl* API dispatcher functions only
 libglapi.a: $(GLAPI_OBJECTS)
-       @ $(MKLIB) -o glapi -static $(GLAPI_OBJECTS)
-
-# Make archive of gl* API dispatcher functions only
-$(GLAPI_LIB): $(GLAPI_OBJECTS)
        @if [ "${WINDOW_SYSTEM}" = "dri" ] ; then \
                touch libglapi.a ; \
        else \
-               $(TOP)/bin/mklib -o glapi -static $(GLAPI_OBJECTS) ; \
+               $(MKLIB) -o glapi -static $(GLAPI_OBJECTS) ; \
        fi
 
 ######################################################################