Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/simple_render/spe/Makefile @ 76:5a1a5f4c28fd
*** empty log message ***
author | gongo |
---|---|
date | Mon, 18 Feb 2008 11:40:11 +0900 |
parents | 5da437ae84db |
children | 83b57e03d3ef |
line wrap: on
line source
TARGET = ../spe-main SRCS = $(wildcard *.cpp) OBJS = $(SRCS:.cpp=.o) CC = spu-g++ CFLAGS = #-O9 #-g -Wall# -DDEBUG INCLUDE = -I../../../../include/TaskManager -I. -I.. LIBS = -L../../.. -lspemanager .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 *~ \#*