2004-03-10 05:49:46 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) 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
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2004-03-10 05:49:46 +08: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.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2004-03-10 05:49:46 +08:00
|
|
|
###########################################################################
|
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.
|
|
|
|
#
|
|
|
|
# $(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
|
2002-02-25 20:44:58 +08:00
|
|
|
|
2017-05-22 15:05:10 +08:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
2012-10-10 16:05:02 +08:00
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib
|
2003-10-09 16:12:43 +08:00
|
|
|
|
2022-10-19 17:40:11 +08:00
|
|
|
disabled_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
|
|
-I$(top_srcdir)/src
|
|
|
|
|
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
|
2024-09-03 06:26:26 +08:00
|
|
|
AM_CPPFLAGS += -DCURL_NO_GETADDRINFO_OVERRIDE
|
2012-04-12 19:08:48 +08:00
|
|
|
|
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
|
|
|
|
2024-10-09 21:56:28 +08:00
|
|
|
EXTRA_DIST = base64.pl CMakeLists.txt .checksrc
|
2009-04-08 06:07:07 +08:00
|
|
|
|
2019-03-14 17:40:38 +08:00
|
|
|
CHECKSRC = $(CS_$(V))
|
|
|
|
CS_0 = @echo " RUN " $@;
|
|
|
|
CS_1 =
|
|
|
|
CS_ = $(CS_0)
|
|
|
|
|
2016-04-04 04:42:31 +08:00
|
|
|
checksrc:
|
2022-03-23 22:26:09 +08:00
|
|
|
$(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl $(srcdir)/*.[ch]
|
2017-05-05 21:51:25 +08:00
|
|
|
|
2024-05-20 20:21:05 +08:00
|
|
|
if DEBUGBUILD
|
2017-05-05 21:51:25 +08:00
|
|
|
# for debug builds, we scan the sources on all regular make invokes
|
|
|
|
all-local: checksrc
|
|
|
|
endif
|