mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-10 01:40:26 +00:00
aaf064377c
Tue May 6 13:53:21 EDT 2008 Pekka Pessi <first.last@nokia.com> * tests: added 2nd check-based test suite for nua Wed May 7 08:26:48 EDT 2008 Pekka Pessi <first.last@nokia.com> * suite2_for_nua.c: more test cases Wed May 7 13:40:05 EDT 2008 Pekka Pessi <first.last@nokia.com> * suite2_for_nua.c, s2tester.[hc]: made it easier to refactor test cases Wed May 7 14:34:54 EDT 2008 Pekka Pessi <first.last@nokia.com> * test_nua: moved to tests subdirectory Wed May 7 14:37:06 EDT 2008 Pekka Pessi <first.last@nokia.com> * check_nua: moved to libsofia-sip-ua/nua Mon May 12 19:00:26 EDT 2008 Pekka Pessi <first.last@nokia.com> * check_nua: updated Tue May 13 16:45:21 EDT 2008 Pekka Pessi <first.last@nokia.com> * test_s2.h, test_s2.c: added internal DNS server Tue May 13 16:46:08 EDT 2008 Pekka Pessi <first.last@nokia.com> * check_register.c: added test case register_1_3_3_1 using tcp pingpong git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8400 d0543943-73ff-0310-b7d9-9358b9ac24b2
120 lines
2.9 KiB
Makefile
120 lines
2.9 KiB
Makefile
#
|
|
# Makefile.am for nua module
|
|
#
|
|
# Copyright (C) 2005,2006 Nokia Corporation
|
|
# Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
# Licensed under LGPL. See file COPYING.
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Header paths
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Build targets
|
|
|
|
noinst_LTLIBRARIES = libnua.la
|
|
|
|
check_PROGRAMS =
|
|
TESTS =
|
|
|
|
if HAVE_CHECK
|
|
check_PROGRAMS += check_nua
|
|
TESTS += check_nua
|
|
endif
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Rules for building the targets
|
|
|
|
BUILT_SOURCES = nua_tag_ref.c
|
|
|
|
nobase_include_sofia_HEADERS = \
|
|
sofia-sip/nua.h sofia-sip/nua_tag.h
|
|
|
|
libnua_la_SOURCES = nua.c nua_stack.h nua_common.c nua_stack.c \
|
|
nua_extension.c nua_types.h \
|
|
nua_dialog.c nua_dialog.h \
|
|
outbound.c outbound.h \
|
|
nua_params.c nua_params.h \
|
|
nua_register.c nua_registrar.c \
|
|
nua_session.c nua_options.c \
|
|
nua_message.c nua_publish.c nua_subnotref.c \
|
|
nua_notifier.c \
|
|
nua_event_server.c \
|
|
nua_tag.c nua_tag_ref.c
|
|
|
|
COVERAGE_INPUT = $(libnua_la_SOURCES) $(include_sofia_HEADERS)
|
|
|
|
check_nua_SOURCES = check_nua.c check_nua.h \
|
|
check_session.c check_register.c \
|
|
test_s2.h test_s2.c
|
|
|
|
check_nua_LDADD = $(nua_libs) @CHECK_LIBS@
|
|
|
|
nua_libs = libnua.la \
|
|
../iptsec/libiptsec.la \
|
|
../ipt/libipt.la \
|
|
../nea/libnea.la \
|
|
../nta/libnta.la \
|
|
../sresolv/libsresolv.la \
|
|
../tport/libtport.la \
|
|
../stun/libstun.la \
|
|
../soa/libsoa.la \
|
|
../sdp/libsdp.la \
|
|
../sip/libsip.la \
|
|
../http/libhttp.la \
|
|
../msg/libmsg.la \
|
|
../url/liburl.la \
|
|
../bnf/libbnf.la \
|
|
../su/libsu.la
|
|
|
|
test_nua_LDFLAGS = -static
|
|
|
|
libtestnua_la_SOURCES = test_nua.h test_ops.c \
|
|
test_init.c \
|
|
test_nua_api.c test_nua_params.c \
|
|
test_register.c test_basic_call.c \
|
|
test_offer_answer.c \
|
|
test_call_reject.c test_cancel_bye.c \
|
|
test_call_hold.c test_session_timer.c \
|
|
test_refer.c test_100rel.c \
|
|
test_sip_events.c test_simple.c \
|
|
test_extension.c
|
|
|
|
|
|
libtestproxy_la_SOURCES = test_proxy.h test_proxy.c
|
|
|
|
libtestnat_la_SOURCES = test_nat.h test_nat.c test_nat_tags.c
|
|
|
|
test_nua_SOURCES = test_nua.c
|
|
|
|
test_nua_LDADD = libnua.la libtestnua.la libtestproxy.la libtestnat.la \
|
|
../iptsec/libiptsec.la \
|
|
../ipt/libipt.la \
|
|
../nea/libnea.la \
|
|
../nta/libnta.la \
|
|
../sresolv/libsresolv.la \
|
|
../tport/libtport.la \
|
|
../stun/libstun.la \
|
|
../soa/libsoa.la \
|
|
../sdp/libsdp.la \
|
|
../sip/libsip.la \
|
|
../http/libhttp.la \
|
|
../msg/libmsg.la \
|
|
../url/liburl.la \
|
|
../bnf/libbnf.la \
|
|
../su/libsu.la
|
|
|
|
^ ^ ^ ^ ^ ^ ^
|
|
# ----------------------------------------------------------------------
|
|
# Install and distribution rules
|
|
|
|
EXTRA_DIST = nua.docs $(BUILT_SOURCES)
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Sofia specific rules
|
|
|
|
include $(top_srcdir)/rules/sofia.am
|
|
|
|
INCLUDES = ${INTERNAL_INCLUDES}
|
|
|
|
TAG_DLL_FLAGS = LIST=nua_tag_list
|