Git init
[external/curl.git] / docs / examples / Makefile.am
1 #
2 #
3
4 AUTOMAKE_OPTIONS = foreign nostdinc
5
6 EXTRA_DIST = README Makefile.example Makefile.inc Makefile.m32 \
7         makefile.dj $(COMPLICATED_EXAMPLES)
8
9 # Specify our include paths here, and do it relative to $(top_srcdir) and
10 # $(top_builddir), to ensure that these paths which belong to the library
11 # being currently built and tested are searched before the library which
12 # might possibly already be installed in the system.
13 #
14 # $(top_builddir)/include/curl for generated curlbuild.h included from curl.h
15 # $(top_builddir)/include for generated curlbuild.h included from lib/setup.h
16 # $(top_srcdir)/include is for libcurl's external include files
17
18 INCLUDES = -I$(top_builddir)/include/curl \
19            -I$(top_builddir)/include      \
20            -I$(top_srcdir)/include
21
22 LIBDIR = $(top_builddir)/lib
23
24 if STATICLIB
25 # we need this define when building with a static lib on Windows
26 STATICCPPFLAGS = -DCURL_STATICLIB
27 endif
28
29 CPPFLAGS = -DCURL_NO_OLDIES $(STATICCPPFLAGS)
30
31 # Dependencies
32 LDADD = $(LIBDIR)/libcurl.la
33
34 # Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines
35 include Makefile.inc
36
37