comparison Makefile.cell @ 5:57af5c610b34

iroiro add
author tkaito
date Mon, 07 Jun 2010 02:16:02 +0900
parents bb4b306c1248
children
comparison
equal deleted inserted replaced
4:e089ac9ea221 5:57af5c610b34
9 .SUFFIXES: .cc .o .xml 9 .SUFFIXES: .cc .o .xml
10 10
11 .cc.o: 11 .cc.o:
12 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ 12 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
13 13
14 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 14 ALL = viewer dandy
15 15
16 all: $(ALL) 16 all: $(ALL)
17 17
18 speobject: 18 speobject:
19 cd spe; $(MAKE) 19 cd spe; $(MAKE)
26 26
27 27
28 spe-main: 28 spe-main:
29 ln -s ../Engine/spe-main . 29 ln -s ../Engine/spe-main .
30 30
31 31 VIEWER_OBJ = viewer.o
32 BALL_BOUND_OBJ = ball_bound.o
33 ball_bound : $(BALL_BOUND_OBJ)
34 $(CC) -o $@ $? $(LIBS)
35
36 BOSS_OBJ = boss1_action.o
37 boss1_action : $(BOSS_OBJ)
38 $(CC) -o $@ $? $(LIBS)
39
40 DIRECTION_OBJ = direction.o
41 direction : $(DIRECTION_OBJ)
42 $(CC) -o $@ $? $(LIBS)
43
44 GAPLAN_OBJ = gaplant.o gaplant_action.o back_action.o ball_action.o
45 gaplant : $(GAPLAN_OBJ)
46 $(CC) -o $@ $? $(LIBS)
47
48 IESHOOT_OBJ = ieshoot.o
49 ieshoot : $(IESHOOT_OBJ)
50 $(CC) -o $@ $? $(LIBS)
51
52 NODE_OBJ = node.o
53 node : $(NODE_OBJ)
54 $(CC) -o $@ $? $(LIBS)
55
56 PANEL_OBJ = panel.o
57 panel : $(PANEL_OBJ)
58 $(CC) -o $@ $? $(LIBS)
59
60 UNIV_OBJ = universe.o
61 universe : $(UNIV_OBJ)
62 $(CC) -o $@ $? $(LIBS)
63
64 UNTITLED_OBJ = untitled.o
65 untitled : $(UNTITLED_OBJ)
66 $(CC) -o $@ $? $(LIBS)
67
68 VACUUM_OBJ = vacuum.o cube.o game_over.o title.o
69 vacuum : $(VACUUM_OBJ)
70 $(CC) -o $@ $? $(LIBS)
71
72 DYNAMIC_OBJ = dynamic_create.o
73 dynamic : $(DYNAMIC_OBJ)
74 $(CC) -o $@ $? $(LIBS)
75
76 VIEWER_OBJ = viewer.o
77 viewer : $(VIEWER_OBJ) 32 viewer : $(VIEWER_OBJ)
78 $(CC) -o $@ $? $(LIBS) 33 $(CC) -o $@ $? $(LIBS)
79 34
80 SG_CHANGE_OBJ = SgRootChange.o 35 DANDY_OBJ = dandy.o title.o game_over.o mydandy.o game_scene01.o greenclab.o
81 SgRootChange : $(SG_CHANGE_OBJ) 36 dandy : $(DANDY_OBJ)
82 $(CC) -o $@ $? $(LIBS) 37 $(CC) -o $@ $? $(LIBS)
83 38
84 PROPERTY_TEST_OBJ = property_test.o
85 property_test : $(PROPERTY_TEST_OBJ)
86 $(CC) -o $@ $? $(LIBS)
87
88 CREATE_TASK_OBJ = create_task.o
89 create_task : $(CREATE_TASK_OBJ)
90 $(CC) -o $@ $? $(LIBS)
91
92 P_UNIVERSE_OBJ = property_universe.o
93 property_universe : $(P_UNIVERSE_OBJ)
94 $(CC) -o $@ $? $(LIBS)
95
96 CHAIN_OLD = chain_old.o
97 chain_old : $(CHAIN_OLD)
98 $(CC) -o $@ $? $(LIBS)
99
100 P_CHAIN_OBJ = property_chain.o
101 property_chain : $(P_CHAIN_OBJ)
102 $(CC) -o $@ $? $(LIBS)
103 39
104 debug: $(TARGET) 40 debug: $(TARGET)
105 sudo ppu-gdb ./$(TARGET) 41 sudo ppu-gdb ./$(TARGET)
106 42
107 depend: 43 depend: