Mercurial > hg > Members > kono > Cerium
annotate old/simple_render/test/LoadTexture/spe/Makefile @ 985:e40dd2384357
fix light data update
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 01 Oct 2010 02:49:38 +0900 |
parents | 735f76483bb2 |
children |
rev | line source |
---|---|
90 | 1 TARGET = ../spe-main |
2 | |
3 SRCS = $(wildcard *.cpp) | |
4 OBJS = $(SRCS:.cpp=.o) | |
5 | |
6 CC = spu-g++ | |
97 | 7 CFLAGS = -g -O9 -DDEBUG |
96 | 8 INCLUDE = -I../../../../../../include/TaskManager -I. -I.. |
9 LIBS = -L../../../../.. -lspemanager# -lm | |
90 | 10 |
11 .SUFFIXES: .cpp .o | |
12 | |
13 .cpp.o: | |
14 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ | |
15 | |
16 all: $(TARGET) | |
17 | |
18 $(TARGET): $(OBJS) | |
19 $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) | |
20 | |
21 clean: | |
22 rm -f $(TARGET) $(OBJS) | |
23 rm -f *~ \#* |