diff Makefile.cell @ 5:57af5c610b34

iroiro add
author tkaito
date Mon, 07 Jun 2010 02:16:02 +0900
parents bb4b306c1248
children
line wrap: on
line diff
--- a/Makefile.cell	Sun Jun 06 06:47:45 2010 +0900
+++ b/Makefile.cell	Mon Jun 07 02:16:02 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 property_test create_task property_universe chain_old property_chain
+ALL = viewer dandy
 
 all: $(ALL)
 
@@ -28,78 +28,14 @@
 spe-main:
 	ln -s ../Engine/spe-main .
 
-
-BALL_BOUND_OBJ = ball_bound.o
-ball_bound : $(BALL_BOUND_OBJ) 
-	$(CC) -o $@ $?   $(LIBS)
-
-BOSS_OBJ = boss1_action.o
-boss1_action : $(BOSS_OBJ) 
-	$(CC) -o $@ $?   $(LIBS)
-
-DIRECTION_OBJ = direction.o
-direction : $(DIRECTION_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-GAPLAN_OBJ = gaplant.o gaplant_action.o back_action.o ball_action.o
-gaplant : $(GAPLAN_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-IESHOOT_OBJ = ieshoot.o
-ieshoot : $(IESHOOT_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-NODE_OBJ = node.o
-node : $(NODE_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-PANEL_OBJ = panel.o
-panel : $(PANEL_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-UNIV_OBJ = universe.o
-universe : $(UNIV_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-UNTITLED_OBJ = untitled.o
-untitled : $(UNTITLED_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-VACUUM_OBJ = vacuum.o cube.o game_over.o title.o
-vacuum : $(VACUUM_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-DYNAMIC_OBJ = dynamic_create.o 
-dynamic : $(DYNAMIC_OBJ) 
-	$(CC) -o $@ $?    $(LIBS)
-
-VIEWER_OBJ = viewer.o 
+VIEWER_OBJ = viewer.o
 viewer : $(VIEWER_OBJ) 
 	$(CC) -o $@ $?    $(LIBS)
 
-SG_CHANGE_OBJ = SgRootChange.o
-SgRootChange : $(SG_CHANGE_OBJ) 
-	$(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)
+DANDY_OBJ = dandy.o title.o game_over.o mydandy.o game_scene01.o greenclab.o
+dandy : $(DANDY_OBJ) 
+	$(CC) -o $@ $?    $(LIBS)
 
-P_UNIVERSE_OBJ = property_universe.o
-property_universe : $(P_UNIVERSE_OBJ)
-	$(CC) -o $@ $?   $(LIBS)
-
-CHAIN_OLD = chain_old.o
-chain_old : $(CHAIN_OLD)
-	$(CC) -o $@ $? $(LIBS)
-
-P_CHAIN_OBJ = property_chain.o
-property_chain : $(P_CHAIN_OBJ)
-	$(CC) -o $@ $? $(LIBS)
 	
 debug: $(TARGET)
 	sudo ppu-gdb ./$(TARGET)