2004-04-06 16:07:04 +02:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
1999-12-29 15:20:26 +01:00
|
|
|
#
|
2015-04-22 13:16:04 +02:00
|
|
|
# Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 15:20:26 +01:00
|
|
|
#
|
2004-04-06 16:07:04 +02:00
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
###########################################################################
|
2002-02-25 15:08:18 +01:00
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
1999-12-29 15:20:26 +01:00
|
|
|
|
2009-07-14 15:25:14 +02:00
|
|
|
CMAKE_DIST = CMakeLists.txt curl_config.h.cmake
|
2009-04-27 14:26:41 +02:00
|
|
|
|
2013-02-11 19:11:14 +01:00
|
|
|
EXTRA_DIST = Makefile.b32 Makefile.m32 Makefile.vc6 config-win32.h \
|
|
|
|
config-win32ce.h config-riscos.h config-mac.h curl_config.h.in \
|
|
|
|
makefile.dj config-dos.h libcurl.plist libcurl.rc config-amigaos.h \
|
|
|
|
makefile.amiga Makefile.netware nwlib.c nwos.c config-win32ce.h \
|
|
|
|
config-os400.h setup-os400.h config-symbian.h Makefile.Watcom \
|
2015-06-09 23:57:22 +02:00
|
|
|
config-tpf.h mk-ca-bundle.pl mk-ca-bundle.vbs $(CMAKE_DIST) \
|
2013-02-11 19:11:14 +01:00
|
|
|
firefox-db2pem.sh config-vxworks.h Makefile.vxworks checksrc.pl \
|
2015-04-22 13:16:04 +02:00
|
|
|
objnames-test08.sh objnames-test10.sh objnames.inc checksrc.whitelist
|
2004-05-11 09:54:55 +02:00
|
|
|
|
2000-07-26 11:28:29 +02:00
|
|
|
lib_LTLIBRARIES = libcurl.la
|
2013-03-12 00:24:37 +01:00
|
|
|
|
|
|
|
if BUILD_UNITTESTS
|
|
|
|
noinst_LTLIBRARIES = libcurlu.la
|
|
|
|
else
|
|
|
|
noinst_LTLIBRARIES =
|
|
|
|
endif
|
1999-12-29 15:20:26 +01:00
|
|
|
|
2010-07-19 18:07:09 +02:00
|
|
|
# This might hold -Werror
|
2011-05-30 22:32:58 +02:00
|
|
|
CFLAGS += @CURL_CFLAG_EXTRAS@
|
2010-07-19 18:07:09 +02:00
|
|
|
|
2008-07-15 07:46:49 +02: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 16:04:03 +01:00
|
|
|
# $(top_builddir)/include/curl for generated curlbuild.h included from curl.h
|
2013-01-06 19:06:49 +01:00
|
|
|
# $(top_builddir)/include for generated curlbuild.h inc. from lib/curl_setup.h
|
2008-07-15 07:46:49 +02:00
|
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
2009-07-14 15:25:14 +02:00
|
|
|
# $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file
|
2013-01-06 19:06:49 +01:00
|
|
|
# $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "private" files
|
2009-04-28 21:29:50 +02: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
|
2006-08-07 20:06:37 +02:00
|
|
|
|
2012-10-10 10:05:02 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/include/curl \
|
|
|
|
-I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib
|
2013-12-17 23:05:37 +01:00
|
|
|
|
|
|
|
if USE_EMBEDDED_ARES
|
|
|
|
AM_CPPFLAGS += -I$(top_builddir)/ares \
|
|
|
|
-I$(top_srcdir)/ares
|
2009-06-04 06:13:39 +02:00
|
|
|
endif
|
2003-08-05 16:40:59 +02:00
|
|
|
|
2013-03-08 13:26:08 +01:00
|
|
|
# Prevent LIBS from being used for all link targets
|
|
|
|
LIBS = $(BLANK_AT_MAKETIME)
|
|
|
|
|
2008-08-24 23:26:42 +02:00
|
|
|
if SONAME_BUMP
|
|
|
|
#
|
|
|
|
# Bumping of SONAME conditionally may seem like a weird thing to do, and yeah
|
|
|
|
# it is. The problem is that we try to avoid the bump as hard as possible, but
|
|
|
|
# yet it is still necessary for a few rare situations. The configure script will
|
|
|
|
# attempt to figure out these situations, and it can be forced to consider this
|
|
|
|
# to be such a case! See README.curl_off_t for further details.
|
|
|
|
#
|
|
|
|
# This conditional soname bump SHOULD be removed at next "proper" bump.
|
|
|
|
#
|
2012-11-08 20:25:08 +01:00
|
|
|
VERSIONINFO=-version-info 8:0:3
|
2008-08-24 23:26:42 +02:00
|
|
|
else
|
2012-11-08 20:25:08 +01:00
|
|
|
VERSIONINFO=-version-info 7:0:3
|
2008-08-24 23:26:42 +02:00
|
|
|
endif
|
2002-10-04 16:26:10 +02:00
|
|
|
|
2000-11-30 23:22:08 +01:00
|
|
|
# This flag accepts an argument of the form current[:revision[:age]]. So,
|
|
|
|
# passing -version-info 3:12:1 sets current to 3, revision to 12, and age to
|
|
|
|
# 1.
|
|
|
|
#
|
2008-11-03 09:50:58 +01:00
|
|
|
# Here's the simplified rule guide on how to change -version-info:
|
|
|
|
# (current version is C:R:A)
|
2010-02-14 20:40:18 +01:00
|
|
|
#
|
2008-11-03 09:50:58 +01:00
|
|
|
# 1. if there are only source changes, use C:R+1:A
|
|
|
|
# 2. if interfaces were added use C+1:0:A+1
|
|
|
|
# 3. if interfaces were removed, then use C+1:0:0
|
|
|
|
#
|
|
|
|
# For the full guide on libcurl ABI rules, see docs/libcurl/ABI
|
2000-11-30 23:22:08 +01:00
|
|
|
|
2013-03-12 00:24:37 +01:00
|
|
|
AM_CPPFLAGS += -DBUILDING_LIBCURL
|
2013-03-09 13:57:55 +01:00
|
|
|
AM_LDFLAGS =
|
2013-03-12 00:24:37 +01:00
|
|
|
AM_CFLAGS =
|
2013-03-09 13:57:55 +01:00
|
|
|
|
2013-03-12 00:24:37 +01:00
|
|
|
libcurl_la_CPPFLAGS_EXTRA =
|
2013-03-08 13:26:08 +01:00
|
|
|
libcurl_la_LDFLAGS_EXTRA =
|
2013-03-12 00:24:37 +01:00
|
|
|
libcurl_la_CFLAGS_EXTRA =
|
2013-03-08 13:26:08 +01:00
|
|
|
|
|
|
|
if CURL_LT_SHLIB_USE_VERSION_INFO
|
|
|
|
libcurl_la_LDFLAGS_EXTRA += $(VERSIONINFO)
|
2003-10-24 23:26:04 +02:00
|
|
|
endif
|
|
|
|
|
2013-03-08 13:26:08 +01:00
|
|
|
if CURL_LT_SHLIB_USE_NO_UNDEFINED
|
|
|
|
libcurl_la_LDFLAGS_EXTRA += -no-undefined
|
2002-10-21 08:49:42 +02:00
|
|
|
endif
|
|
|
|
|
2013-03-08 13:26:08 +01:00
|
|
|
if CURL_LT_SHLIB_USE_MIMPURE_TEXT
|
|
|
|
libcurl_la_LDFLAGS_EXTRA += -mimpure-text
|
2011-12-16 15:33:48 +01:00
|
|
|
endif
|
|
|
|
|
2013-03-08 13:26:08 +01:00
|
|
|
if CURL_LT_SHLIB_USE_VERSIONED_SYMBOLS
|
|
|
|
libcurl_la_LDFLAGS_EXTRA += -Wl,--version-script=libcurl.vers
|
|
|
|
endif
|
2012-12-03 22:40:26 +01:00
|
|
|
|
2013-03-12 00:24:37 +01:00
|
|
|
if USE_CPPFLAG_CURL_STATICLIB
|
|
|
|
libcurl_la_CPPFLAGS_EXTRA += -DCURL_STATICLIB
|
|
|
|
endif
|
2011-01-03 22:16:16 +01:00
|
|
|
|
2012-04-17 12:42:14 +02:00
|
|
|
if DOING_CURL_SYMBOL_HIDING
|
2013-03-12 00:24:37 +01:00
|
|
|
libcurl_la_CPPFLAGS_EXTRA += -DCURL_HIDDEN_SYMBOLS
|
|
|
|
libcurl_la_CFLAGS_EXTRA += $(CFLAG_CURL_SYMBOL_HIDING)
|
2012-04-11 19:33:54 +02:00
|
|
|
endif
|
|
|
|
|
2013-03-12 00:24:37 +01:00
|
|
|
libcurl_la_CPPFLAGS = $(AM_CPPFLAGS) $(libcurl_la_CPPFLAGS_EXTRA)
|
2013-07-23 21:51:12 +02:00
|
|
|
libcurl_la_LDFLAGS = $(AM_LDFLAGS) $(libcurl_la_LDFLAGS_EXTRA) $(LDFLAGS) $(LIBCURL_LIBS)
|
2013-03-12 00:24:37 +01:00
|
|
|
libcurl_la_CFLAGS = $(AM_CFLAGS) $(libcurl_la_CFLAGS_EXTRA)
|
2003-08-05 16:40:59 +02:00
|
|
|
|
2013-03-12 00:24:37 +01:00
|
|
|
libcurlu_la_CPPFLAGS = $(AM_CPPFLAGS) -DCURL_STATICLIB -DUNITTESTS
|
|
|
|
libcurlu_la_LDFLAGS = $(AM_LDFLAGS) -static $(LIBCURL_LIBS)
|
2012-04-11 19:33:54 +02:00
|
|
|
libcurlu_la_CFLAGS = $(AM_CFLAGS)
|
2011-06-01 21:39:18 +02:00
|
|
|
|
2004-07-04 10:45:25 +02:00
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
|
|
include Makefile.inc
|
2004-05-11 09:54:55 +02:00
|
|
|
|
|
|
|
libcurl_la_SOURCES = $(CSOURCES) $(HHEADERS)
|
2011-01-03 22:16:16 +01:00
|
|
|
libcurlu_la_SOURCES = $(CSOURCES) $(HHEADERS)
|
2004-05-11 09:54:55 +02:00
|
|
|
|
2011-04-27 10:23:27 +02:00
|
|
|
checksrc:
|
|
|
|
@@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/lib $(CSOURCES) $(HHEADERS)
|
|
|
|
|
2011-04-20 22:44:38 +02:00
|
|
|
if CURLDEBUG
|
|
|
|
# for debug builds, we scan the sources on all regular make invokes
|
2011-04-27 10:23:27 +02:00
|
|
|
all-local: checksrc
|
2011-04-20 22:44:38 +02:00
|
|
|
endif
|