2011-03-11 18:14:32 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
2001-01-08 09:36:34 -05:00
|
|
|
#
|
2016-02-17 09:01:38 -05:00
|
|
|
# Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-01-08 09:36:34 -05:00
|
|
|
#
|
2011-03-11 18:14:32 -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-03-11 18:14:32 -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.
|
|
|
|
#
|
|
|
|
###########################################################################
|
2001-01-08 09:36:34 -05:00
|
|
|
|
2007-07-12 16:38:54 -04:00
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
|
2008-02-18 10:32:34 -05:00
|
|
|
EXTRA_DIST = README Makefile.example Makefile.inc Makefile.m32 \
|
2012-04-13 11:58:41 -04:00
|
|
|
Makefile.netware makefile.dj $(COMPLICATED_EXAMPLES)
|
2007-07-12 16:38:54 -04:00
|
|
|
|
2008-07-15 09:54:30 -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.
|
|
|
|
#
|
2009-11-05 10:04:03 -05:00
|
|
|
# $(top_builddir)/include/curl for generated curlbuild.h included from curl.h
|
2013-01-06 13:06:49 -05:00
|
|
|
# $(top_builddir)/include for generated curlbuild.h inc. from lib/curl_setup.h
|
2008-07-15 09:54:30 -04:00
|
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
|
|
|
|
2012-10-10 04:05:02 -04:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/include/curl \
|
|
|
|
-I$(top_builddir)/include \
|
2012-11-30 13:12:18 -05:00
|
|
|
-I$(top_srcdir)/include
|
2007-07-12 16:38:54 -04:00
|
|
|
|
|
|
|
LIBDIR = $(top_builddir)/lib
|
2007-11-17 05:22:44 -05:00
|
|
|
|
2012-11-30 13:12:18 -05:00
|
|
|
# Avoid libcurl obsolete stuff
|
|
|
|
AM_CPPFLAGS += -DCURL_NO_OLDIES
|
|
|
|
|
2012-04-09 15:24:16 -04:00
|
|
|
if USE_CPPFLAG_CURL_STATICLIB
|
|
|
|
AM_CPPFLAGS += -DCURL_STATICLIB
|
|
|
|
endif
|
2007-07-12 16:38:54 -04:00
|
|
|
|
2012-12-04 17:30:05 -05:00
|
|
|
# Prevent LIBS from being used for all link targets
|
2012-11-30 13:12:18 -05:00
|
|
|
LIBS = $(BLANK_AT_MAKETIME)
|
|
|
|
|
2007-07-12 16:38:54 -04:00
|
|
|
# Dependencies
|
2012-11-30 13:12:18 -05:00
|
|
|
if USE_EXPLICIT_LIB_DEPS
|
|
|
|
LDADD = $(LIBDIR)/libcurl.la @LIBCURL_LIBS@
|
|
|
|
else
|
2007-07-12 16:38:54 -04:00
|
|
|
LDADD = $(LIBDIR)/libcurl.la
|
2012-11-30 13:12:18 -05:00
|
|
|
endif
|
2007-07-12 16:38:54 -04:00
|
|
|
|
2008-03-30 23:01:13 -04:00
|
|
|
# Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines
|
2008-02-18 10:32:34 -05:00
|
|
|
include Makefile.inc
|
|
|
|
|
2010-12-17 17:34:06 -05:00
|
|
|
all: $(check_PROGRAMS)
|
2016-02-17 09:01:38 -05:00
|
|
|
|
|
|
|
checksrc:
|
2016-04-19 02:48:36 -04:00
|
|
|
@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.c
|