diff Renderer/Test/Makefile.cell @ 755:8aaa29d3e874 draft

add Test/create_task {spe, task}/Property
author hiroki@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 29 Jan 2010 11:34:43 +0900
parents 18d31d18a6b2
children 06302c1dc87d
line wrap: on
line diff
--- a/Renderer/Test/Makefile.cell	Wed Jan 27 18:57:23 2010 +0900
+++ b/Renderer/Test/Makefile.cell	Fri Jan 29 11:34:43 2010 +0900
@@ -11,7 +11,7 @@
 .cc.o:
 	$(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
 
-ALL = spe-main ball_bound boss1_action direction gaplant ieshoot node panel universe untitled vacuum dynamic viewer SgRootChange
+ALL = spe-main ball_bound boss1_action direction gaplant ieshoot node panel universe untitled vacuum dynamic viewer SgRootChange property_test create_task
 all: $(ALL)
 
 speobject:
@@ -78,7 +78,15 @@
 
 SG_CHANGE_OBJ = SgRootChange.o
 SgRootChange : $(SG_CHANGE_OBJ) 
-	   $(CC) -o $@ $?   $(LIBS)
+	$(CC) -o $@ $?   $(LIBS)
+
+PROPERTY_TEST_OBJ = property_test.o
+property_test : $(PROPERTY_TEST_OBJ)
+	$(CC) -o $@ $?   $(LIBS)
+
+CREATE_TASK_OBJ = create_task.o
+create_task : $(CREATE_TASK_OBJ)
+	$(CC) -o $@ $?   $(LIBS)
 	
 debug: $(TARGET)
 	sudo ppu-gdb ./$(TARGET)