~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to lib/makefile.dj

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (3.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-8xjr3o2sgce5s4bg
Tags: 7.19.4-1
* New upstream release
* Fix "newer bdb version" <explain what you changed and why> 
  (Closes: #517277)
* resolve libtool version confusion, thanks to 
  Stefanos Harhalakis <v13@v13.gr>
* add new dependency on libgcrypt11-dev due to newly arising binary symbols

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