Added target 'links' which creates soft links to modules/libraries needed by gateway. Mostly for ad hoc testing.

This commit is contained in:
vraatikka 2013-07-03 19:43:14 +03:00
parent 77c759ac33
commit 560164025a

View File

@ -32,6 +32,8 @@
# are behind SS_DEBUG macros.
# 29/06/13 Vilho Raatikka Reverted Query classifier changes because
# 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
@ -76,6 +78,7 @@ gateway: $(OBJ)
clean:
rm -f $(OBJ) gateway
rm *.so
tags:
ctags $(SRCS) $(HDRS)
@ -87,4 +90,14 @@ depend:
install: gateway
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