1*6236dae4SAndroid Build Coastguard Worker#*************************************************************************** 2*6236dae4SAndroid Build Coastguard Worker# _ _ ____ _ 3*6236dae4SAndroid Build Coastguard Worker# Project ___| | | | _ \| | 4*6236dae4SAndroid Build Coastguard Worker# / __| | | | |_) | | 5*6236dae4SAndroid Build Coastguard Worker# | (__| |_| | _ <| |___ 6*6236dae4SAndroid Build Coastguard Worker# \___|\___/|_| \_\_____| 7*6236dae4SAndroid Build Coastguard Worker# 8*6236dae4SAndroid Build Coastguard Worker# Copyright (C) Daniel Stenberg, <[email protected]>, et al. 9*6236dae4SAndroid Build Coastguard Worker# 10*6236dae4SAndroid Build Coastguard Worker# This software is licensed as described in the file COPYING, which 11*6236dae4SAndroid Build Coastguard Worker# you should have received as part of this distribution. The terms 12*6236dae4SAndroid Build Coastguard Worker# are also available at https://curl.se/docs/copyright.html. 13*6236dae4SAndroid Build Coastguard Worker# 14*6236dae4SAndroid Build Coastguard Worker# You may opt to use, copy, modify, merge, publish, distribute and/or sell 15*6236dae4SAndroid Build Coastguard Worker# copies of the Software, and permit persons to whom the Software is 16*6236dae4SAndroid Build Coastguard Worker# furnished to do so, under the terms of the COPYING file. 17*6236dae4SAndroid Build Coastguard Worker# 18*6236dae4SAndroid Build Coastguard Worker# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19*6236dae4SAndroid Build Coastguard Worker# KIND, either express or implied. 20*6236dae4SAndroid Build Coastguard Worker# 21*6236dae4SAndroid Build Coastguard Worker# SPDX-License-Identifier: curl 22*6236dae4SAndroid Build Coastguard Worker# 23*6236dae4SAndroid Build Coastguard Worker########################################################################### 24*6236dae4SAndroid Build Coastguard WorkerAUTOMAKE_OPTIONS = foreign nostdinc 25*6236dae4SAndroid Build Coastguard Worker 26*6236dae4SAndroid Build Coastguard Worker# Specify our include paths here, and do it relative to $(top_srcdir) and 27*6236dae4SAndroid Build Coastguard Worker# $(top_builddir), to ensure that these paths which belong to the library 28*6236dae4SAndroid Build Coastguard Worker# being currently built and tested are searched before the library which 29*6236dae4SAndroid Build Coastguard Worker# might possibly already be installed in the system. 30*6236dae4SAndroid Build Coastguard Worker# 31*6236dae4SAndroid Build Coastguard Worker# $(top_srcdir)/include is for libcurl's external include files 32*6236dae4SAndroid Build Coastguard Worker# $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file 33*6236dae4SAndroid Build Coastguard Worker# $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "borrowed" files 34*6236dae4SAndroid Build Coastguard Worker 35*6236dae4SAndroid Build Coastguard WorkerAM_CPPFLAGS = -I$(top_srcdir)/include \ 36*6236dae4SAndroid Build Coastguard Worker -I$(top_builddir)/lib \ 37*6236dae4SAndroid Build Coastguard Worker -I$(top_srcdir)/lib 38*6236dae4SAndroid Build Coastguard Worker 39*6236dae4SAndroid Build Coastguard Workerdisabled_CPPFLAGS = $(AM_CPPFLAGS) \ 40*6236dae4SAndroid Build Coastguard Worker -I$(top_srcdir)/src 41*6236dae4SAndroid Build Coastguard Worker 42*6236dae4SAndroid Build Coastguard Worker# Prevent LIBS from being used for all link targets 43*6236dae4SAndroid Build Coastguard WorkerLIBS = $(BLANK_AT_MAKETIME) 44*6236dae4SAndroid Build Coastguard Worker 45*6236dae4SAndroid Build Coastguard Workerif DOING_NATIVE_WINDOWS 46*6236dae4SAndroid Build Coastguard WorkerAM_CPPFLAGS += -DCURL_STATICLIB 47*6236dae4SAndroid Build Coastguard Workerendif 48*6236dae4SAndroid Build Coastguard WorkerAM_CPPFLAGS += -DCURL_NO_GETADDRINFO_OVERRIDE 49*6236dae4SAndroid Build Coastguard Worker 50*6236dae4SAndroid Build Coastguard Worker# Makefile.inc provides neat definitions 51*6236dae4SAndroid Build Coastguard Workerinclude Makefile.inc 52*6236dae4SAndroid Build Coastguard Worker 53*6236dae4SAndroid Build Coastguard WorkerEXTRA_DIST = base64.pl CMakeLists.txt .checksrc 54*6236dae4SAndroid Build Coastguard Worker 55*6236dae4SAndroid Build Coastguard WorkerCHECKSRC = $(CS_$(V)) 56*6236dae4SAndroid Build Coastguard WorkerCS_0 = @echo " RUN " $@; 57*6236dae4SAndroid Build Coastguard WorkerCS_1 = 58*6236dae4SAndroid Build Coastguard WorkerCS_ = $(CS_0) 59*6236dae4SAndroid Build Coastguard Worker 60*6236dae4SAndroid Build Coastguard Workerchecksrc: 61*6236dae4SAndroid Build Coastguard Worker $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl $(srcdir)/*.[ch] 62*6236dae4SAndroid Build Coastguard Worker 63*6236dae4SAndroid Build Coastguard Workerif DEBUGBUILD 64*6236dae4SAndroid Build Coastguard Worker# for debug builds, we scan the sources on all regular make invokes 65*6236dae4SAndroid Build Coastguard Workerall-local: checksrc 66*6236dae4SAndroid Build Coastguard Workerendif 67