2 # $Id: Makefile.am,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
5 AUTOMAKE_OPTIONS = foreign nostdinc
7 EXTRA_DIST = README Makefile.example Makefile.inc Makefile.m32 \
8 makefile.dj $(COMPLICATED_EXAMPLES)
10 # Specify our include paths here, and do it relative to $(top_srcdir) and
11 # $(top_builddir), to ensure that these paths which belong to the library
12 # being currently built and tested are searched before the library which
13 # might possibly already be installed in the system.
15 # $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
16 # $(top_srcdir)/include is for libcurl's external include files
18 INCLUDES = -I$(top_builddir)/include \
19 -I$(top_srcdir)/include
21 LIBDIR = $(top_builddir)/lib
24 # we need this define when building with a static lib on Windows
25 STATICCPPFLAGS = -DCURL_STATICLIB
28 CPPFLAGS = -DCURL_NO_OLDIES $(STATICCPPFLAGS)
31 LDADD = $(LIBDIR)/libcurl.la
33 # Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines