remove broker and add group command

This commit is contained in:
云风
2012-08-30 17:26:48 +08:00
parent f4a895fa6f
commit 4610781498
7 changed files with 36 additions and 129 deletions

View File

@@ -10,7 +10,6 @@ all : \
lualib/skynet.so \
service/gate.so \
service/client.so \
service/broker.so \
service/connection.so \
client \
lualib/socket.so \
@@ -66,9 +65,6 @@ service/connection.so : connection/connection.c connection/main.c
lualib/socket.so : connection/lua-socket.c
gcc $(CFLAGS) $(SHARED) $^ -o $@ -Iskynet-src -Iconnection
service/broker.so : service-src/service_broker.c
gcc $(CFLAGS) $(SHARED) $^ -o $@ -Iskynet-src
lualib/lpeg.so : lpeg/lpeg.c
gcc $(CFLAGS) $(SHARED) -O2 $^ -o $@ -Ilpeg