summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/cell/ppu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/pipe/cell/ppu/Makefile')
-rw-r--r--src/mesa/pipe/cell/ppu/Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/mesa/pipe/cell/ppu/Makefile b/src/mesa/pipe/cell/ppu/Makefile
new file mode 100644
index 00000000000..ede341abca4
--- /dev/null
+++ b/src/mesa/pipe/cell/ppu/Makefile
@@ -0,0 +1,39 @@
+# Gallium3D Cell driver: PPU code
+
+# This makefile builds the g3dcell.a library which gets pulled into
+# the main libGL.so library
+
+
+TOP = ../../../../..
+include $(TOP)/configs/linux-cell
+
+
+#PROG = gl4
+
+CELL_LIB = libcell.a
+
+SPU_CODE_MODULE = ../spu/g3d_spu.a
+
+OBJECTS = cell_context.o cell_surface.o
+
+INCLUDE_DIRS = -I$(TOP)/src/mesa
+
+
+.c.o:
+ $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
+
+
+
+default: $(CELL_LIB)
+
+
+$(CELL_LIB): $(OBJECTS) $(SPU_CODE_MODULE)
+ ar -ru $(CELL_LIB) $(OBJECTS) $(SPU_CODE_MODULE)
+
+#$(PROG): $(PPU_OBJECTS)
+# $(CC) -o $(PROG) $(PPU_OBJECTS) $(SPU_CODE_MODULE) $(PPU_LFLAGS)
+
+
+
+clean:
+ rm -f *.o $(CELL_LIB)