diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-12-05 14:57:19 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-12-05 14:57:19 -0700 |
commit | 59356268187470c5fda9e9a1a7058607f938fb3b (patch) | |
tree | 0045a6b75fd4b49e82a5908739bca8152ac082de /src/mesa/pipe/cell/ppu/Makefile | |
parent | ce30f0550f02b28219c84851d71e0713aa315ee3 (diff) |
Add dependency checking for Cell driver sources.
Diffstat (limited to 'src/mesa/pipe/cell/ppu/Makefile')
-rw-r--r-- | src/mesa/pipe/cell/ppu/Makefile | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/mesa/pipe/cell/ppu/Makefile b/src/mesa/pipe/cell/ppu/Makefile index ede341abca..c987d54e02 100644 --- a/src/mesa/pipe/cell/ppu/Makefile +++ b/src/mesa/pipe/cell/ppu/Makefile @@ -14,7 +14,12 @@ CELL_LIB = libcell.a SPU_CODE_MODULE = ../spu/g3d_spu.a -OBJECTS = cell_context.o cell_surface.o + +SOURCES = \ + cell_context.c \ + cell_surface.c + +OBJECTS = $(SOURCES:.c=.o) \ INCLUDE_DIRS = -I$(TOP)/src/mesa @@ -28,7 +33,8 @@ default: $(CELL_LIB) $(CELL_LIB): $(OBJECTS) $(SPU_CODE_MODULE) - ar -ru $(CELL_LIB) $(OBJECTS) $(SPU_CODE_MODULE) +# ar -ru $(CELL_LIB) $(OBJECTS) $(SPU_CODE_MODULE) + ar -ru $(CELL_LIB) $(OBJECTS) #$(PROG): $(PPU_OBJECTS) # $(CC) -o $(PROG) $(PPU_OBJECTS) $(SPU_CODE_MODULE) $(PPU_LFLAGS) @@ -37,3 +43,15 @@ $(CELL_LIB): $(OBJECTS) $(SPU_CODE_MODULE) clean: rm -f *.o $(CELL_LIB) + + + +depend: $(SOURCES) + rm -f depend + touch depend + $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDE_DIRS) $(SOURCES) 2> /dev/null + +include depend + + + |