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