~ubuntu-branches/ubuntu/maverick/curl/maverick

« back to all changes in this revision

Viewing changes to tests/server/Makefile.inc

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-05-26 18:58:51 UTC
  • mfrom: (3.3.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090526185851-t1gun9nboi5kbd9u
Tags: 7.19.5-1ubuntu1
* Merge from Debian unstable (LP: #380281), remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* Fixes LP: #379477

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
noinst_PROGRAMS = sws getpart sockfilt resolve tftpd
 
2
 
 
3
useful = getpart.c getpart.h $(top_srcdir)/lib/strequal.c       \
 
4
 $(top_srcdir)/lib/base64.c $(top_srcdir)/lib/mprintf.c         \
 
5
 $(top_srcdir)/lib/memdebug.c $(top_srcdir)/lib/timeval.c
 
6
 
 
7
resolve_SOURCES= resolve.c util.c util.h $(useful)
 
8
resolve_LDADD = @TEST_SERVER_LIBS@
 
9
 
 
10
sws_SOURCES= sws.c util.c util.h $(useful)
 
11
sws_LDADD = @TEST_SERVER_LIBS@
 
12
 
 
13
sockfilt_SOURCES = sockfilt.c util.c util.h $(useful)   \
 
14
 $(top_srcdir)/lib/inet_pton.c
 
15
sockfilt_LDADD = @TEST_SERVER_LIBS@
 
16
 
 
17
getpart_SOURCES= testpart.c $(useful)
 
18
# This is needed because of (unused) network debugging functions in memdebug.c
 
19
getpart_LDADD = @TEST_SERVER_LIBS@
 
20
 
 
21
tftpd_SOURCES = tftpd.c util.c util.h $(useful) tftp.h
 
22
tftpd_LDADD = @TEST_SERVER_LIBS@