diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-12-04 14:20:26 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-12-04 14:20:26 +0100 |
commit | 25dd7c7cf5182e846272fb7b6ea485d9f94b81e7 (patch) | |
tree | 5fa7b7a6afefd0f5f842fffad2afb3b8818542bc /test | |
parent | 774e2789774dcb35f7e9e4cfa41632e13e2ac09e (diff) |
Use correct flags from configure in tests.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index e5c60bf..b735c3c 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -6,8 +6,8 @@ amrwb_CXXFLAGS = $(CPPUNIT_CFLAGS) -DOUTPUT=\"amrwb\" -I../src amrwb_LDFLAGS = $(CPPUNIT_LIBS) -L../src/.libs/ -llrtp amrwb_SOURCES = test.cc test_amrwb.cc -opus_CXXFLAGS = $(CPPUNIT_CFLAGS) -DOUTPUT=\"opus\" -I../src -opus_LDFLAGS = $(CPPUNIT_LIBS) -L../src/.libs/ -llrtp -lopus -lao +opus_CXXFLAGS = $(CPPUNIT_CFLAGS) -DOUTPUT=\"opus\" -I../src $(OPUS_CFLAGS) +opus_LDFLAGS = $(CPPUNIT_LIBS) -L../src/.libs/ -llrtp $(OPUS_LIBS) opus_SOURCES = test.cc test_opus.cc init_CXXFLAGS = $(CPPUNIT_CFLAGS) -DOUTPUT=\"init\" -I../src |