summaryrefslogtreecommitdiff
path: root/pjlib-util/build/Makefile
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-02-25 15:38:32 +0000
committerBenny Prijono <bennylp@teluu.com>2007-02-25 15:38:32 +0000
commita34fbb64e27b5075a4207318ba356349669b4f08 (patch)
treefb9705d9e0164747e4a17ba0fc723abb4abba791 /pjlib-util/build/Makefile
parent3692bfe973fa350b52445119e3270199b88dfa7e (diff)
Updated VS8 and EVC4 project with new STUN files and added SHA1, HMAC-MD5, and HMAC-SHA1 encryption
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1001 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib-util/build/Makefile')
-rw-r--r--pjlib-util/build/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/pjlib-util/build/Makefile b/pjlib-util/build/Makefile
index f0973106..c7ff0dfa 100644
--- a/pjlib-util/build/Makefile
+++ b/pjlib-util/build/Makefile
@@ -26,15 +26,17 @@ export _LDFLAGS := $(subst /,$(HOST_PSEP),$(PJLIB_UTIL_LIB)) \
#
export PJLIB_UTIL_SRCDIR = ../src/pjlib-util
export PJLIB_UTIL_OBJS += $(OS_OBJS) $(M_OBJS) $(CC_OBJS) $(HOST_OBJS) \
- errno.o dns.o dns_dump.o getopt.o md5.o resolver.o \
- scanner.o string.o stun_simple.o stun_simple_client.o xml.o
+ errno.o dns.o dns_dump.o getopt.o \
+ hmac_md5.o hmac_sha1.o md5.o resolver.o \
+ scanner.o sha1.o string.o stun_simple.o \
+ stun_simple_client.o xml.o
export PJLIB_UTIL_CFLAGS += $(_CFLAGS)
###############################################################################
# Defines for building test application
#
export UTIL_TEST_SRCDIR = ../src/pjlib-util-test
-export UTIL_TEST_OBJS += xml.o test.o
+export UTIL_TEST_OBJS += xml.o encryption.o test.o
export UTIL_TEST_CFLAGS += $(_CFLAGS)
export UTIL_TEST_LDFLAGS += $(_LDFLAGS)
export UTIL_TEST_EXE:=../bin/pjlib-util-test-$(TARGET_NAME)$(HOST_EXE)