2004-01-13 03:57:01 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
2004-01-13 02:36:13 -05:00
|
|
|
# \___|\___/|_| \_\_____|
|
2002-12-12 07:11:16 -05:00
|
|
|
#
|
2009-04-07 18:07:07 -04:00
|
|
|
# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-01-13 02:36:13 -05:00
|
|
|
#
|
2004-01-13 03:57:01 -05: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.
|
2004-01-13 02:36:13 -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
|
2004-01-13 03:57:01 -05:00
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
2002-12-12 07:11:16 -05:00
|
|
|
#
|
2004-01-13 02:36:13 -05:00
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# $Id$
|
2004-01-13 03:57:01 -05:00
|
|
|
###########################################################################
|
2002-12-12 07:11:16 -05:00
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
|
2008-07-15 01:46:49 -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.
|
|
|
|
#
|
2008-08-06 20:29:08 -04:00
|
|
|
# $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
|
2008-07-15 01:46:49 -04:00
|
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
|
|
|
# $(top_builddir)/lib is for libcurl's generated lib/config.h file
|
|
|
|
# $(top_srcdir)/lib is for libcurl's lib/setup.h and other "borrowed" files
|
2006-08-07 14:06:37 -04:00
|
|
|
|
2008-08-06 20:29:08 -04:00
|
|
|
INCLUDES = -I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_builddir)/lib \
|
2006-08-07 14:06:37 -04:00
|
|
|
-I$(top_srcdir)/lib
|
2002-12-12 07:11:16 -05:00
|
|
|
|
2004-01-13 02:36:13 -05:00
|
|
|
LIBDIR = $(top_builddir)/lib
|
2002-12-12 07:11:16 -05:00
|
|
|
|
2009-04-07 18:07:07 -04:00
|
|
|
EXTRA_DIST = test75.pl test307.pl test610.pl test613.pl test1013.pl \
|
|
|
|
test1022.pl Makefile.inc
|
2007-01-18 13:04:20 -05:00
|
|
|
|
2006-10-21 07:40:04 -04:00
|
|
|
# Dependencies (may need to be overriden)
|
2007-08-13 14:11:37 -04:00
|
|
|
LDADD = $(LIBDIR)/libcurl.la
|
2006-10-21 07:40:04 -04:00
|
|
|
DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
|
2009-04-07 17:59:15 -04:00
|
|
|
# Makefile.inc provides the source defines (TESTUTIL, SUPPORTFILES, noinst_PROGRAMS, lib*_SOURCES, and lib*_CFLAGS)
|
|
|
|
include Makefile.inc
|