diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-09-11 10:27:17 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-09-11 10:39:29 -0600 |
commit | 924653e37db4501d0f03721e9d74abffe46a3c72 (patch) | |
tree | 2506b939a7a9eb17cbaed58e931361d827cdee2a /src/gallium/drivers/cell/spu | |
parent | f19903aa83e9b6e18930cbda14cfec3cca2e1bf2 (diff) |
cell: don't build unused sources
Diffstat (limited to 'src/gallium/drivers/cell/spu')
-rw-r--r-- | src/gallium/drivers/cell/spu/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/spu/Makefile b/src/gallium/drivers/cell/spu/Makefile index e285ae9fdb..1ae0dfb8c1 100644 --- a/src/gallium/drivers/cell/spu/Makefile +++ b/src/gallium/drivers/cell/spu/Makefile @@ -22,12 +22,15 @@ SOURCES = \ spu_render.c \ spu_texture.c \ spu_tile.c \ - spu_tri.c \ + spu_tri.c + +OLD_SOURCES = \ spu_exec.c \ spu_util.c \ spu_vertex_fetch.c \ spu_vertex_shader.c + SPU_OBJECTS = $(SOURCES:.c=.o) \ SPU_ASM_OUT = $(SOURCES:.c=.s) \ |