~ubuntu-branches/ubuntu/natty/curl/natty-proposed

« back to all changes in this revision

Viewing changes to src/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Ramakrishnan Muthukrishnan
  • Date: 2010-08-12 08:20:48 UTC
  • mto: (3.4.8 sid)
  • mto: This revision was merged to the branch mainline in revision 43.
  • Revision ID: james.westby@ubuntu.com-20100812082048-7g7fewx1ai2ozgsf
Tags: upstream-7.21.1
ImportĀ upstreamĀ versionĀ 7.21.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
@SET_MAKE@
16
16
 
17
17
# ./src/Makefile.inc
 
18
# Using the backslash as line continuation character might be problematic
 
19
# with some make flavours, as Watcom's wmake showed us already. If we
 
20
# ever want to change this in a portable manner then we should consider
 
21
# this idea (posted to the libcurl list by Adam Kellas):
 
22
# CSRC1 = file1.c file2.c file3.c
 
23
# CSRC2 = file4.c file5.c file6.c
 
24
# CSOURCES = $(CSRC1) $(CSRC2)
18
25
 
19
26
srcdir = @srcdir@
20
27
top_srcdir = @top_srcdir@
95
102
AUTOHEADER = @AUTOHEADER@
96
103
AUTOMAKE = @AUTOMAKE@
97
104
AWK = @AWK@
 
105
BUILD_LIBHOSTNAME_FALSE = @BUILD_LIBHOSTNAME_FALSE@
 
106
BUILD_LIBHOSTNAME_TRUE = @BUILD_LIBHOSTNAME_TRUE@
98
107
CC = @CC@
99
108
CCDEPMODE = @CCDEPMODE@
100
 
CFLAGS = @CFLAGS@
 
109
 
 
110
# This might hold -Werror
 
111
CFLAGS = @CFLAGS@ @CURL_CFLAG_EXTRAS@
101
112
CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
102
113
CPP = @CPP@
103
114
CPPFLAGS = @CPPFLAGS@
106
117
CURLDEBUG_FALSE = @CURLDEBUG_FALSE@
107
118
CURLDEBUG_TRUE = @CURLDEBUG_TRUE@
108
119
CURL_CA_BUNDLE = @CURL_CA_BUNDLE@
 
120
CURL_CFLAG_EXTRAS = @CURL_CFLAG_EXTRAS@
109
121
CURL_DISABLE_DICT = @CURL_DISABLE_DICT@
110
122
CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
111
123
CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
120
132
CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
121
133
CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
122
134
CURL_LIBS = @CURL_LIBS@
 
135
CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
123
136
CYGPATH_W = @CYGPATH_W@
124
137
DEFS = @DEFS@
125
138
DEPDIR = @DEPDIR@
130
143
ECHO_N = @ECHO_N@
131
144
ECHO_T = @ECHO_T@
132
145
EGREP = @EGREP@
 
146
ENABLE_SHARED = @ENABLE_SHARED@
133
147
EXEEXT = @EXEEXT@
134
148
FGREP = @FGREP@
135
149
GREP = @GREP@
315
329
        $(top_srcdir)/lib/rawstr.c \
316
330
        $(top_srcdir)/lib/nonblock.c
317
331
 
318
 
CURL_SOURCES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \
 
332
CURL_CFILES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \
319
333
        getpass.c homedir.c curlutil.c os-specific.c
320
334
 
321
335
CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \
322
336
        config-riscos.h urlglob.h version.h os-specific.h \
323
337
        writeout.h writeenv.h getpass.h homedir.h curlutil.h
324
338
 
325
 
curl_SOURCES = $(CURL_SOURCES) $(CURLX_ONES) $(CURL_HFILES)
 
339
curl_SOURCES = $(CURL_CFILES) $(CURLX_ONES) $(CURL_HFILES)
326
340
curl_LDADD = $(top_builddir)/lib/libcurl.la @CURL_LIBS@
327
341
curl_DEPENDENCIES = $(top_builddir)/lib/libcurl.la
328
342
BUILT_SOURCES = hugehelp.c