-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAlimApps.bpg
29 lines (23 loc) · 950 Bytes
/
AlimApps.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 = Alim.exe AlimStore.exe SndTrack.exe RunAlim.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
Alim.exe: Application\Alim.dpr
$(DCC)
AlimStore.exe: Utilities\AlimStore\AlimStore.dpr
$(DCC)
SndTrack.exe: Utilities\SndTrack\source\SndTrack.dpr
$(DCC)
RunAlim.exe: Utilities\AutoRun\RunAlim.dpr
$(DCC)