diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/Makefile.am | 9 | ||||
-rw-r--r-- | src/test/dummy.c | 8 |
2 files changed, 15 insertions, 2 deletions
diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 0a62340..f6cb592 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -14,28 +14,33 @@ test_compandor_LDADD = \ $(top_builddir)/src/common/libcommon.a \ -lm -test_emphasis_SOURCES = test_emphasis.c +test_emphasis_SOURCES = test_emphasis.c dummy.c test_emphasis_LDADD = \ $(COMMON_LA) \ $(top_builddir)/src/common/libcommon.a \ + $(ALSA_LIBS) \ -lm test_dms_SOURCES = \ $(top_builddir)/src/nmt/dms.c \ - test_dms.c + test_dms.c \ + dummy.c test_dms_LDADD = \ $(COMMON_LA) \ $(top_builddir)/src/common/libcommon.a \ + $(ALSA_LIBS) \ -lm test_sms_SOURCES = \ $(top_builddir)/src/nmt/sms.c \ + dummy.c \ test_sms.c test_sms_LDADD = \ $(COMMON_LA) \ $(top_builddir)/src/common/libcommon.a \ + $(ALSA_LIBS) \ -lm diff --git a/src/test/dummy.c b/src/test/dummy.c new file mode 100644 index 0000000..a7a44bc --- /dev/null +++ b/src/test/dummy.c @@ -0,0 +1,8 @@ +void call_rx_audio() { } +void call_out_setup() { } +void call_out_release() { } +void call_out_disconnect() { } +void print_help() { } +void sender_send() { } +void sender_receive() { } + |