patch-src_mesa_Makefile 938 B

123456789101112131415161718192021
  1. --- Mesa-7.8.2.orig/src/mesa/Makefile 2010-06-15 19:43:42.000000000 +0200
  2. +++ Mesa-7.8.2/src/mesa/Makefile 2010-12-04 22:11:40.000000000 +0100
  3. @@ -30,15 +30,15 @@ default: depend asm_subdirs glsl_builtin
  4. # Make archive of core mesa object files
  5. libmesa.a: $(MESA_OBJECTS) $(GLSL_LIBS)
  6. - @ $(MKLIB) -o mesa -static $(MESA_OBJECTS) $(GLSL_LIBS)
  7. + $(MKLIB) -o mesa -static $(MESA_OBJECTS) $(GLSL_LIBS)
  8. # Make archive of subset of core mesa object files for gallium
  9. libmesagallium.a: $(MESA_GALLIUM_OBJECTS) $(GLSL_LIBS)
  10. - @ $(MKLIB) -o mesagallium -static $(MESA_GALLIUM_OBJECTS) $(GLSL_LIBS)
  11. + $(MKLIB) -o mesagallium -static $(MESA_GALLIUM_OBJECTS) $(GLSL_LIBS)
  12. # Make archive of gl* API dispatcher functions only
  13. libglapi.a: $(GLAPI_OBJECTS)
  14. - @ $(MKLIB) -o glapi -static $(GLAPI_OBJECTS)
  15. + $(MKLIB) -o glapi -static $(GLAPI_OBJECTS)
  16. ######################################################################
  17. # Device drivers