forked from zacat/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortalDemos_VCL.bpg
33 lines (26 loc) · 1.05 KB
/
PortalDemos_VCL.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
#------------------------------------------------------------------------------
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 = RtcHost.exe RtcControl.exe RtcGateway.exe RtcGateway_ISAPI.dll \
RtcViewer.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
RtcHost.exe: Demos\Clients\RtcHost.dpr
$(DCC)
RtcControl.exe: Demos\Clients\RtcControl.dpr
$(DCC)
RtcGateway.exe: Demos\Gateway\RtcGateway.dpr
$(DCC)
RtcGateway_ISAPI.dll: Demos\Gateway\RtcGateway_ISAPI.dpr
$(DCC)
RtcViewer.exe: Demos\Clients\RtcViewer.dpr
$(DCC)