From: Brian Paul Date: Thu, 21 Jan 2010 00:19:00 +0000 (-0700) Subject: llvmpipe: add makefile rule for generating .s files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b534400d9969eceac46b28145405086dda8c113;p=mesa.git llvmpipe: add makefile rule for generating .s files --- diff --git a/src/gallium/drivers/llvmpipe/Makefile b/src/gallium/drivers/llvmpipe/Makefile index 71e7c2b5d98..666aa7293ef 100644 --- a/src/gallium/drivers/llvmpipe/Makefile +++ b/src/gallium/drivers/llvmpipe/Makefile @@ -68,3 +68,8 @@ include ../../Makefile.template lp_tile_soa.c: lp_tile_soa.py ../../auxiliary/util/u_format_parse.py ../../auxiliary/util/u_format_access.py ../../auxiliary/util/u_format.csv python lp_tile_soa.py ../../auxiliary/util/u_format.csv > $@ + + +# to make a .s file to inspect assembly code +.c.s: + $(CC) -S $(INCLUDES) $(DEFINES) $(CFLAGS) $(LIBRARY_DEFINES) $<