diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-10 17:30:51 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-01-10 17:30:51 -0700 |
commit | 02f6f9f8d47fc36c8edf4661c4e78c9c1a1941fc (patch) | |
tree | c7e72025813ad91a15d5e809a084ce1a73c42d31 /src/mesa/pipe/cell/spu/Makefile | |
parent | 6c11485405700865895b7c5f14e08bc5bede2a35 (diff) |
Cell: move tile-related code into new tile.[ch] files.
Diffstat (limited to 'src/mesa/pipe/cell/spu/Makefile')
-rw-r--r-- | src/mesa/pipe/cell/spu/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/pipe/cell/spu/Makefile b/src/mesa/pipe/cell/spu/Makefile index 8e606dd1a2..bf97a49e78 100644 --- a/src/mesa/pipe/cell/spu/Makefile +++ b/src/mesa/pipe/cell/spu/Makefile @@ -17,6 +17,7 @@ PROG_SPU_EMBED_O = $(PROG)_spu-embed.o SOURCES = \ main.c \ + tile.c \ tri.c SPU_OBJECTS = $(SOURCES:.c=.o) \ @@ -40,6 +41,9 @@ $(PROG_SPU): $(SPU_OBJECTS) main.o: main.c $(SPU_CC) $(SPU_CFLAGS) -c main.c +tile.o: tile.c + $(SPU_CC) $(SPU_CFLAGS) -c tile.c + tri.o: tri.c $(SPU_CC) $(SPU_CFLAGS) -c tri.c |