Added target 'links' which creates soft links to modules/libraries needed by gateway. Mostly for ad hoc testing.
This commit is contained in:
@ -32,6 +32,8 @@
|
|||||||
# are behind SS_DEBUG macros.
|
# are behind SS_DEBUG macros.
|
||||||
# 29/06/13 Vilho Raatikka Reverted Query classifier changes because
|
# 29/06/13 Vilho Raatikka Reverted Query classifier changes because
|
||||||
# gateway needs mysql client lib, not qc.
|
# gateway needs mysql client lib, not qc.
|
||||||
|
# 03/07/13 Vilho Raatikka Added target 'links' which creates links
|
||||||
|
# to libraries needed by gateway.
|
||||||
|
|
||||||
include ../../build_gateway.inc
|
include ../../build_gateway.inc
|
||||||
|
|
||||||
@ -76,6 +78,7 @@ gateway: $(OBJ)
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OBJ) gateway
|
rm -f $(OBJ) gateway
|
||||||
|
rm *.so
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
ctags $(SRCS) $(HDRS)
|
ctags $(SRCS) $(HDRS)
|
||||||
@ -87,4 +90,14 @@ depend:
|
|||||||
install: gateway
|
install: gateway
|
||||||
install -D $< $(DEST)
|
install -D $< $(DEST)
|
||||||
|
|
||||||
|
links:
|
||||||
|
ln -s $(ROOT_PATH)/epoll_v1.0/modules/routing/libdebugcli.so \
|
||||||
|
./libdebugcli.so
|
||||||
|
ln -s $(ROOT_PATH)/epoll_v1.0/modules/routing/libreadconnroute.so \
|
||||||
|
libreadconnroute.so
|
||||||
|
ln -s $(ROOT_PATH)/epoll_v1.0/modules/protocol/libMySQLClient.so \
|
||||||
|
libMySQLClient.so
|
||||||
|
ln -s $(ROOT_PATH)/epoll_v1.0/modules/protocol/libtelnetd.so \
|
||||||
|
libtelnetd.so
|
||||||
|
|
||||||
include depend.mk
|
include depend.mk
|
||||||
|
|||||||
Reference in New Issue
Block a user