projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62d1e40
)
gallium: Adding the %.s rule to generate asm code
author
Chris Li
<chrisl@vmware.com>
Sat, 6 Feb 2010 05:25:17 +0000
(21:25 -0800)
committer
José Fonseca
<jfonseca@vmware.com>
Tue, 9 Feb 2010 17:19:30 +0000
(17:19 +0000)
Signed-off-by: José Fonseca <jfonseca@vmware.com>
src/gallium/Makefile.template
patch
|
blob
|
history
diff --git
a/src/gallium/Makefile.template
b/src/gallium/Makefile.template
index 35f603a84e01d3b29d63890beba2cb40d8bac10b..5d9d2db78668451ea7f98614596510d342459941 100644
(file)
--- a/
src/gallium/Makefile.template
+++ b/
src/gallium/Makefile.template
@@
-53,6
+53,9
@@
install:
##### RULES #####
+%.s: %.c
+ $(CC) -S $(INCLUDES) $(DEFINES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@
+
%.o: %.c
$(CC) -c $(INCLUDES) $(DEFINES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@