forked from Mirrors/freeswitch
fe74d31573
* s2check: added s2base.[hc], s2sip.[hc] Ignore-this: 6a32b36a47a6f9dd2b5fec7c7375c564 Moved nua/test_s2 code here. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12388 d0543943-73ff-0310-b7d9-9358b9ac24b2
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
#
|
|
# Makefile.am for "Sofia-SIP 2 Check", module and unit testing library
|
|
#
|
|
# Copyright (C) 2009 Nokia Corporation
|
|
# Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
# Licensed under LGPL. See file COPYING.
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Header paths
|
|
|
|
INCLUDES = $(INTERNAL_INCLUDES)
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Build targets
|
|
|
|
noinst_LIBRARIES = libs2.a
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Rules for building the targets
|
|
|
|
libs2_a_SOURCES = s2check.h s2tcase.c \
|
|
s2base.h s2base.c \
|
|
s2sip.c s2sip.h \
|
|
s2_localinfo.h s2_localinfo.c \
|
|
s2dns.h s2dns.c \
|
|
s2util.h s2time.c
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Install and distribution rules
|
|
|
|
EXTRA_DIST =
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Tests
|
|
|
|
TESTS =
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Sofia specific rules
|
|
|
|
include $(top_srcdir)/rules/sofia.am
|