diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-02-17 01:29:01 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-02-17 01:29:01 +0000 |
commit | a0a47f2767b6b17c6fdeeb2418e1371df25cbc6d (patch) | |
tree | 3f9f8004f16a7c1f5069a3e38ad60deac570e25f /tests/server | |
parent | 213017e9cfea983a8b8e38c1a591e77dd2ecb85e (diff) |
Better separate the library dependencies into those required by libcurl
and those required by other components to avoid forcing unneeded
dependencies into the target objects.
Diffstat (limited to 'tests/server')
-rw-r--r-- | tests/server/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/server/Makefile.am b/tests/server/Makefile.am index 9b20d5c99..21edfd3ef 100644 --- a/tests/server/Makefile.am +++ b/tests/server/Makefile.am @@ -36,11 +36,19 @@ useful = getpart.c getpart.h $(top_srcdir)/lib/strequal.c \ $(top_srcdir)/lib/memdebug.c $(top_srcdir)/lib/timeval.c resolve_SOURCES= resolve.c util.c util.h $(useful) +resolve_LDADD = @TEST_SERVER_LIBS@ + sws_SOURCES= sws.c util.c util.h $(useful) +sws_LDADD = @TEST_SERVER_LIBS@ + sockfilt_SOURCES = sockfilt.c util.c util.h $(useful) \ $(top_srcdir)/lib/inet_pton.c +sockfilt_LDADD = @TEST_SERVER_LIBS@ + getpart_SOURCES= testpart.c $(useful) + tftpd_SOURCES = tftpd.c util.c util.h $(useful) tftp.h +tftpd_LDADD = @TEST_SERVER_LIBS@ extra_DIST = base64.pl |