-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjbuild
53 lines (39 loc) · 2.68 KB
/
jbuild
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
(jbuild_version 1)
(executables
((names (clview controller))
(libraries (react str lwt.unix lambda-term rope))))
(rule (with-stdout-to state.ml
(progn
(echo "[@@@warning \"-a\"]\nmodule rec HACK : sig\n")
(cat state.mli)
(echo "\nend = HACK\ninclude HACK\n"))))
(rule (with-stdout-to plugin.ml
(progn
(echo "[@@@warning \"-a\"]\nmodule rec HACK : sig\n")
(cat plugin.mli)
(echo "\nend = HACK\ninclude HACK\n"))))
(rule (with-stdout-to keystroke.ml
(progn
(echo "[@@@warning \"-a\"]\nmodule rec HACK : sig\n")
(cat keystroke.mli)
(echo "\nend = HACK\ninclude HACK\n"))))
(rule (with-stdout-to file.ml
(progn
(echo "[@@@warning \"-a\"]\nmodule rec HACK : sig\n")
(cat file.mli)
(echo "\nend = HACK\ninclude HACK\n"))))
(rule (with-stdout-to controller.ml
(progn
(echo "[@@@warning \"-a\"]\nmodule rec HACK : sig\n")
(cat controller.mli)
(echo "\nend = HACK\ninclude HACK\n"))))
(rule (with-stdout-to color.ml
(progn
(echo "[@@@warning \"-a\"]\nmodule rec HACK : sig\n")
(cat color.mli)
(echo "\nend = HACK\ninclude HACK\n"))))
(rule (with-stdout-to clview.ml
(progn
(echo "[@@@warning \"-a\"]\nmodule rec HACK : sig\n")
(cat clview.mli)
(echo "\nend = HACK\ninclude HACK\n"))))