From: Brian Paul Date: Fri, 2 Jan 2009 23:15:16 +0000 (-0700) Subject: mesa: remove redudant lines for libglapi.a X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a57417eff62b24ebc562b6ecc120dfc7448679d0;p=mesa.git mesa: remove redudant lines for libglapi.a --- diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 274010c54f5..552c20e0b9b 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -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 ######################################################################