this repo has no description
at main 118 lines 3.3 kB view raw
1(rule 2 (targets cmi.ml) 3 (deps (:x cmi.cppo.ml)) 4 (enabled_if (not %{ocaml-config:ox})) 5 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 6 7(rule 8 (targets cmi.ml) 9 (deps (:x cmi.cppo.ml)) 10 (enabled_if %{ocaml-config:ox}) 11 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 12 13(rule 14 (targets cmi.mli) 15 (deps (:x cmi.cppo.mli)) 16 (enabled_if (not %{ocaml-config:ox})) 17 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 18 19(rule 20 (targets cmi.mli) 21 (deps (:x cmi.cppo.mli)) 22 (enabled_if %{ocaml-config:ox}) 23 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 24 25(rule 26 (targets cmti.ml) 27 (deps (:x cmti.cppo.ml)) 28 (enabled_if (not %{ocaml-config:ox})) 29 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 30 31(rule 32 (targets cmti.ml) 33 (deps (:x cmti.cppo.ml)) 34 (enabled_if %{ocaml-config:ox}) 35 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 36 37(rule 38 (targets cmt.ml) 39 (deps (:x cmt.cppo.ml)) 40 (enabled_if (not %{ocaml-config:ox})) 41 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 42 43(rule 44 (targets cmt.ml) 45 (deps (:x cmt.cppo.ml)) 46 (enabled_if %{ocaml-config:ox}) 47 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 48 49(rule 50 (targets doc_attr.ml) 51 (deps (:x doc_attr.cppo.ml)) 52 (enabled_if (not %{ocaml-config:ox})) 53 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 54 55(rule 56 (targets doc_attr.ml) 57 (deps (:x doc_attr.cppo.ml)) 58 (enabled_if %{ocaml-config:ox}) 59 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 60 61(rule 62 (targets ident_env.ml) 63 (deps (:x ident_env.cppo.ml)) 64 (enabled_if (not %{ocaml-config:ox})) 65 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 66 67(rule 68 (targets ident_env.ml) 69 (deps (:x ident_env.cppo.ml)) 70 (enabled_if %{ocaml-config:ox}) 71 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 72 73(rule 74 (targets implementation.ml) 75 (deps (:x implementation.cppo.ml)) 76 (enabled_if (not %{ocaml-config:ox})) 77 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 78 79(rule 80 (targets implementation.ml) 81 (deps (:x implementation.cppo.ml)) 82 (enabled_if %{ocaml-config:ox}) 83 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 84 85(rule 86 (targets odoc_loader.ml) 87 (deps (:x odoc_loader.cppo.ml)) 88 (enabled_if (not %{ocaml-config:ox})) 89 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 90 91(rule 92 (targets odoc_loader.ml) 93 (deps (:x odoc_loader.cppo.ml)) 94 (enabled_if %{ocaml-config:ox}) 95 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 96 97(rule 98 (targets typedtree_traverse.ml) 99 (deps (:x typedtree_traverse.cppo.ml)) 100 (enabled_if (not %{ocaml-config:ox})) 101 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 102 103(rule 104 (targets typedtree_traverse.ml) 105 (deps (:x typedtree_traverse.cppo.ml)) 106 (enabled_if %{ocaml-config:ox}) 107 (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 108 109(library 110 (name odoc_loader) 111 (public_name odoc.loader) 112 (libraries 113 odoc_model 114 odoc-parser 115 syntax_highlighter 116 odoc_document 117 odoc_utils 118 compiler-libs.optcomp))