[tests] Change the db_test to link to the libopenbsc.a

This should keep the test compiling in the future. It will
link to the libopenbsc.a to get all symbols. We do this in
the other tests too.
This commit is contained in:
Holger Freyther 2009-04-12 05:37:07 +00:00
parent 3190a89e38
commit bab9cd9a27
2 changed files with 6 additions and 2 deletions

View File

@ -3,6 +3,6 @@ AM_CFLAGS=-Wall -ggdb3
noinst_PROGRAMS = db_test
db_test_SOURCES = db_test.c $(top_srcdir)/src/db.c $(top_srcdir)/src/gsm_subscriber.c
db_test_LDADD = -ldl -ldbi
db_test_SOURCES = db_test.c
db_test_LDADD = $(top_builddir)/src/libbsc.a -ldl -ldbi

View File

@ -100,3 +100,7 @@ int main() {
return 0;
}
/* stubs */
void input_event(void) {}
void nm_state_event(void) {}