aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2009-02-11 00:33:51 +0000
committerHolger Freyther <zecke@selfish.org>2009-02-11 00:33:51 +0000
commit0df0f8774076733cad02a71b542452e553d2aafd (patch)
treec43a6904edda660febdc25174a1f01c1751d6e85 /tests
parenta6cd26cdaeee9facfbe064113920aa19cfc28f40 (diff)
[misc] Another set of build fixes...
We should compile the src into an archive file and then link to it.
Diffstat (limited to 'tests')
-rw-r--r--tests/sms/Makefile.am6
-rw-r--r--tests/sms/sms_test.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/tests/sms/Makefile.am b/tests/sms/Makefile.am
index 03ae57c89..d2b473678 100644
--- a/tests/sms/Makefile.am
+++ b/tests/sms/Makefile.am
@@ -1,13 +1,15 @@
INCLUDES = $(all_includes) -I$(top_srcdir)/include
noinst_PROGRAMS = sms_test
-sms_test_SOURCES = sms_test.c $(top_srcdir)/src/misdn.c \
+sms_test_SOURCES = sms_test.c $(top_srcdir)/src/input/misdn.c \
$(top_srcdir)/src/abis_rsl.c $(top_srcdir)/src/abis_nm.c \
$(top_srcdir)/src/gsm_04_08.c $(top_srcdir)/src/gsm_data.c \
$(top_srcdir)/src/gsm_subscriber.c $(top_srcdir)/src/msgb.c \
$(top_srcdir)/src/select.c $(top_srcdir)/src/chan_alloc.c \
$(top_srcdir)/src/timer.c $(top_srcdir)/src/debug.c \
$(top_srcdir)/src/db.c $(top_srcdir)/src/gsm_04_11.c \
- $(top_srcdir)/src/paging.c
+ $(top_srcdir)/src/paging.c $(top_srcdir)/src/e1_input.c \
+ $(top_srcdir)/src/e1_config.c $(top_srcdir)/src/subchan_demux.c \
+ $(top_srcdir)/src/trau_mux.c $(top_srcdir)/src/trau_frame.c
sms_test_LDADD = -ldl -ldbi
diff --git a/tests/sms/sms_test.c b/tests/sms/sms_test.c
index be166e43c..d850f3bd9 100644
--- a/tests/sms/sms_test.c
+++ b/tests/sms/sms_test.c
@@ -88,3 +88,6 @@ int main(int argc, char** argv)
gsm0411_send_sms(0, 0);
}
+
+/* stubs */
+void input_event(void) {}