From: Kim Nguyễn Date: Sun, 10 Mar 2013 09:52:24 +0000 (+0100) Subject: Handle compiling the java test program from ocamlbuild too X-Git-Tag: v0.1~149 X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=commitdiff_plain;h=743aa7b5b11a28c2b0e6fa719101fc37bd43ce6c Handle compiling the java test program from ocamlbuild too --- diff --git a/main.itarget b/main.itarget index d188d1e..45edc29 100644 --- a/main.itarget +++ b/main.itarget @@ -1 +1,3 @@ src/main.native +tools/xml_diff.native +tools/XPathEval.class diff --git a/myocamlbuild.ml b/myocamlbuild.ml index d198faa..4dbf6f6 100644 --- a/myocamlbuild.ml +++ b/myocamlbuild.ml @@ -37,5 +37,15 @@ let () = dispatch begin pflag [ "ocaml"; "compile"; "native" ] "inline" (fun i -> (S[ A"-inline"; A i ])); pflag [ "ocaml"; "compile" ] "unsafe" (fun s -> (if s = "true" then S[A"-ppopt";A "-unsafe"] else N)); + + | After_rules -> + rule "Java compilation" + ~prod:"%.class" + ~dep:"%.java" + begin fun env _build -> + let java = env "%.java" in + let tags = tags_of_pathname java ++ "compile" in + Cmd( S[ A"javac" ; P java; T tags ]) + end | _ -> () end