mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 17:02:23 +00:00
The file 'libs/sofia-sip/s2check/exit77.c' was moved in order to silence the warning and to keep the build working. There might be a build problem that results from this file move, but after serveral build tests I have not found one. The contents of the file are specifically for the make check target, so I believe it would be highly unlikely to cause problems with any production feature. FS-7122 #resolve
44 lines
1.1 KiB
Makefile
44 lines
1.1 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.
|
|
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Header paths
|
|
|
|
AM_CPPFLAGS = $(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
|