-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdune.inc
More file actions
56 lines (51 loc) · 1.17 KB
/
dune.inc
File metadata and controls
56 lines (51 loc) · 1.17 KB
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
(rule
(enabled_if %{bin-available:awk})
(deps
(:md2mli %{project_root}/test/utils/md2mli.awk))
(action
(with-stdout-to
CHANGES.mli
(chdir %{project_root}
(run awk -f %{md2mli} %{dep:CHANGES.md})))))
(rule
(alias runtest)
(enabled_if %{bin-available:awk})
(deps %{bin:gospel})
(target CHANGES.gospel)
(action
(chdir %{project_root}
(run gospel check %{dep:CHANGES.mli}))))
(rule
(enabled_if %{bin-available:awk})
(deps
(:md2mli %{project_root}/test/utils/md2mli.awk))
(action
(with-stdout-to
DESIGN.mli
(chdir %{project_root}
(run awk -f %{md2mli} %{dep:DESIGN.md})))))
(rule
(alias runtest)
(enabled_if %{bin-available:awk})
(deps %{bin:gospel})
(target DESIGN.gospel)
(action
(chdir %{project_root}
(run gospel check %{dep:DESIGN.mli}))))
(rule
(enabled_if %{bin-available:awk})
(deps
(:md2mli %{project_root}/test/utils/md2mli.awk))
(action
(with-stdout-to
README.mli
(chdir %{project_root}
(run awk -f %{md2mli} %{dep:README.md})))))
(rule
(alias runtest)
(enabled_if %{bin-available:awk})
(deps %{bin:gospel})
(target README.gospel)
(action
(chdir %{project_root}
(run gospel check %{dep:README.mli}))))