~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

Viewing changes to lib/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:
2
2
#  Adapted for djgpp2 / Watt-32 / DOS by
3
3
#  Gisle Vanem <giva@bgnett.no>
4
4
#
5
 
# $Id: makefile.dj,v 1.12 2007-02-27 15:24:32 giva Exp $
 
5
# $Id: makefile.dj,v 1.13 2008-08-21 13:51:07 giva Exp $
6
6
 
7
7
DEPEND_PREREQ = config.h
8
8
TOPDIR = ..
16
16
 
17
17
CURL_LIB = libcurl.a
18
18
 
19
 
all: $(OBJ_DIR) config.h $(CURL_LIB)
 
19
all: $(OBJ_DIR) ../include/curl/curlbuild.h config.h $(CURL_LIB)
20
20
 
21
21
$(CURL_LIB): $(OBJECTS)
22
22
        ar rs $@ $?
24
24
config.h: config.dos
25
25
        cp $^ $@
26
26
 
 
27
../include/curl/curlbuild.h: ../include/curl/curlbuild.h.dist
 
28
        cp $^ $@
 
29
 
27
30
clean:
28
31
        - rm -f $(OBJECTS)
29
32