~ubuntu-branches/debian/squeeze/sword/squeeze

« back to all changes in this revision

Viewing changes to olb/olb.bpg

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Glassey
  • Date: 2004-01-15 15:50:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040115155007-n9mz4x0zxrs1isd3
Tags: upstream-1.5.7
ImportĀ upstreamĀ versionĀ 1.5.7

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 = Convert.exe olb2sword.exe prn2sword.exe
 
13
#------------------------------------------------------------------------------
 
14
default: $(PROJECTS)
 
15
#------------------------------------------------------------------------------
 
16
 
 
17
Convert.exe: Convert.bpr
 
18
  $(MAKE)
 
19
 
 
20
olb2sword.exe: olb2sword.bpr
 
21
  $(MAKE)
 
22
 
 
23
prn2sword.exe: prn2sword.bpr
 
24
  $(MAKE)
 
25
 
 
26