Mercurial > hg > Game > Cerium
view TaskManager/Test/simple_render/test/LoadTexture/spe/Makefile @ 96:32be65e25785
*** empty log message ***
author | akira |
---|---|
date | Thu, 28 Feb 2008 20:05:23 +0900 |
parents | 312b535f121e |
children | 21958f9a31c7 |
line wrap: on
line source
TARGET = ../spe-main SRCS = $(wildcard *.cpp) OBJS = $(SRCS:.cpp=.o) CC = spu-g++ CFLAGS = -g -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 *~ \#*