-
Notifications
You must be signed in to change notification settings - Fork 3
/
rules.ninja
50 lines (39 loc) · 1.19 KB
/
rules.ninja
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
# Automatically generated by reggae version 0.5.4+
# Do not edit by hand
rule _ccompile
command = clang $flags $includes -MMD -MT $out -MF $out.dep -o $out -c $in
deps = gcc
depfile = $out.dep
rule _cppcompile
command = clang++ $flags $includes -MMD -MT $out -MF $out.dep -o $out -c $in
deps = gcc
depfile = $out.dep
rule _dcompile
command = .reggae/dcompile --objFile=$out --depFile=$out.dep dmd $flags $includes $stringImports $in
deps = gcc
depfile = $out.dep
rule _clink
command = clang -o $out $flags $in
rule _cpplink
command = clang++ -o $out $flags $in
rule _dlink
command = dmd -of$out $flags $in
rule _ulink
command = dmd -of$out $flags $in
rule _ccompileAndLink
command = clang $flags $includes -MMD -MT $out -MF $out.dep -o $out $in
deps = gcc
depfile = $out.dep
rule _cppcompileAndLink
command = clang++ $flags $includes -MMD -MT $out -MF $out.dep -o $out $in
deps = gcc
depfile = $out.dep
rule _dcompileAndLink
command = .reggae/dcompile --objFile=$out --depFile=$out.dep dmd $flags $includes $stringImports $in
deps = gcc
depfile = $out.dep
rule _phony
command = $cmd
rule _rerun
command = reggae --cxx=clang++ --cc=clang --export
generator = 1