~ubuntu-branches/ubuntu/warty/curl/warty-security

« back to all changes in this revision

Viewing changes to docs/examples/Makefile.example

  • Committer: Bazaar Package Importer
  • Author(s): Domenico Andreoli
  • Date: 2004-06-04 19:09:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040604190925-wy048bp31320r2z6
Tags: 7.12.0.is.7.11.2-1
* Reverted to version 7.11.2 (closes: #252348).
* Disabled support for libidn (closes: #252367). This is to leave
  curl in unstable as much similar as possible to the one in testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#                            | (__| |_| |  _ <| |___ 
6
6
#                             \___|\___/|_| \_\_____|
7
7
#
8
 
# $Id: Makefile.example,v 1.2 2001/05/15 12:56:38 bagder Exp $
 
8
# $Id: Makefile.example,v 1.3 2002/08/14 23:01:14 bagder Exp $
9
9
#
10
10
 
11
11
# What to call the final executable
35
35
 
36
36
# Link the target with all objects and libraries
37
37
$(TARGET) : $(OBJS)
38
 
        $(CC) $(LDFLAGS) $(LIBS) -o $(TARGET) $(OBJS)
 
38
        $(CC)  -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS)
39
39
 
40
40
# Compile the source files into object files
41
41
ftpget.o : ftpget.c