From 60f60cc76e43197a0825ffac9aff0b7007a94175 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 20 Nov 2013 12:57:17 +0100 Subject: Framework API now complete in its first iteration. So far with support for raw, opus and amrwb. --- test/Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 test/Makefile (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..49bcf0d --- /dev/null +++ b/test/Makefile @@ -0,0 +1,29 @@ +all: connectivity amrwb init rtp srtp opus raw + +connectivity: + g++ -g test_$@.cc -L../src/.libs -llrtp -I../src -o test_$@ + LD_LIBRARY_PATH=../src/.libs ./test_$@ + +amrwb: + g++ -g test_$@.cc -L../src/.libs -llrtp -lm -I../src -o test_$@ + LD_LIBRARY_PATH=../src/.libs ./test_$@ + +opus: + g++ -g test_$@.cc -L../src/.libs -llrtp -lm -I../src -lopus -lao -o test_$@ + LD_LIBRARY_PATH=../src/.libs ./test_$@ + +init: + g++ -g test_$@.cc -L../src/.libs -llrtp -I../src -o test_$@ + LD_LIBRARY_PATH=../src/.libs ./test_$@ + +raw: + g++ -g test_$@.cc -L../src/.libs -llrtp -I../src -o test_$@ + LD_LIBRARY_PATH=../src/.libs ./test_$@ + +rtp: + g++ -g test_$@.cc ../src/rtp.cc -o test_$@ + ./test_$@ + +srtp: + g++ -g -DUSE_CRYPTO test_$@.cc ../src/rtp.cc ../src/srtp.cc ../src/asc2bin.cc -lsrtp -o test_$@ + ./test_$@ -- cgit v1.2.3