-
Notifications
You must be signed in to change notification settings - Fork 10
/
WkeGroup.bpg
45 lines (34 loc) · 1.22 KB
/
WkeGroup.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
35
36
37
38
39
40
41
42
43
#------------------------------------------------------------------------------
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 = Wke4D.dll WebOnline.exe Mac.exe Calendar.exe FlashDemo.exe \
CardDemo.exe BallPool.exe CSSBubbles.exe WkeTest.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
Wke4D.dll: Src\Wke4D.dpr
$(DCC)
WebOnline.exe: Demos\WebOnline\WebOnline.dpr
$(DCC)
Mac.exe: Demos\Mac\Mac.dpr
$(DCC)
Calendar.exe: Demos\Calendar\Calendar.dpr
$(DCC)
FlashDemo.exe: Demos\FlashDemo\FlashDemo.dpr
$(DCC)
CardDemo.exe: Demos\CardDemo\CardDemo.dpr
$(DCC)
BallPool.exe: Demos\BallPool\BallPool.dpr
$(DCC)
CSSBubbles.exe: Demos\CSSBubbles\CSSBubbles.dpr
$(DCC)
WkeTest.exe: Demos\WkeTest\WkeTest.dpr
$(DCC)