William King 51f2442a9e resolve an automake warning about subdirs on latest automake
Latest automake will detect then warn if the Makefile uses source
files that are in subdirectories, but the subdirs option is not
set. In the FreeSWITCH build system the current expected behavior is
to expect the subdirs option to be enabled.

FS-7122 #resolve
2015-01-07 10:04:29 -08:00

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 = exit77.c
# ----------------------------------------------------------------------
# Tests
TESTS =
# ----------------------------------------------------------------------
# Sofia specific rules
include $(top_srcdir)/rules/sofia.am