~ubuntu-branches/ubuntu/lucid/curl/lucid-201101212007

« back to all changes in this revision

Viewing changes to src/Makefile.inc

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-05-16 15:16:54 UTC
  • mto: (3.1.1 lenny) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20070516151654-x9nkigtr2j0i8d0v
Tags: upstream-7.16.2
ImportĀ upstreamĀ versionĀ 7.16.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# libcurl has sources that provide functions named curlx_* that aren't part of
4
4
# the official API, but we re-use the code here to avoid duplication.
5
 
CURLX_ONES =  $(top_srcdir)/lib/strtoofft.c $(top_srcdir)/lib/timeval.c \
 
5
CURLX_ONES =  $(top_srcdir)/lib/strtoofft.c \
6
6
        $(top_srcdir)/lib/strdup.c 
7
7
 
8
8
CURL_SOURCES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \
9
 
        getpass.c homedir.c
 
9
        getpass.c homedir.c curlutil.c
10
10
 
11
11
CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \
12
12
        config-riscos.h urlglob.h version.h \
13
 
        writeout.h writeenv.h getpass.h homedir.h
 
13
        writeout.h writeenv.h getpass.h homedir.h curlutil.h
14
14
 
15
15
curl_SOURCES = $(CURL_SOURCES) $(CURLX_ONES) $(CURL_HFILES)
16
16