diff options
Diffstat (limited to 'tests/server/Makefile.inc')
-rw-r--r-- | tests/server/Makefile.inc | 113 |
1 files changed, 37 insertions, 76 deletions
diff --git a/tests/server/Makefile.inc b/tests/server/Makefile.inc index 88c5ccfaa..94e9e7514 100644 --- a/tests/server/Makefile.inc +++ b/tests/server/Makefile.inc @@ -1,100 +1,61 @@ noinst_PROGRAMS = getpart resolve rtspd sockfilt sws tftpd -getpart_SOURCES = testpart.c \ - getpart.c \ - getpart.h \ - $(top_srcdir)/lib/base64.c \ - $(top_srcdir)/lib/base64.h \ - $(top_srcdir)/lib/curlx.h \ - $(top_srcdir)/lib/memdebug.c \ - $(top_srcdir)/lib/memdebug.h \ +CURLX_SRCS = \ $(top_srcdir)/lib/mprintf.c \ - $(top_srcdir)/lib/warnless.c \ + $(top_srcdir)/lib/nonblock.c \ + $(top_srcdir)/lib/strequal.c \ + $(top_srcdir)/lib/strtoofft.c \ + $(top_srcdir)/lib/timeval.c \ + $(top_srcdir)/lib/warnless.c + +CURLX_HDRS = \ + $(top_srcdir)/lib/curlx.h \ + $(top_srcdir)/lib/nonblock.h \ + $(top_srcdir)/lib/strequal.h \ + $(top_srcdir)/lib/strtoofft.h \ + $(top_srcdir)/lib/timeval.h \ $(top_srcdir)/lib/warnless.h -getpart_LDADD = @TEST_SERVER_LIBS@ -getpart_CFLAGS = $(AM_CFLAGS) -resolve_SOURCES = resolve.c \ +USEFUL = \ getpart.c \ getpart.h \ $(top_srcdir)/lib/base64.c \ $(top_srcdir)/lib/base64.h \ - $(top_srcdir)/lib/curlx.h \ $(top_srcdir)/lib/memdebug.c \ - $(top_srcdir)/lib/memdebug.h \ - $(top_srcdir)/lib/mprintf.c \ - $(top_srcdir)/lib/warnless.c \ - $(top_srcdir)/lib/warnless.h + $(top_srcdir)/lib/memdebug.h + +UTIL = \ + util.c \ + util.h + +getpart_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) \ + testpart.c +getpart_LDADD = @TEST_SERVER_LIBS@ +getpart_CFLAGS = $(AM_CFLAGS) + +resolve_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \ + resolve.c resolve_LDADD = @TEST_SERVER_LIBS@ resolve_CFLAGS = $(AM_CFLAGS) -rtspd_SOURCES = rtspd.c \ - getpart.c \ - getpart.h \ - util.c \ - util.h \ - $(top_srcdir)/lib/base64.c \ - $(top_srcdir)/lib/base64.h \ - $(top_srcdir)/lib/curlx.h \ - $(top_srcdir)/lib/memdebug.c \ - $(top_srcdir)/lib/memdebug.h \ - $(top_srcdir)/lib/mprintf.c \ - $(top_srcdir)/lib/strequal.c \ - $(top_srcdir)/lib/timeval.c \ - $(top_srcdir)/lib/warnless.c \ - $(top_srcdir)/lib/warnless.h +rtspd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \ + rtspd.c rtspd_LDADD = @TEST_SERVER_LIBS@ rtspd_CFLAGS = $(AM_CFLAGS) -sockfilt_SOURCES = sockfilt.c \ - getpart.c \ - getpart.h \ - util.c \ - util.h \ - $(top_srcdir)/lib/base64.c \ - $(top_srcdir)/lib/base64.h \ - $(top_srcdir)/lib/curlx.h \ - $(top_srcdir)/lib/inet_pton.c \ - $(top_srcdir)/lib/memdebug.c \ - $(top_srcdir)/lib/memdebug.h \ - $(top_srcdir)/lib/mprintf.c \ - $(top_srcdir)/lib/timeval.c \ - $(top_srcdir)/lib/warnless.c \ - $(top_srcdir)/lib/warnless.h +sockfilt_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \ + sockfilt.c \ + $(top_srcdir)/lib/inet_pton.c sockfilt_LDADD = @TEST_SERVER_LIBS@ sockfilt_CFLAGS = $(AM_CFLAGS) -sws_SOURCES = sws.c \ - getpart.c \ - getpart.h \ - util.c \ - util.h \ - $(top_srcdir)/lib/base64.c \ - $(top_srcdir)/lib/base64.h \ - $(top_srcdir)/lib/curlx.h \ - $(top_srcdir)/lib/memdebug.c \ - $(top_srcdir)/lib/memdebug.h \ - $(top_srcdir)/lib/mprintf.c \ - $(top_srcdir)/lib/strequal.c \ - $(top_srcdir)/lib/timeval.c \ - $(top_srcdir)/lib/warnless.c \ - $(top_srcdir)/lib/warnless.h +sws_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \ + sws.c sws_LDADD = @TEST_SERVER_LIBS@ sws_CFLAGS = $(AM_CFLAGS) -tftpd_SOURCES = tftpd.c tftp.h \ - getpart.c \ - getpart.h \ - util.c \ - util.h \ - $(top_srcdir)/lib/base64.c \ - $(top_srcdir)/lib/base64.h \ - $(top_srcdir)/lib/curlx.h \ - $(top_srcdir)/lib/memdebug.c \ - $(top_srcdir)/lib/memdebug.h \ - $(top_srcdir)/lib/mprintf.c \ - $(top_srcdir)/lib/timeval.c \ - $(top_srcdir)/lib/warnless.c \ - $(top_srcdir)/lib/warnless.h +tftpd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \ + tftpd.c \ + tftp.h tftpd_LDADD = @TEST_SERVER_LIBS@ tftpd_CFLAGS = $(AM_CFLAGS) |