summaryrefslogtreecommitdiff
path: root/pjnath/build/Makefile
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-06-06 14:47:10 +0000
committerBenny Prijono <bennylp@teluu.com>2008-06-06 14:47:10 +0000
commit8ec5bd6b3d5bafb1d3ab11236a3adc45ac5f04d8 (patch)
tree75c82cf12d34d58e3ccf64e6eb08e8628e8f94cf /pjnath/build/Makefile
parent77825e4c00356383e69f3fc4c63eccd0a3aa103f (diff)
Major major modifications related to ticket #485 (support for TURN-07):
- Added STUN socket transport pj_stun_sock - Integration of TURN-07 to ICE - Major refactoring in ICE stream transport to make it simpler - Major modification (i.e. API change) in almost everywhere else - Much more elaborate STUN, TURN, and ICE tests in pjnath-test git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1988 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjnath/build/Makefile')
-rw-r--r--pjnath/build/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/pjnath/build/Makefile b/pjnath/build/Makefile
index a80fcdad..9292ba59 100644
--- a/pjnath/build/Makefile
+++ b/pjnath/build/Makefile
@@ -31,15 +31,16 @@ export _LDFLAGS := $(subst /,$(HOST_PSEP),$(PJNATH_LIB)) \
export PJNATH_SRCDIR = ../src/pjnath
export PJNATH_OBJS += $(OS_OBJS) $(M_OBJS) $(CC_OBJS) $(HOST_OBJS) \
errno.o ice_session.o ice_strans.o nat_detect.o stun_auth.o \
- stun_msg.o stun_msg_dump.o stun_session.o stun_transaction.o \
- turn_session.o turn_sock.o
+ stun_msg.o stun_msg_dump.o stun_session.o stun_sock.o \
+ stun_transaction.o turn_session.o turn_sock.o
export PJNATH_CFLAGS += $(_CFLAGS)
###############################################################################
# Defines for building test application
#
export PJNATH_TEST_SRCDIR = ../src/pjnath-test
-export PJNATH_TEST_OBJS += ice_test.o stun.o sess_auth.o test.o
+export PJNATH_TEST_OBJS += ice_test.o stun.o sess_auth.o server.o \
+ stun_sock_test.o turn_sock_test.o test.o
export PJNATH_TEST_CFLAGS += $(_CFLAGS)
export PJNATH_TEST_LDFLAGS += $(_LDFLAGS)
export PJNATH_TEST_EXE:=../bin/pjnath-test-$(TARGET_NAME)$(HOST_EXE)