~ubuntu-branches/ubuntu/trusty/log4shib/trusty

« back to all changes in this revision

Viewing changes to bcb5/bcb5.bpg

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2012-06-05 21:20:25 UTC
  • Revision ID: package-import@ubuntu.com-20120605212025-uyigtav7dqwvnf41
Tags: upstream-1.0.4
ImportĀ upstreamĀ versionĀ 1.0.4

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 = log4shib.dll testPattern.exe testmain.exe testCategory.exe \
 
13
  testFixedContextCategory.exe testNDC.exe testConfig.exe
 
14
#------------------------------------------------------------------------------
 
15
default: $(PROJECTS)
 
16
#------------------------------------------------------------------------------
 
17
 
 
18
log4shib.dll: log4shib\log4shib.bpr
 
19
  $(ROOT)\bin\bpr2mak $**
 
20
  $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
 
21
 
 
22
testPattern.exe: testPattern\testPattern.bpr
 
23
  $(ROOT)\bin\bpr2mak $**
 
24
  $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
 
25
 
 
26
testmain.exe: testmain\testmain.bpr
 
27
  $(ROOT)\bin\bpr2mak $**
 
28
  $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
 
29
 
 
30
testCategory.exe: testCategory\testCategory.bpr
 
31
  $(ROOT)\bin\bpr2mak $**
 
32
  $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
 
33
 
 
34
testFixedContextCategory.exe: testFixedContextCategory\testFixedContextCategory.bpr
 
35
  $(ROOT)\bin\bpr2mak $**
 
36
  $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
 
37
 
 
38
testNDC.exe: testNDC\testNDC.bpr
 
39
  $(ROOT)\bin\bpr2mak $**
 
40
  $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
 
41
 
 
42
testConfig.exe: testConfig\testConfig.bpr
 
43
  $(ROOT)\bin\bpr2mak $**
 
44
  $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
 
45
 
 
46