Mercurial > hg > Members > kono > Cerium
view 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 |
line wrap: on
line source
TARGET = ../spe-main SRCS = $(wildcard *.cpp) OBJS = $(SRCS:.cpp=.o) CC = spu-g++ CFLAGS = -g -O9 -DDEBUG INCLUDE = -I../../../../../../include/TaskManager -I. -I.. LIBS = -L../../../../.. -lspemanager# -lm .SUFFIXES: .cpp .o .cpp.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ all: $(TARGET) $(TARGET): $(OBJS) $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) clean: rm -f $(TARGET) $(OBJS) rm -f *~ \#*