2011-01-01 11:33:42 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2019-03-14 05:40:38 -04:00
|
|
|
# Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-01-01 11:33:42 -05: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-02 18:19:02 -05:00
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-01-01 11:33:42 -05: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.
|
|
|
|
#
|
|
|
|
###########################################################################
|
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
|
|
|
|
# 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
|
|
|
|
# $(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
|
2011-01-01 11:33:42 -05: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
|
|
|
|
|
|
|
|
if USE_EMBEDDED_ARES
|
2017-05-22 03:05:10 -04:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
2012-10-10 04:05:02 -04:00
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib \
|
2013-05-03 17:03:58 -04:00
|
|
|
-I$(top_srcdir)/src \
|
2012-10-10 04:05:02 -04:00
|
|
|
-I$(top_srcdir)/tests/libtest \
|
|
|
|
-I$(top_builddir)/ares \
|
|
|
|
-I$(top_srcdir)/ares
|
2011-01-01 11:33:42 -05:00
|
|
|
else
|
2017-05-22 03:05:10 -04:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
2012-10-10 04:05:02 -04:00
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib \
|
2013-05-03 17:03:58 -04:00
|
|
|
-I$(top_srcdir)/src \
|
2012-10-10 04:05:02 -04:00
|
|
|
-I$(top_srcdir)/tests/libtest
|
2011-01-01 11:33:42 -05:00
|
|
|
endif
|
|
|
|
|
2016-11-04 15:21:48 -04:00
|
|
|
EXTRA_DIST = Makefile.inc CMakeLists.txt
|
2011-01-01 11:33:42 -05:00
|
|
|
|
2018-02-23 17:35:23 -05:00
|
|
|
CFLAGS += @CURL_CFLAG_EXTRAS@
|
|
|
|
|
2012-12-04 17:30:05 -05:00
|
|
|
# Prevent LIBS from being used for all link targets
|
|
|
|
LIBS = $(BLANK_AT_MAKETIME)
|
|
|
|
|
2013-05-03 17:03:58 -04:00
|
|
|
LDADD = $(top_builddir)/src/libcurltool.la \
|
|
|
|
$(top_builddir)/lib/libcurlu.la \
|
|
|
|
@LDFLAGS@ @LIBCURL_LIBS@
|
|
|
|
|
2013-03-11 19:24:37 -04:00
|
|
|
AM_CPPFLAGS += -DCURL_STATICLIB -DUNITTESTS
|
2012-04-09 15:24:16 -04:00
|
|
|
|
2011-06-01 15:39:18 -04:00
|
|
|
# Makefile.inc provides neat definitions
|
2011-01-01 11:33:42 -05:00
|
|
|
include Makefile.inc
|
|
|
|
|
2019-03-14 05:40:38 -04:00
|
|
|
CHECKSRC = $(CS_$(V))
|
|
|
|
CS_0 = @echo " RUN " $@;
|
|
|
|
CS_1 =
|
|
|
|
CS_ = $(CS_0)
|
|
|
|
|
2016-04-03 10:20:43 -04:00
|
|
|
checksrc:
|
2019-12-16 02:52:16 -05:00
|
|
|
$(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.[ch]
|
2016-04-03 10:20:43 -04:00
|
|
|
|
2011-06-01 15:39:18 -04:00
|
|
|
if BUILD_UNITTESTS
|
|
|
|
noinst_PROGRAMS = $(UNITPROGS)
|
2011-01-03 16:16:16 -05:00
|
|
|
else
|
2011-06-01 15:39:18 -04:00
|
|
|
noinst_PROGRAMS =
|
2011-01-04 15:59:44 -05:00
|
|
|
endif
|