~ubuntu-branches/ubuntu/lucid/curl/lucid-201010031940

« back to all changes in this revision

Viewing changes to docs/examples/makefile.dj

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2009-04-29 11:10:29 UTC
  • mfrom: (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090429111029-2j5eiyokfw2bw049
Tags: 7.19.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* drop debian/patches/security_CVE-2009-0037.patch 
  - this patch is part of 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#  $Id: makefile.dj,v 1.8 2007-09-13 20:36:52 danf Exp $
 
1
#  $Id: makefile.dj,v 1.10 2008-08-17 16:20:23 giva Exp $
2
2
#
3
3
#  Adapted for djgpp / Watt-32 / DOS by
4
4
#  Gisle Vanem <giva@bgnett.no>
16
16
  LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a
17
17
endif
18
18
 
 
19
ifeq ($(USE_IDNA),1)
 
20
  LIBS += $(LIBIDN_ROOT)/lib/dj_obj/libidn.a -liconv
 
21
endif
 
22
 
19
23
LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a
20
24
 
21
 
CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c  \
22
 
           http-post.c httpput.c https.c multi-app.c multi-double.c \
23
 
           multi-post.c multi-single.c persistant.c post-callback.c \
24
 
           postit2.c sepheaders.c simple.c simplepost.c simplessl.c \
25
 
           multi-debugcallback.c fileupload.c getinfo.c anyauthput.c \
26
 
           10-at-a-time.c # ftpuploadresume.c cookie_interface.c
 
25
include Makefile.inc
27
26
 
28
 
PROGRAMS = $(CSOURCES:.c=.exe)
 
27
PROGRAMS = $(patsubst %,%.exe,$(check_PROGRAMS))
29
28
 
30
29
all: $(PROGRAMS)
31
30
        @echo Welcome to libcurl example program