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