summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/Makefile
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-01-20 17:19:00 -0700
committerBrian Paul <brianp@vmware.com>2010-01-20 17:19:00 -0700
commit9b534400d9969eceac46b28145405086dda8c113 (patch)
tree5d267a95f7456066525c83a2fbca108b2ebb5bc5 /src/gallium/drivers/llvmpipe/Makefile
parent4d2dc9da82fcb0464b88c273a606f16d0183a758 (diff)
llvmpipe: add makefile rule for generating .s files
Diffstat (limited to 'src/gallium/drivers/llvmpipe/Makefile')
-rw-r--r--src/gallium/drivers/llvmpipe/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/Makefile b/src/gallium/drivers/llvmpipe/Makefile
index 71e7c2b5d9..666aa7293e 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) $<