projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be92796
)
Cell: added asmfiles rule
author
Brian
<brian.paul@tungstengraphics.com>
Tue, 22 Jan 2008 02:25:10 +0000
(19:25 -0700)
committer
Brian
<brian.paul@tungstengraphics.com>
Tue, 22 Jan 2008 04:17:20 +0000
(21:17 -0700)
src/mesa/pipe/cell/spu/Makefile
patch
|
blob
|
history
diff --git
a/src/mesa/pipe/cell/spu/Makefile
b/src/mesa/pipe/cell/spu/Makefile
index b92a756cd5070a1bdc09c7ba5473b5853fb332f1..417ae1b072a1ac8922e18e9520776b06a79c7382 100644
(file)
--- a/
src/mesa/pipe/cell/spu/Makefile
+++ b/
src/mesa/pipe/cell/spu/Makefile
@@
-22,12
+22,17
@@
SOURCES = \
SPU_OBJECTS = $(SOURCES:.c=.o) \
+SPU_ASM_OUT = $(SOURCES:.c=.s) \
+
INCLUDE_DIRS = -I$(TOP)/src/mesa
.c.o:
$(SPU_CC) $(SPU_CFLAGS) -c $<
+.c.s:
+ $(SPU_CC) $(SPU_CFLAGS) -S $<
+
# The .a file will be linked into the main/PPU executable
default: $(PROG_SPU_A)
@@
-43,8
+48,11
@@
$(PROG_SPU): $(SPU_OBJECTS)
+asmfiles: $(SPU_ASM_OUT)
+
+
clean:
- rm -f *~ *.o *.a *.d $(PROG_SPU)
+ rm -f *~ *.o *.a *.d
*.s
$(PROG_SPU)