2004-01-13 09:57:01 +01:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
2004-01-13 08:36:13 +01:00
|
|
|
# \___|\___/|_| \_\_____|
|
2002-12-12 13:11:16 +01:00
|
|
|
#
|
2012-04-09 21:24:16 +02:00
|
|
|
# Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-01-13 08:36:13 +01:00
|
|
|
#
|
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:36:13 +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.
|
2002-12-12 13:11:16 +01:00
|
|
|
#
|
2004-01-13 08:36:13 +01:00
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
2004-01-13 09:57:01 +01:00
|
|
|
###########################################################################
|
2002-12-12 13:11:16 +01:00
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
|
2008-07-15 07:46:49 +02:00
|
|
|
# Specify our include paths here, and do it relative to $(top_srcdir) and
|
|
|
|
# $(top_builddir), to ensure that these paths which belong to the library
|
|
|
|
# being currently built and tested are searched before the library which
|
|
|
|
# might possibly already be installed in the system.
|
|
|
|
#
|
2009-11-05 16:04:03 +01:00
|
|
|
# $(top_builddir)/include/curl for generated curlbuild.h included from curl.h
|
2013-01-06 19:06:49 +01:00
|
|
|
# $(top_builddir)/include for generated curlbuild.h inc. from lib/curl_setup.h
|
2008-07-15 07:46:49 +02:00
|
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
2009-07-14 15:25:14 +02:00
|
|
|
# $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file
|
2013-01-06 19:06:49 +01:00
|
|
|
# $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "borrowed" files
|
2009-06-04 06:13:39 +02:00
|
|
|
# $(top_builddir)/ares is for in-tree c-ares's generated ares_build.h file
|
|
|
|
# $(top_srcdir)/ares is for in-tree c-ares's external include files
|
2006-08-07 20:06:37 +02:00
|
|
|
|
2009-06-04 06:13:39 +02:00
|
|
|
if USE_EMBEDDED_ARES
|
2012-10-10 10:05:02 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/include/curl \
|
|
|
|
-I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib \
|
|
|
|
-I$(top_builddir)/ares \
|
|
|
|
-I$(top_srcdir)/ares
|
2009-06-04 06:13:39 +02:00
|
|
|
else
|
2012-10-10 10:05:02 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/include/curl \
|
|
|
|
-I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib
|
2009-06-04 06:13:39 +02:00
|
|
|
endif
|
2002-12-12 13:11:16 +01:00
|
|
|
|
2009-04-08 00:07:07 +02:00
|
|
|
EXTRA_DIST = test75.pl test307.pl test610.pl test613.pl test1013.pl \
|
2012-06-05 20:19:27 +02:00
|
|
|
test1022.pl Makefile.inc notexists.pl
|
2007-01-18 19:04:20 +01:00
|
|
|
|
2012-04-17 12:42:14 +02:00
|
|
|
CFLAG_CURL_SYMBOL_HIDING = @CFLAG_CURL_SYMBOL_HIDING@
|
2012-04-11 19:33:54 +02:00
|
|
|
|
2012-12-04 23:30:05 +01:00
|
|
|
# Prevent LIBS from being used for all link targets
|
2012-11-30 14:34:48 +01:00
|
|
|
LIBS = $(BLANK_AT_MAKETIME)
|
|
|
|
|
|
|
|
if USE_EXPLICIT_LIB_DEPS
|
|
|
|
SUPPORTFILES_LIBS = $(top_builddir)/lib/libcurl.la @LIBCURL_LIBS@
|
|
|
|
TESTUTIL_LIBS = $(top_builddir)/lib/libcurl.la @LIBCURL_LIBS@
|
|
|
|
else
|
|
|
|
SUPPORTFILES_LIBS = $(top_builddir)/lib/libcurl.la @CURL_NETWORK_LIBS@
|
|
|
|
TESTUTIL_LIBS = $(top_builddir)/lib/libcurl.la @CURL_NETWORK_AND_TIME_LIBS@
|
|
|
|
endif
|
|
|
|
|
2006-10-21 13:40:04 +02:00
|
|
|
# Dependencies (may need to be overriden)
|
2012-11-30 14:34:48 +01:00
|
|
|
LDADD = $(SUPPORTFILES_LIBS)
|
2009-06-06 15:20:39 +02:00
|
|
|
DEPENDENCIES = $(top_builddir)/lib/libcurl.la
|
2006-10-21 13:40:04 +02:00
|
|
|
|
2012-04-09 21:24:16 +02:00
|
|
|
# Mostly for Windows build targets, when using static libcurl
|
|
|
|
if USE_CPPFLAG_CURL_STATICLIB
|
2012-11-28 20:51:13 +01:00
|
|
|
AM_CPPFLAGS += -DCURL_STATICLIB
|
2012-04-09 21:24:16 +02:00
|
|
|
endif
|
|
|
|
|
2010-08-06 18:40:13 +02:00
|
|
|
# Makefile.inc provides the source defines (TESTUTIL, SUPPORTFILES,
|
|
|
|
# noinst_PROGRAMS, lib*_SOURCES, and lib*_CFLAGS)
|
2009-04-07 23:59:15 +02:00
|
|
|
include Makefile.inc
|
2010-08-06 18:40:13 +02:00
|
|
|
|
|
|
|
# Preloading of libhostname allows host name overriding,
|
|
|
|
# this is used to make some tests machine independent.
|
|
|
|
|
2010-08-09 09:33:53 +02:00
|
|
|
if BUILD_LIBHOSTNAME
|
2010-08-06 18:40:13 +02:00
|
|
|
noinst_LTLIBRARIES = libhostname.la
|
2010-08-09 09:33:53 +02:00
|
|
|
else
|
|
|
|
noinst_LTLIBRARIES =
|
|
|
|
endif
|
2010-08-06 18:40:13 +02:00
|
|
|
|
|
|
|
if NO_UNDEFINED
|
|
|
|
# The -no-undefined flag is crucial to build fine on some platforms
|
|
|
|
UNDEF = -no-undefined
|
|
|
|
endif
|
|
|
|
|
2010-08-08 02:58:19 +02:00
|
|
|
libhostname_la_SOURCES = sethostname.c sethostname.h
|
2010-08-06 18:40:13 +02:00
|
|
|
|
|
|
|
libhostname_la_LIBADD =
|
|
|
|
libhostname_la_DEPENDENCIES =
|
|
|
|
libhostname_la_LDFLAGS = -module -avoid-version $(UNDEF) -rpath /nowhere
|
|
|
|
|
2012-04-17 12:42:14 +02:00
|
|
|
if DOING_CURL_SYMBOL_HIDING
|
2012-04-11 19:33:54 +02:00
|
|
|
libhostname_la_CPPFLAGS = $(AM_CPPFLAGS) -DCURL_HIDDEN_SYMBOLS
|
2012-04-17 12:42:14 +02:00
|
|
|
libhostname_la_CFLAGS = $(AM_CFLAGS) $(CFLAG_CURL_SYMBOL_HIDING)
|
2012-04-11 19:33:54 +02:00
|
|
|
else
|
|
|
|
libhostname_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
libhostname_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
endif
|