# HG changeset patch # User yutaka@henri.cr.ie.u-ryukyu.ac.jp # Date 1285848127 -32400 # Node ID c2ebafb2471f632e0f37cde943e736e65b72214b # Parent 4b59f003e3ceefa8e08eafd2dc58d24c2768045c fix diff -r 4b59f003e3ce -r c2ebafb2471f Renderer/Test/Makefile.cell --- a/Renderer/Test/Makefile.cell Fri Oct 01 19:26:10 2010 +0900 +++ b/Renderer/Test/Makefile.cell Thu Sep 30 21:02:07 2010 +0900 @@ -14,7 +14,7 @@ %.pb.cc: $(PROTODIR)/%.proto $(PROTO) $(PROTOFLAGS) $< -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 aquarium init_aquarium +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 aquarium network init_aquarium all: $(ALL) @@ -108,6 +108,10 @@ aquarium : $(AQUARIUM_OBJ) $(CC) -o $@ $? $(LIBS) $(PROTOLIBS) +NETWORK_OBJ = network_game.pb.o network.o +network : $(NETWORK_OBJ) + $(CC) -o $@ $? $(LIBS) $(PROTOLIBS) + INIT_AQUARIUM_OBJ = aquarium.pb.o init_aquarium.o init_aquarium : $(INIT_AQUARIUM_OBJ) $(CC) -o $@ $? $(LIBS) $(PROTOLIBS)