~ubuntu-branches/ubuntu/raring/curl/raring-proposed

« back to all changes in this revision

Viewing changes to tests/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-08-20 13:54:01 UTC
  • mfrom: (3.4.30 sid)
  • Revision ID: package-import@ubuntu.com-20120820135401-5845kg6puoh2jcnh
Tags: 7.27.0-1ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#                            | (__| |_| |  _ <| |___
22
22
#                             \___|\___/|_| \_\_____|
23
23
#
24
 
# Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
 
24
# Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
25
25
#
26
26
# This software is licensed as described in the file COPYING, which
27
27
# you should have received as part of this distribution. The terms
110
110
CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
111
111
CPP = @CPP@
112
112
CPPFLAGS = @CPPFLAGS@
 
113
CPPFLAG_CURL_STATICLIB = @CPPFLAG_CURL_STATICLIB@
113
114
CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@
114
115
CROSSCOMPILING_TRUE = @CROSSCOMPILING_TRUE@
115
116
CURLDEBUG_FALSE = @CURLDEBUG_FALSE@
168
169
LD = @LD@
169
170
LDFLAGS = @LDFLAGS@
170
171
LIBCURL_LIBS = @LIBCURL_LIBS@
 
172
LIBMETALINK_CFLAGS = @LIBMETALINK_CFLAGS@
 
173
LIBMETALINK_LDFLAGS = @LIBMETALINK_LDFLAGS@
 
174
LIBMETALINK_LIBS = @LIBMETALINK_LIBS@
171
175
LIBOBJS = @LIBOBJS@
172
176
LIBS = @LIBS@
173
177
LIBTOOL = @LIBTOOL@
225
229
USE_CPPFLAG_CURL_STATICLIB_FALSE = @USE_CPPFLAG_CURL_STATICLIB_FALSE@
226
230
USE_CPPFLAG_CURL_STATICLIB_TRUE = @USE_CPPFLAG_CURL_STATICLIB_TRUE@
227
231
USE_CYASSL = @USE_CYASSL@
 
232
USE_DARWINSSL = @USE_DARWINSSL@
228
233
USE_EMBEDDED_ARES_FALSE = @USE_EMBEDDED_ARES_FALSE@
229
234
USE_EMBEDDED_ARES_TRUE = @USE_EMBEDDED_ARES_TRUE@
230
235
USE_GNUTLS = @USE_GNUTLS@
236
241
USE_NSS = @USE_NSS@
237
242
USE_OPENLDAP = @USE_OPENLDAP@
238
243
USE_POLARSSL = @USE_POLARSSL@
 
244
USE_SCHANNEL = @USE_SCHANNEL@
239
245
USE_SSLEAY = @USE_SSLEAY@
240
246
USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@
241
247
VERSION = @VERSION@
300
306
 certs/srp-verifier-conf certs/srp-verifier-db
301
307
 
302
308
@BUILD_UNITTESTS_FALSE@BUILD_UNIT = 
 
309
 
 
310
# we have two variables here to make sure DIST_SUBDIRS won't get 'unit'
 
311
# added twice as then targets such as 'distclean' misbehave and try to
 
312
# do things twice in that subdir at times (and thus fails).
303
313
@BUILD_UNITTESTS_TRUE@BUILD_UNIT = unit
 
314
@BUILD_UNITTESTS_FALSE@DIST_UNIT = unit
 
315
@BUILD_UNITTESTS_TRUE@DIST_UNIT = 
304
316
SUBDIRS = data server libtest $(BUILD_UNIT)
305
 
DIST_SUBDIRS = $(SUBDIRS) unit
 
317
DIST_SUBDIRS = $(SUBDIRS) $(DIST_UNIT)
306
318
PERLFLAGS = -I$(srcdir)
307
319
CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid
308
320
MAN2HTML = roffit < $< >$@
327
339
              exit 1;; \
328
340
          esac; \
329
341
        done; \
330
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  tests/Makefile'; \
 
342
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  tests/Makefile'; \
331
343
        cd $(top_srcdir) && \
332
 
          $(AUTOMAKE) --gnu  tests/Makefile
 
344
          $(AUTOMAKE) --foreign  tests/Makefile
333
345
.PRECIOUS: Makefile
334
346
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
335
347
        @case '$?' in \