forked from ocaml/ocaml
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFAQ
35 lines (27 loc) · 869 Bytes
/
FAQ
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
Q: I've a directory with examples and I want build all of them easily?
R:
You can use an .itarget file listing all products that you want.
$ cat examples.itarget
examples/a.byte
examples/b.byte
$ ocamlbuild examples.otarget
You can also have a dynamic rule that read the examples directory:
$ cat myocamlbuild.ml
open Ocamlbuild_plugin;;
dispatch begin function
| After_rules ->
let examples =
Array.fold_right begin fun f acc ->
if Pathname.get_extension f = "ml" then
("examples" / Pathname.update_extension "byte" f) :: acc
else
acc
end (Pathname.readdir "examples") []
in
rule "All examples"
~prod:"examples.otarget"
~deps:examples
(fun _ _ -> Command.Nop)
| _ -> ()
end
$ ocamlbuild examples.otarget