summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-12-04 14:04:33 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2013-12-04 14:04:33 +0100
commit774e2789774dcb35f7e9e4cfa41632e13e2ac09e (patch)
tree61e473e901a89b6fb8a0652797e2b554b239c02e /test/Makefile
parent69ed1b39d8ee855e9fe4c7b0ea0cffea951c1d59 (diff)
Modernise autotools files. Convert all tests to cppunit.
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/Makefile b/test/Makefile
deleted file mode 100644
index 82fc79f..0000000
--- a/test/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-CFLAGS=`cppunit-config --cflags`
-LIBS=`cppunit-config --libs`
-
-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_$@
-
-asc2bin:
- g++ ${CFLAGS} ${LIBS} -g test.cc test_$@.cc -o test_$@
- ./test_$@