2004-03-09 16:49:46 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2007-04-03 14:25:18 -04:00
|
|
|
# Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-03-09 16:49:46 -05:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
###########################################################################
|
2002-02-25 07:44:58 -05:00
|
|
|
|
2006-08-07 14:06:37 -04:00
|
|
|
|
|
|
|
|
2002-02-25 07:44:58 -05:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2006-08-07 14:06:37 -04:00
|
|
|
INCLUDES = -I$(top_srcdir)/include \
|
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib
|
2003-10-09 04:12:43 -04:00
|
|
|
|
2005-09-15 16:36:28 -04:00
|
|
|
noinst_PROGRAMS = sws getpart sockfilt resolve tftpd
|
2002-02-25 07:44:58 -05:00
|
|
|
|
2005-04-18 02:57:44 -04:00
|
|
|
useful = getpart.c getpart.h $(top_srcdir)/lib/strequal.c \
|
|
|
|
$(top_srcdir)/lib/base64.c $(top_srcdir)/lib/mprintf.c \
|
2005-04-30 19:30:55 -04:00
|
|
|
$(top_srcdir)/lib/memdebug.c $(top_srcdir)/lib/timeval.c
|
2002-02-25 07:44:58 -05:00
|
|
|
|
2005-05-17 06:22:22 -04:00
|
|
|
resolve_SOURCES= resolve.c util.c util.h $(useful)
|
2007-02-16 20:29:01 -05:00
|
|
|
resolve_LDADD = @TEST_SERVER_LIBS@
|
|
|
|
|
2005-05-01 08:51:27 -04:00
|
|
|
sws_SOURCES= sws.c util.c util.h $(useful)
|
2007-02-16 20:29:01 -05:00
|
|
|
sws_LDADD = @TEST_SERVER_LIBS@
|
|
|
|
|
2005-05-01 08:51:27 -04:00
|
|
|
sockfilt_SOURCES = sockfilt.c util.c util.h $(useful) \
|
|
|
|
$(top_srcdir)/lib/inet_pton.c
|
2007-02-16 20:29:01 -05:00
|
|
|
sockfilt_LDADD = @TEST_SERVER_LIBS@
|
|
|
|
|
2005-04-18 02:57:44 -04:00
|
|
|
getpart_SOURCES= testpart.c $(useful)
|
2007-02-17 03:16:53 -05:00
|
|
|
# This is needed because of (unused) network debugging functions in memdebug.c
|
|
|
|
getpart_LDADD = @TEST_SERVER_LIBS@
|
2007-02-16 20:29:01 -05:00
|
|
|
|
2006-01-03 17:47:07 -05:00
|
|
|
tftpd_SOURCES = tftpd.c util.c util.h $(useful) tftp.h
|
2007-02-16 20:29:01 -05:00
|
|
|
tftpd_LDADD = @TEST_SERVER_LIBS@
|
2004-11-29 07:10:09 -05:00
|
|
|
|
2005-04-18 02:57:44 -04:00
|
|
|
extra_DIST = base64.pl
|
2005-09-15 16:36:28 -04:00
|
|
|
|