forked from mirrors/linphone-iphone
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@496 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
32 lines
682 B
Makefile
32 lines
682 B
Makefile
SUBDIRS=win_receiver win_sender
|
|
|
|
if BUILD_TESTS
|
|
|
|
noinst_PROGRAMS= rtpsend rtprecv mrtpsend mrtprecv test_timer rtpmemtest tevrtpsend tevrtprecv tevmrtprecv rtpsend_stupid
|
|
|
|
rtpsend_SOURCES= rtpsend.c
|
|
|
|
rtprecv_SOURCES= rtprecv.c
|
|
|
|
mrtpsend_SOURCES= mrtpsend.c
|
|
|
|
mrtprecv_SOURCES= mrtprecv.c
|
|
|
|
rtpmemtest_SOURCES= rtpmemtest.c
|
|
|
|
test_timer_SOURCES= test_timer.c
|
|
|
|
tevrtpsend_SOURCES= tevrtpsend.c
|
|
|
|
tevrtprecv_SOURCES= tevrtprecv.c
|
|
|
|
tevmrtprecv_SOURCES= tevmrtprecv.c
|
|
|
|
rtpsend_stupid_SOURCES=rtpsend_stupid.c
|
|
|
|
endif
|
|
|
|
AM_CFLAGS= -D_ORTP_SOURCE $(PTHREAD_CFLAGS)
|
|
AM_LDFLAGS= $(PTHREAD_LDFLAGS)
|
|
LDADD=$(top_builddir)/src/libortp.la $(SRTP_LIBS) $(SSL_LIBS)
|
|
INCLUDES=-I$(top_srcdir)/include/
|