-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathRxSolution.bpg
36 lines (28 loc) · 1.02 KB
/
RxSolution.bpg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#------------------------------------------------------------------------------
VERSION = BWS.01
#------------------------------------------------------------------------------
!ifndef ROOT
ROOT = $(MAKEDIR)\..
!endif
#------------------------------------------------------------------------------
MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
DCC = $(ROOT)\bin\dcc32.exe $**
BRCC = $(ROOT)\bin\brcc32.exe $**
#------------------------------------------------------------------------------
PROJECTS = RxSolution.exe DispenserDLL.dll PrescriberDLL.dll PrintDLL.dll \
EvidenceDLL.dll Prescription.dll
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
RxSolution.exe: RxSolution.dpr
$(DCC)
DispenserDLL.dll: DispenserDLL.dpr
$(DCC)
PrescriberDLL.dll: PrescriberDLL.dpr
$(DCC)
PrintDLL.dll: PrintDLL.dpr
$(DCC)
EvidenceDLL.dll: EvidenceDLL.dpr
$(DCC)
Prescription.dll: Prescription.dpr
$(DCC)