2004-03-10 00:49:46 +03:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2019-03-14 12:40:38 +03:00
|
|
|
# Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-03-10 00:49:46 +03:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2016-02-03 02:19:02 +03:00
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-03-10 00:49:46 +03: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
|
|
|
|
# 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 09:46:49 +04:00
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
2002-02-25 15:44:58 +03:00
|
|
|
|
2008-07-15 09: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.
|
|
|
|
#
|
|
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
2009-07-14 17:25:14 +04:00
|
|
|
# $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file
|
2013-01-06 22:06:49 +04:00
|
|
|
# $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "borrowed" files
|
2009-04-29 04: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 15:44:58 +03:00
|
|
|
|
2009-06-04 08:13:39 +04:00
|
|
|
if USE_EMBEDDED_ARES
|
2017-05-22 10:05:10 +03:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
2012-10-10 12:05:02 +04:00
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib \
|
|
|
|
-I$(top_builddir)/ares \
|
|
|
|
-I$(top_srcdir)/ares
|
2009-06-04 08:13:39 +04:00
|
|
|
else
|
2017-05-22 10:05:10 +03:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
2012-10-10 12:05:02 +04:00
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib
|
2009-06-04 08:13:39 +04:00
|
|
|
endif
|
2003-10-09 12:12:43 +04:00
|
|
|
|
2012-12-05 02:30:05 +04:00
|
|
|
# Prevent LIBS from being used for all link targets
|
2012-11-30 00:56:48 +04:00
|
|
|
LIBS = $(BLANK_AT_MAKETIME)
|
|
|
|
|
2012-04-12 15:08:48 +04:00
|
|
|
if DOING_NATIVE_WINDOWS
|
2012-11-28 23:51:13 +04:00
|
|
|
AM_CPPFLAGS += -DCURL_STATICLIB
|
2012-04-12 15:08:48 +04:00
|
|
|
endif
|
|
|
|
|
2011-05-27 15:34:54 +04:00
|
|
|
# Makefile.inc provides neat definitions
|
2009-04-08 01:59:15 +04:00
|
|
|
include Makefile.inc
|
2004-11-29 15:10:09 +03:00
|
|
|
|
2015-06-25 17:04:41 +03:00
|
|
|
EXTRA_DIST = base64.pl Makefile.inc CMakeLists.txt
|
2009-04-08 02:07:07 +04:00
|
|
|
|
2019-03-14 12:40:38 +03:00
|
|
|
CHECKSRC = $(CS_$(V))
|
|
|
|
CS_0 = @echo " RUN " $@;
|
|
|
|
CS_1 =
|
|
|
|
CS_ = $(CS_0)
|
|
|
|
|
2016-04-03 23:42:31 +03:00
|
|
|
checksrc:
|
2019-03-14 12:40:38 +03:00
|
|
|
$(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.c
|
2017-05-05 16:51:25 +03:00
|
|
|
|
|
|
|
if CURLDEBUG
|
|
|
|
# for debug builds, we scan the sources on all regular make invokes
|
|
|
|
all-local: checksrc
|
|
|
|
endif
|