2004-01-13 09:57:01 +01:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
2004-01-13 08:38:26 +01:00
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
|
|
|
# Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
#
|
2004-01-13 09:57:01 +01: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.
|
2004-01-13 08:38:26 +01:00
|
|
|
#
|
|
|
|
# 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
|
2004-01-13 09:57:01 +01:00
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
2004-01-13 08:38:26 +01:00
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# $Id$
|
2004-01-13 09:57:01 +01:00
|
|
|
###########################################################################
|
2001-08-03 08:39:00 +02:00
|
|
|
EXTRA_DIST = ftpserver.pl httpserver.pl httpsserver.pl runtests.pl \
|
2003-10-29 10:13:53 +01:00
|
|
|
ftpsserver.pl getpart.pm FILEFORMAT README \
|
2004-03-23 17:11:01 +01:00
|
|
|
stunnel.pem memanalyze.pl testcurl.pl
|
2001-01-08 18:38:23 +01:00
|
|
|
|
2002-12-12 13:20:33 +01:00
|
|
|
SUBDIRS = data server libtest
|
2000-11-10 16:24:09 +01:00
|
|
|
|
2001-05-28 23:49:45 +02:00
|
|
|
PERLFLAGS = -I$(srcdir)
|
|
|
|
|
2003-08-07 16:14:54 +02:00
|
|
|
CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid
|
|
|
|
|
2000-11-22 15:15:15 +01:00
|
|
|
curl:
|
2003-08-05 01:13:39 +02:00
|
|
|
@cd $(top_builddir) && $(MAKE)
|
2000-11-22 15:15:15 +01:00
|
|
|
|
2004-03-29 14:38:41 +02:00
|
|
|
test: all
|
2001-05-28 23:49:45 +02:00
|
|
|
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
|
2000-11-10 16:24:09 +01:00
|
|
|
|
2004-03-29 14:38:41 +02:00
|
|
|
quiet-test: all
|
2001-05-28 23:49:45 +02:00
|
|
|
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -s -a
|
2000-11-17 16:30:01 +01:00
|
|
|
|
2004-03-29 14:38:41 +02:00
|
|
|
full-test: all
|
2004-04-13 07:58:19 +02:00
|
|
|
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -a -p
|
2004-05-17 12:54:00 +02:00
|
|
|
|
|
|
|
torture-test: all
|
|
|
|
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -t
|