Commit 78fe2cac authored by Dafydd Harries's avatar Dafydd Harries

move readline/util code from agent/ to nice/

darcs-hash:20070129170620-c9803-2db3a8d16538a68d3879e9107866bb640898abeb.gz
parent ac657a0f
...@@ -22,8 +22,6 @@ libagent_la_LIBADD = \ ...@@ -22,8 +22,6 @@ libagent_la_LIBADD = \
check_PROGRAMS = \ check_PROGRAMS = \
test \ test \
test-readline \
test-util \
test-add-stream \ test-add-stream \
test-recv \ test-recv \
test-stun \ test-stun \
...@@ -33,14 +31,6 @@ TESTS = $(check_PROGRAMS) ...@@ -33,14 +31,6 @@ TESTS = $(check_PROGRAMS)
test_LDADD = libagent.la $(GLIB_LIBS) test_LDADD = libagent.la $(GLIB_LIBS)
test_readline_SOURCES = test-readline.c readline.h readline.c
test_readline_LDADD = $(GLIB_LIBS)
test_util_SOURCES = test-util.c util.h util.c
test_util_LDADD = $(COMMON_LDADD)
test_add_stream_LDADD = $(COMMON_LDADD) test_add_stream_LDADD = $(COMMON_LDADD)
test_recv_LDADD = $(COMMON_LDADD) test_recv_LDADD = $(COMMON_LDADD)
......
...@@ -17,13 +17,28 @@ AM_CFLAGS = -Wall -Werror \ ...@@ -17,13 +17,28 @@ AM_CFLAGS = -Wall -Werror \
-I $(top_srcdir)/stun \ -I $(top_srcdir)/stun \
$(GLIB_CFLAGS) $(GLIB_CFLAGS)
ice_test_server_SOURCES = ice-test-server.c \ COMMON_LDADD = $(top_builddir)/agent/libagent.la $(GLIB_LIBS)
$(top_srcdir)/agent/readline.h \
$(top_srcdir)/agent/readline.c \ ice_test_server_SOURCES = \
$(top_srcdir)/agent/util.h \ ice-test-server.c \
$(top_srcdir)/agent/util.c readline.h \
readline.c \
ice_test_server_LDADD = \ util.h \
libnice.la \ util.c
$(GLIB_LIBS)
ice_test_server_LDADD = $(COMMON_LDADD)
check_PROGRAMS = \
test-readline \
test-util
test_readline_SOURCES = test-readline.c readline.h readline.c
test_readline_LDADD = $(COMMON_LDADD)
test_util_SOURCES = test-util.c util.h util.c
test_util_LDADD = $(COMMON_LDADD)
TESTS = test-readline test-util
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment