2004-03-09 16:49:46 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2012-04-12 07:08:48 -04:00
|
|
|
# Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-03-09 16:49:46 -05: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.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
###########################################################################
|
2008-07-15 01:46:49 -04:00
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
2002-02-25 07:44:58 -05:00
|
|
|
|
2008-07-15 01:46:49 -04: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 10:04:03 -05:00
|
|
|
# $(top_builddir)/include/curl for generated curlbuild.h included from curl.h
|
2013-01-06 13:06:49 -05:00
|
|
|
# $(top_builddir)/include for generated curlbuild.h inc. from lib/curl_setup.h
|
2008-07-15 01:46:49 -04:00
|
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
2009-07-14 09:25:14 -04:00
|
|
|
# $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file
|
2013-01-06 13:06:49 -05:00
|
|
|
# $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "borrowed" files
|
2009-04-28 20:38:08 -04: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
|
2002-02-25 07:44:58 -05:00
|
|
|
|
2009-06-04 00:13:39 -04:00
|
|
|
if USE_EMBEDDED_ARES
|
2012-10-10 04:05:02 -04: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 00:13:39 -04:00
|
|
|
else
|
2012-10-10 04:05:02 -04: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 00:13:39 -04:00
|
|
|
endif
|
2003-10-09 04:12:43 -04:00
|
|
|
|
2012-12-04 17:30:05 -05:00
|
|
|
# Prevent LIBS from being used for all link targets
|
2012-11-29 15:56:48 -05:00
|
|
|
LIBS = $(BLANK_AT_MAKETIME)
|
|
|
|
|
2012-04-12 07:08:48 -04:00
|
|
|
if DOING_NATIVE_WINDOWS
|
2012-11-28 14:51:13 -05:00
|
|
|
AM_CPPFLAGS += -DCURL_STATICLIB
|
2012-04-12 07:08:48 -04:00
|
|
|
endif
|
|
|
|
|
2011-05-27 07:34:54 -04:00
|
|
|
# Makefile.inc provides neat definitions
|
2009-04-07 17:59:15 -04:00
|
|
|
include Makefile.inc
|
2004-11-29 07:10:09 -05:00
|
|
|
|
2011-05-27 07:34:54 -04:00
|
|
|
EXTRA_DIST = base64.pl Makefile.inc
|
2009-04-07 18:07:07 -04:00
|
|
|
|