blob: 993e17c1b837b8d85c10b945908b4ac61fd27089 [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001# Copyright (C) 1999-2005 Open Source Telecom Corporation.
2# Copyright (C) 2006-2010 David Sugar, Tycho Softworks.
3#
4# This file is free software; as a special exception the author gives
5# unlimited permission to copy and/or distribute it, with or without
6# modifications, as long as this notice is preserved.
7#
8# This program is distributed in the hope that it will be useful, but
9# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
12AUTOMAKE_OPTIONS = no-dependencies dist-shar
13LT_VERSION=@LT_CCXX_VERSION@
14#ignored for programs
15#$(LT_VERSION) -release $(LT_RELEASE)
16AM_CXXFLAGS = @WARN_FLAGS@ -I$(top_srcdir)/src
17ccxxincludedir=$(includedir)/cc++
18
19if SRTP_GCRYPT
20srtp_src = ccsrtptest
21ccsrtptest_SOURCES = ccsrtptest.cpp
22ccsrtptest_LDFLAGS = ../src/libccrtp1.la
23endif
24
25if SRTP_OPENSSL
26srtp_src = ccsrtptest
27ccsrtptest_SOURCES = ccsrtptest.cpp
28ccsrtptest_LDFLAGS = ../src/libccrtp1.la
29endif
30
31noinst_PROGRAMS = rtpsend rtplisten rtphello rtpduphello audiorx audiotx \
32 ccrtptest $(srtp_src)
33
34rtpsend_SOURCES = rtpsend.cpp
35rtpsend_LDFLAGS = ../src/libccrtp1.la
36
37rtplisten_SOURCES = rtplisten.cpp
38rtplisten_LDFLAGS = ../src/libccrtp1.la
39
40rtphello_SOURCES = rtphello.cpp
41rtphello_LDFLAGS = ../src/libccrtp1.la
42
43rtpduphello_SOURCES = rtpduphello.cpp
44rtpduphello_LDFLAGS = ../src/libccrtp1.la
45
46audiorx_SOURCES = audiorx.cpp audio.h
47audiorx_LDFLAGS = ../src/libccrtp1.la
48
49audiotx_SOURCES = audiotx.cpp
50audiotx_LDFLAGS = ../src/libccrtp1.la
51
52ccrtptest_SOURCES = ccrtptest.cpp
53ccrtptest_LDFLAGS = ../src/libccrtp1.la