diff TaskManager/Test/simple_render/spe/Makefile @ 70:178459e03f5c

*** empty log message ***
author gongo
date Mon, 18 Feb 2008 01:13:00 +0900
parents
children 5da437ae84db
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TaskManager/Test/simple_render/spe/Makefile	Mon Feb 18 01:13:00 2008 +0900
@@ -0,0 +1,23 @@
+TARGET = ../spe-main
+
+SRCS = $(wildcard *.cpp)
+OBJS = $(SRCS:.cpp=.o)
+
+CC      = spu-g++
+CFLAGS  = -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 *~ \#*