~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to tests/server/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
@SET_MAKE@
16
16
 
17
 
#***************************************************************************
18
 
#                                  _   _ ____  _
19
 
#  Project                     ___| | | |  _ \| |
20
 
#                             / __| | | | |_) | |
21
 
#                            | (__| |_| |  _ <| |___
22
 
#                             \___|\___/|_| \_\_____|
23
 
#
24
 
# Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
25
 
#
26
 
# This software is licensed as described in the file COPYING, which
27
 
# you should have received as part of this distribution. The terms
28
 
# are also available at http://curl.haxx.se/docs/copyright.html.
29
 
#
30
 
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
31
 
# copies of the Software, and permit persons to whom the Software is
32
 
# furnished to do so, under the terms of the COPYING file.
33
 
#
34
 
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
35
 
# KIND, either express or implied.
36
 
#
37
 
# $Id: Makefile.am,v 1.21 2007-04-03 18:25:18 yangtse Exp $
38
 
###########################################################################
39
 
 
40
17
srcdir = @srcdir@
41
18
top_srcdir = @top_srcdir@
42
19
VPATH = @srcdir@
64
41
subdir = tests/server
65
42
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
66
43
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
67
 
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
68
 
        $(top_srcdir)/configure.ac
 
44
am__aclocal_m4_deps = $(top_srcdir)/m4/curl-compilers.m4 \
 
45
        $(top_srcdir)/m4/curl-confopts.m4 \
 
46
        $(top_srcdir)/m4/curl-functions.m4 \
 
47
        $(top_srcdir)/m4/curl-override.m4 \
 
48
        $(top_srcdir)/m4/curl-reentrant.m4 \
 
49
        $(top_srcdir)/m4/curl-system.m4 $(top_srcdir)/m4/libtool.m4 \
 
50
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
51
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
52
        $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
69
53
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
70
54
        $(ACLOCAL_M4)
71
55
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
72
56
CONFIG_HEADER = $(top_builddir)/lib/config.h \
73
 
        $(top_builddir)/src/config.h
 
57
        $(top_builddir)/src/config.h \
 
58
        $(top_builddir)/include/curl/curlbuild.h
74
59
CONFIG_CLEAN_FILES =
75
60
PROGRAMS = $(noinst_PROGRAMS)
76
61
am__objects_1 = getpart.$(OBJEXT) strequal.$(OBJEXT) base64.$(OBJEXT) \
91
76
am_tftpd_OBJECTS = tftpd.$(OBJEXT) util.$(OBJEXT) $(am__objects_1)
92
77
tftpd_OBJECTS = $(am_tftpd_OBJECTS)
93
78
tftpd_DEPENDENCIES =
94
 
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/lib -I$(top_builddir)/src
 
79
DEFAULT_INCLUDES = 
95
80
depcomp = $(SHELL) $(top_srcdir)/depcomp
96
81
am__depfiles_maybe = depfiles
97
82
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
126
111
CPPFLAGS = @CPPFLAGS@
127
112
CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@
128
113
CROSSCOMPILING_TRUE = @CROSSCOMPILING_TRUE@
 
114
CURL_CA_BUNDLE = @CURL_CA_BUNDLE@
129
115
CURL_DISABLE_DICT = @CURL_DISABLE_DICT@
130
116
CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
131
117
CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
132
118
CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
133
119
CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
134
120
CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
 
121
CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
135
122
CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
136
123
CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
137
124
CURL_LIBS = @CURL_LIBS@
140
127
DEPDIR = @DEPDIR@
141
128
DLLTOOL = @DLLTOOL@
142
129
DSYMUTIL = @DSYMUTIL@
143
 
ECHO = @ECHO@
 
130
DUMPBIN = @DUMPBIN@
144
131
ECHO_C = @ECHO_C@
145
132
ECHO_N = @ECHO_N@
146
133
ECHO_T = @ECHO_T@
147
134
EGREP = @EGREP@
148
135
EXEEXT = @EXEEXT@
 
136
FGREP = @FGREP@
149
137
GREP = @GREP@
150
138
HAVE_ARES = @HAVE_ARES@
151
139
HAVE_LIBZ = @HAVE_LIBZ@
159
147
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
160
148
IPV6_ENABLED = @IPV6_ENABLED@
161
149
KRB4_ENABLED = @KRB4_ENABLED@
 
150
LD = @LD@
162
151
LDFLAGS = @LDFLAGS@
163
152
LIBCURL_LIBS = @LIBCURL_LIBS@
164
153
LIBOBJS = @LIBOBJS@
165
154
LIBS = @LIBS@
166
155
LIBTOOL = @LIBTOOL@
 
156
LIPO = @LIPO@
167
157
LN_S = @LN_S@
168
158
LTLIBOBJS = @LTLIBOBJS@
169
159
MAINT = @MAINT@
173
163
MANOPT = @MANOPT@
174
164
MIMPURE_FALSE = @MIMPURE_FALSE@
175
165
MIMPURE_TRUE = @MIMPURE_TRUE@
 
166
NM = @NM@
176
167
NMEDIT = @NMEDIT@
177
168
NO_UNDEFINED_FALSE = @NO_UNDEFINED_FALSE@
178
169
NO_UNDEFINED_TRUE = @NO_UNDEFINED_TRUE@
179
170
NROFF = @NROFF@
180
171
OBJDUMP = @OBJDUMP@
181
172
OBJEXT = @OBJEXT@
 
173
OTOOL = @OTOOL@
 
174
OTOOL64 = @OTOOL64@
182
175
PACKAGE = @PACKAGE@
183
176
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
184
177
PACKAGE_NAME = @PACKAGE_NAME@
185
178
PACKAGE_STRING = @PACKAGE_STRING@
186
179
PACKAGE_TARNAME = @PACKAGE_TARNAME@
187
180
PACKAGE_VERSION = @PACKAGE_VERSION@
 
181
PATH = @PATH@
188
182
PATH_SEPARATOR = @PATH_SEPARATOR@
189
183
PERL = @PERL@
190
184
PKGADD_NAME = @PKGADD_NAME@
197
191
SED = @SED@
198
192
SET_MAKE = @SET_MAKE@
199
193
SHELL = @SHELL@
 
194
SONAME_BUMP_FALSE = @SONAME_BUMP_FALSE@
 
195
SONAME_BUMP_TRUE = @SONAME_BUMP_TRUE@
200
196
SSL_ENABLED = @SSL_ENABLED@
201
197
STATICLIB_FALSE = @STATICLIB_FALSE@
202
198
STATICLIB_TRUE = @STATICLIB_TRUE@
203
199
STRIP = @STRIP@
 
200
SUPPORT_FEATURES = @SUPPORT_FEATURES@
 
201
SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
204
202
TEST_SERVER_LIBS = @TEST_SERVER_LIBS@
205
203
USE_GNUTLS = @USE_GNUTLS@
206
204
USE_LIBSSH2 = @USE_LIBSSH2@
212
210
VERSION = @VERSION@
213
211
VERSIONNUM = @VERSIONNUM@
214
212
ac_ct_CC = @ac_ct_CC@
 
213
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
215
214
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
216
215
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
217
216
am__include = @am__include@
244
243
libext = @libext@
245
244
localedir = @localedir@
246
245
localstatedir = @localstatedir@
 
246
lt_ECHO = @lt_ECHO@
247
247
mandir = @mandir@
248
248
mkdir_p = @mkdir_p@
249
249
oldincludedir = @oldincludedir@
256
256
subdirs = @subdirs@
257
257
sysconfdir = @sysconfdir@
258
258
target_alias = @target_alias@
259
 
AUTOMAKE_OPTIONS = foreign
260
 
INCLUDES = -I$(top_srcdir)/include \
261
 
           -I$(top_builddir)/lib   \
 
259
 
 
260
#***************************************************************************
 
261
#                                  _   _ ____  _
 
262
#  Project                     ___| | | |  _ \| |
 
263
#                             / __| | | | |_) | |
 
264
#                            | (__| |_| |  _ <| |___
 
265
#                             \___|\___/|_| \_\_____|
 
266
#
 
267
# Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
 
268
#
 
269
# This software is licensed as described in the file COPYING, which
 
270
# you should have received as part of this distribution. The terms
 
271
# are also available at http://curl.haxx.se/docs/copyright.html.
 
272
#
 
273
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
 
274
# copies of the Software, and permit persons to whom the Software is
 
275
# furnished to do so, under the terms of the COPYING file.
 
276
#
 
277
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 
278
# KIND, either express or implied.
 
279
#
 
280
# $Id: Makefile.am,v 1.23 2008-08-07 00:29:09 yangtse Exp $
 
281
###########################################################################
 
282
AUTOMAKE_OPTIONS = foreign nostdinc
 
283
 
 
284
# Specify our include paths here, and do it relative to $(top_srcdir) and
 
285
# $(top_builddir), to ensure that these paths which belong to the library
 
286
# being currently built and tested are searched before the library which
 
287
# might possibly already be installed in the system.
 
288
#
 
289
# $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
 
290
# $(top_srcdir)/include is for libcurl's external include files
 
291
# $(top_builddir)/lib is for libcurl's generated lib/config.h file
 
292
# $(top_srcdir)/lib is for libcurl's lib/setup.h and other "borrowed" files
 
293
INCLUDES = -I$(top_builddir)/include \
 
294
           -I$(top_srcdir)/include   \
 
295
           -I$(top_builddir)/lib     \
262
296
           -I$(top_srcdir)/lib 
263
297
 
264
298
useful = getpart.c getpart.h $(top_srcdir)/lib/strequal.c       \