summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/cell/spu/Makefile
blob: 116453b79c527f9fe5029616b304871ab459c4d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Gallium3D Cell driver: SPU code

# This makefile builds the g3d_spu.a file that's linked into the
# PPU code/library.


TOP = ../../../../..
include $(TOP)/configs/current


PROG = g3d

PROG_SPU = $(PROG)_spu
PROG_SPU_A = $(PROG)_spu.a
PROG_SPU_EMBED_O = $(PROG)_spu-embed.o


SOURCES = \
	spu_command.c \
	spu_dcache.c \
	spu_funcs.c \
	spu_main.c \
	spu_per_fragment_op.c \
	spu_render.c \
	spu_texture.c \
	spu_tile.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) \

INCLUDE_DIRS = \
	-I$(TOP)/src/mesa \
	-I$(TOP)/src/gallium/include \
	-I$(TOP)/src/gallium/auxiliary \
	-I$(TOP)/src/gallium/drivers


.c.o:
	$(SPU_CC) $(SPU_CFLAGS) -c $<

.c.s:
	$(SPU_CC) $(SPU_CFLAGS) -O3 -S $<


# The .a file will be linked into the main/PPU executable
default: $(PROG_SPU_A)

$(PROG_SPU_A): $(PROG_SPU_EMBED_O)
	$(SPU_AR) $(SPU_AR_FLAGS) $(PROG_SPU_A) $(PROG_SPU_EMBED_O)

$(PROG_SPU_EMBED_O): $(PROG_SPU)
	$(SPU_EMBED) $(SPU_EMBED_FLAGS) $(PROG_SPU) $(PROG_SPU) $(PROG_SPU_EMBED_O)

$(PROG_SPU): $(SPU_OBJECTS)
	$(SPU_CC) -o $(PROG_SPU) $(SPU_OBJECTS) $(SPU_LFLAGS)



asmfiles: $(SPU_ASM_OUT)


clean:
	rm -f *~ *.o *.a *.d *.s $(PROG_SPU)



depend: $(SOURCES)
	rm -f depend
	touch depend
	$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDE_DIRS) $(SOURCES) 2> /dev/null

include depend