~ubuntu-branches/ubuntu/warty/curl/warty-security

« back to all changes in this revision

Viewing changes to tests/libtest/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Domenico Andreoli
  • Date: 2004-06-04 19:09:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040604190925-wy048bp31320r2z6
Tags: 7.12.0.is.7.11.2-1
* Reverted to version 7.11.2 (closes: #252348).
* Disabled support for libidn (closes: #252367). This is to leave
  curl in unstable as much similar as possible to the one in testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#***************************************************************************
 
2
#                                  _   _ ____  _
 
3
#  Project                     ___| | | |  _ \| |
 
4
#                             / __| | | | |_) | |
 
5
#                            | (__| |_| |  _ <| |___
 
6
#                             \___|\___/|_| \_\_____|
 
7
#
 
8
# Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
 
9
#
 
10
# This software is licensed as described in the file COPYING, which
 
11
# you should have received as part of this distribution. The terms
 
12
# are also available at http://curl.haxx.se/docs/copyright.html.
 
13
#
 
14
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
 
15
# copies of the Software, and permit persons to whom the Software is
 
16
# furnished to do so, under the terms of the COPYING file.
 
17
#
 
18
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 
19
# KIND, either express or implied.
 
20
#
 
21
# $Id: Makefile.am,v 1.20 2004/04/14 06:30:38 bagder Exp $
 
22
###########################################################################
 
23
AUTOMAKE_OPTIONS = foreign nostdinc
 
24
 
 
25
# $(top_srcdir)/include/curl is for the main curl include files, to make it
 
26
# easier to include this specific set of curl headers, and NOT the ones
 
27
# possibly already installed in the system.
 
28
# -I$(top_srcdir)/lib is for the setup.h file, included by test.h
 
29
# -I$(top_builddir)/lib is for the config.h file, possibly included by the
 
30
# setup.h file
 
31
INCLUDES = -I$(top_srcdir)/include/curl \
 
32
           -I$(top_srcdir)/lib \
 
33
           -I$(top_builddir)/lib
 
34
 
 
35
LIBDIR = $(top_builddir)/lib
 
36
 
 
37
# these files are used in every single test program below
 
38
SUPPORTFILES = first.c test.h
 
39
 
 
40
# These are all libcurl test programs
 
41
noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 lib507 \
 
42
  lib508 lib509 lib510 lib511
 
43
 
 
44
lib500_SOURCES = lib500.c $(SUPPORTFILES)
 
45
lib500_LDADD = $(LIBDIR)/libcurl.la
 
46
lib500_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
47
 
 
48
lib501_SOURCES = lib501.c $(SUPPORTFILES)
 
49
lib501_LDADD = $(LIBDIR)/libcurl.la
 
50
lib501_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
51
 
 
52
lib502_SOURCES = lib502.c $(SUPPORTFILES)
 
53
lib502_LDADD = $(LIBDIR)/libcurl.la
 
54
lib502_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
55
 
 
56
lib503_SOURCES = lib503.c $(SUPPORTFILES)
 
57
lib503_LDADD = $(LIBDIR)/libcurl.la
 
58
lib503_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
59
 
 
60
lib504_SOURCES = lib504.c $(SUPPORTFILES)
 
61
lib504_LDADD = $(LIBDIR)/libcurl.la
 
62
lib504_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
63
 
 
64
lib505_SOURCES = lib505.c $(SUPPORTFILES)
 
65
lib505_LDADD = $(LIBDIR)/libcurl.la
 
66
lib505_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
67
 
 
68
lib506_SOURCES = lib506.c $(SUPPORTFILES)
 
69
lib506_LDADD = $(LIBDIR)/libcurl.la
 
70
lib506_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
71
 
 
72
lib507_SOURCES = lib507.c $(SUPPORTFILES)
 
73
lib507_LDADD = $(LIBDIR)/libcurl.la
 
74
lib507_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
75
 
 
76
lib508_SOURCES = lib508.c $(SUPPORTFILES)
 
77
lib508_LDADD = $(LIBDIR)/libcurl.la
 
78
lib508_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
79
 
 
80
lib509_SOURCES = lib509.c $(SUPPORTFILES)
 
81
lib509_LDADD = $(LIBDIR)/libcurl.la
 
82
lib509_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
83
 
 
84
lib510_SOURCES = lib510.c $(SUPPORTFILES)
 
85
lib510_LDADD = $(LIBDIR)/libcurl.la
 
86
lib510_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
87
 
 
88
lib511_SOURCES = lib511.c $(SUPPORTFILES)
 
89
lib511_LDADD = $(LIBDIR)/libcurl.la
 
90
lib511_DEPENDENCIES = $(LIBDIR)/libcurl.la