-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDelphiDoom.bpg
64 lines (47 loc) · 1.42 KB
/
DelphiDoom.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
#------------------------------------------------------------------------------
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 = Doom32.exe GLDoom32.exe Heretic32.exe GLHeretic32.exe Hexen32.exe \
GLHexen32.exe Strife32.exe GLStrife32.exe Launcher.exe ddc.exe ddc_doom.dll \
ddc_heretic.dll ddc_hexen.dll ddc_strife.dll DD_IDE.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
Doom32.exe: Doom32.dpr
$(DCC)
GLDoom32.exe: GLDoom32.dpr
$(DCC)
Heretic32.exe: Heretic32.dpr
$(DCC)
GLHeretic32.exe: GLHeretic32.dpr
$(DCC)
Hexen32.exe: Hexen32.dpr
$(DCC)
GLHexen32.exe: GLHexen32.dpr
$(DCC)
Strife32.exe: Strife32.dpr
$(DCC)
GLStrife32.exe: GLStrife32.dpr
$(DCC)
Launcher.exe: Launcher.dpr
$(DCC)
ddc.exe: ddc.dpr
$(DCC)
ddc_doom.dll: ddc_doom.dpr
$(DCC)
ddc_heretic.dll: ddc_heretic.dpr
$(DCC)
ddc_hexen.dll: ddc_hexen.dpr
$(DCC)
ddc_strife.dll: ddc_strife.dpr
$(DCC)
DD_IDE.exe: DD_IDE.dpr
$(DCC)