|
Lines 59-66
Link Here
|
| 59 |
|
59 |
|
| 60 |
# Variable defined in an OS-dependent manner (see below) |
60 |
# Variable defined in an OS-dependent manner (see below) |
| 61 |
CC = |
61 |
CC = |
| 62 |
DMD = |
|
|
| 63 |
DDOC = |
| 64 |
CFLAGS = |
62 |
CFLAGS = |
| 65 |
DFLAGS = |
63 |
DFLAGS = |
| 66 |
|
64 |
|
|
Lines 81-94
Link Here
|
| 81 |
# Set CC and DMD |
79 |
# Set CC and DMD |
| 82 |
ifeq ($(OS),win32wine) |
80 |
ifeq ($(OS),win32wine) |
| 83 |
CC = wine $(HOME)/dmc/bin/dmc.exe |
81 |
CC = wine $(HOME)/dmc/bin/dmc.exe |
| 84 |
DMD = wine $(HOME)/dmd2/windows/bin/dmd.exe |
82 |
DMD ?= wine $(HOME)/dmd2/windows/bin/dmd.exe |
| 85 |
RUN = wine |
83 |
RUN = wine |
| 86 |
else |
84 |
else |
| 87 |
ifeq ($(OS),win32remote) |
85 |
ifeq ($(OS),win32remote) |
| 88 |
DMD = ssh 206.125.170.138 "cd code/dmd/phobos && dmd" |
86 |
DMD ?= ssh 206.125.170.138 "cd code/dmd/phobos && dmd" |
| 89 |
CC = ssh 206.125.170.138 "cd code/dmd/phobos && dmc" |
87 |
CC = ssh 206.125.170.138 "cd code/dmd/phobos && dmc" |
| 90 |
else |
88 |
else |
| 91 |
DMD = dmd |
89 |
DMD ?= dmd |
| 92 |
ifeq ($(OS),win32) |
90 |
ifeq ($(OS),win32) |
| 93 |
CC = dmc |
91 |
CC = dmc |
| 94 |
else |
92 |
else |
|
Lines 139-145
Link Here
|
| 139 |
endif |
137 |
endif |
| 140 |
|
138 |
|
| 141 |
# Set DDOC, the documentation generator |
139 |
# Set DDOC, the documentation generator |
| 142 |
DDOC=dmd |
140 |
DDOC?=$(DMD) |
| 143 |
|
141 |
|
| 144 |
# Set LIB, the ultimate target |
142 |
# Set LIB, the ultimate target |
| 145 |
ifeq (,$(findstring win,$(OS))) |
143 |
ifeq (,$(findstring win,$(OS))) |