-
Notifications
You must be signed in to change notification settings - Fork 11
/
RPXDemos.bpg
27 lines (21 loc) · 911 Bytes
/
RPXDemos.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
#------------------------------------------------------------------------------
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 = RPXGate.exe RPXClient.exe RPXCapTest.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
RPXGate.exe: Demos\Gateway\RPXGate.dpr
$(DCC)
RPXClient.exe: Demos\Client\RPXClient.dpr
$(DCC)
RPXCapTest.exe: Demos\TestCap\RPXCapTest.dpr
$(DCC)