Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/simple_render/test/LoadTexture/spe/Makefile @ 90:312b535f121e
Initial revision
author | gongo |
---|---|
date | Wed, 27 Feb 2008 21:17:47 +0900 |
parents | |
children | 32be65e25785 |
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# -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 *~ \#*