this repo has no description
1(library
2 (name odoc_xref2)
3 (public_name odoc.xref2)
4 (instrumentation
5 (backend landmarks --auto))
6 (libraries odoc_model odoc_utils odoc_extension_registry))
7
8(rule
9 (enabled_if
10 (not %{ocaml-config:ox}))
11 (action
12 (with-stdout-to
13 shape_tools.ml
14 (run %{bin:cppo} -V OCAML:%{ocaml_version} %{dep:shape_tools.cppo.ml}))))
15
16(rule
17 (enabled_if %{ocaml-config:ox})
18 (action
19 (with-stdout-to
20 shape_tools.ml
21 (run
22 %{bin:cppo}
23 -V
24 OCAML:%{ocaml_version}
25 -D
26 OXCAML
27 %{dep:shape_tools.cppo.ml}))))
28
29(rule
30 (with-stdout-to
31 shape_tools.mli
32 (run %{bin:cppo} -V OCAML:%{ocaml_version} %{dep:shape_tools.cppo.mli})))
33
34(rule
35 (alias runmdx)
36 (deps
37 (:x paths.md)
38 (package odoc))
39 (enabled_if
40 (> %{ocaml_version} 4.08))
41 (action
42 (progn
43 (run ocaml-mdx-test %{x})
44 (diff? %{x} %{x}.corrected))))
45
46(rule
47 (alias runmdx)
48 (deps
49 (:x test.md)
50 (package odoc))
51 (enabled_if
52 (> %{ocaml_version} 4.08))
53 (action
54 (progn
55 (run ocaml-mdx-test %{x})
56 (diff? %{x} %{x}.corrected))))
57
58(rule
59 (alias runmdx)
60 (deps
61 (:x notes.md)
62 (package odoc))
63 (enabled_if
64 (> %{ocaml_version} 4.08))
65 (action
66 (progn
67 (run ocaml-mdx-test %{x})
68 (diff? %{x} %{x}.corrected))))