~ubuntu-branches/ubuntu/quantal/curl/quantal-updates

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Domenico Andreoli
  • Date: 2009-11-05 10:11:57 UTC
  • mto: (3.5.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 41.
  • Revision ID: james.westby@ubuntu.com-20091105101157-bj4sosg9l00k9c08
Tags: upstream-7.19.7
ImportĀ upstreamĀ versionĀ 7.19.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
35
35
# KIND, either express or implied.
36
36
#
37
 
# $Id: Makefile.am,v 1.76 2009-04-27 12:26:41 bagder Exp $
 
37
# $Id: Makefile.am,v 1.80 2009-11-04 12:34:48 bagder Exp $
38
38
###########################################################################
39
39
 
40
40
 
81
81
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
82
82
 configure.lineno configure.status.lineno
83
83
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
84
 
CONFIG_HEADER = $(top_builddir)/lib/config.h \
85
 
        $(top_builddir)/src/config.h \
 
84
CONFIG_HEADER = $(top_builddir)/lib/curl_config.h \
 
85
        $(top_builddir)/src/curl_config.h \
86
86
        $(top_builddir)/include/curl/curlbuild.h
87
87
CONFIG_CLEAN_FILES = curl-config libcurl.pc
88
88
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)"
134
134
CPPFLAGS = @CPPFLAGS@
135
135
CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@
136
136
CROSSCOMPILING_TRUE = @CROSSCOMPILING_TRUE@
 
137
CURLDEBUG_FALSE = @CURLDEBUG_FALSE@
 
138
CURLDEBUG_TRUE = @CURLDEBUG_TRUE@
137
139
CURL_CA_BUNDLE = @CURL_CA_BUNDLE@
138
140
CURL_DISABLE_DICT = @CURL_DISABLE_DICT@
139
141
CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
200
202
PACKAGE_NAME = @PACKAGE_NAME@
201
203
PACKAGE_STRING = @PACKAGE_STRING@
202
204
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
205
PACKAGE_URL = @PACKAGE_URL@
203
206
PACKAGE_VERSION = @PACKAGE_VERSION@
204
207
PATH = @PATH@
205
208
PATH_SEPARATOR = @PATH_SEPARATOR@
223
226
SUPPORT_FEATURES = @SUPPORT_FEATURES@
224
227
SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
225
228
TEST_SERVER_LIBS = @TEST_SERVER_LIBS@
 
229
USE_EMBEDDED_ARES_FALSE = @USE_EMBEDDED_ARES_FALSE@
 
230
USE_EMBEDDED_ARES_TRUE = @USE_EMBEDDED_ARES_TRUE@
226
231
USE_GNUTLS = @USE_GNUTLS@
227
232
USE_LIBSSH2 = @USE_LIBSSH2@
228
233
USE_MANUAL_FALSE = @USE_MANUAL_FALSE@
288
293
CMake/Utilities.cmake include/curl/curlbuild.h.cmake
289
294
 
290
295
EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in       \
291
 
 curl-style.el sample.emacs RELEASE-NOTES buildconf buildconf.bat       \
292
 
 libcurl.pc.in vc6curl.dsw MacOSX-Framework $(CMAKE_DIST)
 
296
 curl-style.el sample.emacs RELEASE-NOTES buildconf     \
 
297
 libcurl.pc.in vc6curl.dsw MacOSX-Framework Android.mk $(CMAKE_DIST)
293
298
 
294
299
bin_SCRIPTS = curl-config
295
300
SUBDIRS = lib src
767
772
dist-hook:
768
773
        rm -rf $(top_builddir)/tests/log
769
774
        find $(distdir) -name "*.dist" -exec rm {} \;
770
 
        (distit=`find $(srcdir) -name "*.dist"`; \
 
775
        (distit=`find $(srcdir) -name "*.dist" | grep -v ./ares/`; \
771
776
        for file in $$distit; do \
772
777
          strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
773
778
          cp $$file $(distdir)$$strip; \