projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d2dc9d
)
llvmpipe: add makefile rule for generating .s files
author
Brian Paul
<brianp@vmware.com>
Thu, 21 Jan 2010 00:19:00 +0000
(17:19 -0700)
committer
Brian Paul
<brianp@vmware.com>
Thu, 21 Jan 2010 00:19:00 +0000
(17:19 -0700)
src/gallium/drivers/llvmpipe/Makefile
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/Makefile
b/src/gallium/drivers/llvmpipe/Makefile
index 71e7c2b5d98065c18b8436ac1269bf0893f3a3d8..666aa7293ef9d821f5fa14b923197b6a09e26d84 100644
(file)
--- 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) $<