Mercurial > hg > Game > Cerium
comparison example/HelloWorld/spe/Makefile @ 160:1f7c46e52ab9 draft
fix
author | gongo@localhost.localdomain |
---|---|
date | Mon, 08 Dec 2008 10:56:58 +0900 |
parents | 028ffc9c0375 |
children | 0c9c9906d777 |
comparison
equal
deleted
inserted
replaced
159:c6dbac20f12e | 160:1f7c46e52ab9 |
---|---|
5 SRCS_TMP = $(wildcard *.cc) | 5 SRCS_TMP = $(wildcard *.cc) |
6 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) | 6 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) |
7 OBJS = $(SRCS:.cc=.o) | 7 OBJS = $(SRCS:.cc=.o) |
8 | 8 |
9 CC = spu-g++ | 9 CC = spu-g++ |
10 CFLAGS = -g -Wall -fno-exceptions -fno-rtti#-DDEBUG | 10 CFLAGS = -O9 -g -Wall -fno-exceptions -fno-rtti#-DDEBUG |
11 INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. | 11 INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. |
12 LIBS = -L${CERIUM}/TaskManager -lspemanager -Wl,--gc-sections | 12 LIBS = -L${CERIUM}/TaskManager -lspemanager -Wl,--gc-sections |
13 | 13 |
14 .SUFFIXES: .cc .o | 14 .SUFFIXES: .cc .o |
15 | 15 |