This repository was archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPJConsoleAppDemos.bpg
67 lines (49 loc) · 1.49 KB
/
PJConsoleAppDemos.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#------------------------------------------------------------------------------
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 = Timed.exe Echoer.exe Demo1.exe Demo2.exe Demo3.exe Demo4.exe \
Demo5.exe Demo6.exe Demo7.exe Demo8.exe Demo9.exe Demo10.exe Demo11.exe \
Demo12.exe Demo13Parent.exe Demo13Child.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
Timed.exe: TestApps\Timed\Timed.dpr
$(DCC)
Demo1.exe: Demo1\Demo1.dpr
$(DCC)
Demo2.exe: Demo2\Demo2.dpr
$(DCC)
Demo3.exe: Demo3\Demo3.dpr
$(DCC)
Demo4.exe: Demo4\Demo4.dpr
$(DCC)
Demo5.exe: Demo5\Demo5.dpr
$(DCC)
Echoer.exe: TestApps\Echoer\Echoer.dpr
$(DCC)
Demo6.exe: Demo6\Demo6.dpr
$(DCC)
Demo7.exe: Demo7\Demo7.dpr
$(DCC)
Demo8.exe: Demo8\Demo8.dpr
$(DCC)
Demo9.exe: Demo9\Demo9.dpr
$(DCC)
Demo10.exe: Demo10\Demo10.dpr
$(DCC)
Demo11.exe: Demo11\Demo11.dpr
$(DCC)
Demo12.exe: Demo12\Demo12.dpr
$(DCC)
Demo13Parent.exe: Demo13\Demo13Parent.dpr
$(DCC)
Demo13Child.exe: Demo13\Demo13Child.dpr
$(DCC)