~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to docs/examples/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# $Id: Makefile.am,v 1.50 2008-03-31 03:01:13 danf Exp $
 
2
# $Id: Makefile.am,v 1.52 2008-08-07 00:29:08 yangtse Exp $
3
3
#
4
4
 
5
5
AUTOMAKE_OPTIONS = foreign nostdinc
7
7
EXTRA_DIST = README Makefile.example Makefile.inc Makefile.m32 \
8
8
        makefile.dj $(COMPLICATED_EXAMPLES)
9
9
 
10
 
INCLUDES = -I$(top_srcdir)/include
 
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.
 
14
#
 
15
# $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
 
16
# $(top_srcdir)/include is for libcurl's external include files
 
17
 
 
18
INCLUDES = -I$(top_builddir)/include \
 
19
           -I$(top_srcdir)/include
11
20
 
12
21
LIBDIR = $(top_builddir)/lib
13
22