~ubuntu-branches/ubuntu/raring/perl-tk/raring

« back to all changes in this revision

Viewing changes to PNG/zlib/contrib/delphi2/zlib.bpg

  • Committer: Bazaar Package Importer
  • Author(s): Colin Tuckley
  • Date: 2008-02-15 13:56:59 UTC
  • mfrom: (1.1.3 upstream) (4.1.1 hardy)
  • Revision ID: james.westby@ubuntu.com-20080215135659-ru2oqlykuju20fav
Tags: 1:804.028-1
* New Upstream Release (Closes: #463080).
* Update to Debhelper v5.
* Build with XFT=1 (Closes: #411129).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#------------------------------------------------------------------------------
2
 
VERSION = BWS.01
3
 
#------------------------------------------------------------------------------
4
 
!ifndef ROOT
5
 
ROOT = $(MAKEDIR)\..
6
 
!endif
7
 
#------------------------------------------------------------------------------
8
 
MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
9
 
DCC = $(ROOT)\bin\dcc32.exe $**
10
 
BRCC = $(ROOT)\bin\brcc32.exe $**
11
 
#------------------------------------------------------------------------------
12
 
PROJECTS = zlib zlib32 d_zlib
13
 
#------------------------------------------------------------------------------
14
 
default: $(PROJECTS)
15
 
#------------------------------------------------------------------------------
16
 
 
17
 
zlib: zlib.bpr
18
 
  $(MAKE)
19
 
 
20
 
zlib32: zlib32.bpr
21
 
  $(MAKE)
22
 
 
23
 
d_zlib: d_zlib.bpr
24
 
  $(MAKE)
25
 
 
26