2001-01-08 22:36:34 +08:00
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
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 \
|
|
|
|
makefile.dj $(COMPLICATED_EXAMPLES)
|
2007-07-13 04:38:54 +08:00
|
|
|
|
2007-07-14 05:31:44 +08:00
|
|
|
INCLUDES = -I$(top_srcdir)/include
|
2007-07-13 04:38:54 +08:00
|
|
|
|
|
|
|
LIBDIR = $(top_builddir)/lib
|
2007-11-17 18:22:44 +08: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-13 04:38:54 +08:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
LDADD = $(LIBDIR)/libcurl.la
|
|
|
|
|
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
|
|
|
|
|
2007-07-13 04:38:54 +08:00
|
|
|
|