forked from dlang/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwin32.mak
160 lines (118 loc) · 3.94 KB
/
win32.mak
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
DOC=\cbx\mars\doc
PHOBOSDOC=\cbx\mars\doc\phobos
# Where scp command copies to
SCPDIR=..\backup
##### Tools
# D compiler
DMD=dmd
# C++ compiler
CC=dmc
# Make program
MAKE=make
# Librarian
LIB=lib
# Delete file(s)
DEL=del
# Make directory
MD=mkdir
# Remove directory
RD=rmdir
# File copy
CP=cp
# De-tabify
DETAB=detab
# Convert line endings to Unix
TOLF=tolf
# Zip
ZIP=zip32
# Copy to another directory
SCP=$(CP)
DFLAGS=-O -release
ROOT_OF_THEM_ALL = generated
ROOT = $(ROOT_OF_THEM_ALL)\windows\32
TARGETS= $(ROOT)\dman.exe \
$(ROOT)\findtags.exe \
$(ROOT)\rdmd.exe \
$(ROOT)\ddemangle.exe \
$(ROOT)\changed.exe \
$(ROOT)\dustmite.exe
MAKEFILES=win32.mak posix.mak
SRCS=dman.d findtags.d rdmd.d ddemangle.d
TAGS= expression.tag \
statement.tag \
std_algorithm.tag \
std_array.tag \
std_file.tag \
std_format.tag \
std_math.tag \
std_parallelism.tag \
std_path.tag \
std_random.tag \
std_range.tag \
std_regex.tag \
std_stdio.tag \
std_string.tag \
std_traits.tag \
std_typetuple.tag
targets : $(TARGETS)
dman: $(ROOT)\dman.exe
findtags: $(ROOT)\findtags.exe
rdmd: $(ROOT)\rdmd.exe
ddemangle: $(ROOT)\ddemangle.exe
changed: $(ROOT)\changed.exe
dustmite: $(ROOT)\dustmite.exe
expression.tag : $(ROOT)\findtags.exe $(DOC)\expression.html
+$(ROOT)\findtags $(DOC)\expression.html >expression.tag
statement.tag : $(ROOT)\findtags.exe $(DOC)\statement.html
+$(ROOT)\findtags $(DOC)\statement.html >statement.tag
std_algorithm.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_algorithm.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_algorithm.html >std_algorithm.tag
std_array.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_array.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_array.html >std_array.tag
std_file.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_file.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_file.html >std_file.tag
std_format.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_format.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_format.html >std_format.tag
std_math.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_math.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_math.html >std_math.tag
std_parallelism.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_parallelism.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_parallelism.html >std_parallelism.tag
std_path.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_path.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_path.html >std_path.tag
std_random.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_random.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_random.html >std_random.tag
std_range.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_range.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_range.html >std_range.tag
std_regex.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_regex.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_regex.html >std_regex.tag
std_stdio.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_stdio.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_stdio.html >std_stdio.tag
std_string.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_string.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_string.html >std_string.tag
std_traits.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_traits.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_traits.html >std_traits.tag
std_typetuple.tag : $(ROOT)\findtags.exe $(PHOBOSDOC)\std_typetuple.html
+$(ROOT)\findtags $(PHOBOSDOC)\std_typetuple.html >std_typetuple.tag
$(ROOT)\findtags.exe : findtags.d
$(DMD) -of$@ findtags.d
$(ROOT)\dman.exe : dman.d $(TAGS)
$(DMD) $(DFLAGS) -of$@ dman.d -J.
$(ROOT)\rdmd.exe : rdmd.d
$(DMD) $(DFLAGS) -of$@ rdmd.d advapi32.lib
$(ROOT)\ddemangle.exe : ddemangle.d
$(DMD) $(DFLAGS) -of$@ ddemangle.d
$(ROOT)\dustmite.exe : DustMite/dustmite.d DustMite/dsplit.d
$(DMD) $(DFLAGS) -of$@ DustMite/dustmite.d DustMite/dsplit.d
$(ROOT)\changed.exe : changed.d
$(DMD) $(DFLAGS) -of$@ changed.d
clean :
del $(TARGETS) $(TAGS)
detab:
$(DETAB) $(SRCS)
tolf:
$(TOLF) $(SRCS) $(MAKEFILES)
zip: detab tolf $(MAKEFILES)
$(DEL) dman.zip
$(ZIP) dman $(MAKEFILES) $(SRCS) $(TAGS)
scp: detab tolf $(MAKEFILES)
$(SCP) $(SRCS) $(MAKEFILES) $(SCPDIR)