2001-01-08 09:36:34 -05:00
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
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 \
|
|
|
|
makefile.dj $(COMPLICATED_EXAMPLES)
|
2007-07-12 16:38:54 -04:00
|
|
|
|
2007-07-13 17:31:44 -04:00
|
|
|
INCLUDES = -I$(top_srcdir)/include
|
2007-07-12 16:38:54 -04:00
|
|
|
|
|
|
|
LIBDIR = $(top_builddir)/lib
|
2007-11-17 05:22:44 -05:00
|
|
|
|
|
|
|
if STATICLIB
|
|
|
|
# we need this define when building with a static lib on Windows
|
|
|
|
STATICCPPFLAGS = -DCURL_STATICLIB
|
|
|
|
endif
|
|
|
|
|
|
|
|
CPPFLAGS = -DCURL_NO_OLDIES $(STATICCPPFLAGS)
|
2007-07-12 16:38:54 -04:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
LDADD = $(LIBDIR)/libcurl.la
|
|
|
|
|
2008-02-18 10:32:34 -05:00
|
|
|
# Makefile.inc provides the noinst_PROGRAMS and COMPLICATED_EXAMPLES defines
|
|
|
|
include Makefile.inc
|
|
|
|
|
2007-07-12 16:38:54 -04:00
|
|
|
|