aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--_tags9
-rw-r--r--myocamlbuild.ml14
2 files changed, 0 insertions, 23 deletions
diff --git a/_tags b/_tags
deleted file mode 100644
index 0d83f2fa..00000000
--- a/_tags
+++ /dev/null
@@ -1,9 +0,0 @@
-true: use_menhir
-<**/*.cmx>: debug
-<**/*.native>: debug
-<driver/Driver.*{byte,native}>: use_unix,use_str
-<exportclight/Clightgen.*{byte,native}>: use_unix,use_str
-<checklink/*.ml>: pkg_bitstring
-<checklink/Validator.*{byte,native}>: pkg_unix,pkg_str,pkg_bitstring
-<extraction/*.ml>: warn(-20)
-<**/*.ml>: warn(-3)
diff --git a/myocamlbuild.ml b/myocamlbuild.ml
deleted file mode 100644
index ef286185..00000000
--- a/myocamlbuild.ml
+++ /dev/null
@@ -1,14 +0,0 @@
-open Ocamlbuild_plugin;;
-dispatch begin function
-| After_rules ->
- flag ["ocaml"; "parser"; "menhir"] (A("--explain"));
-
- (* libraries and syntax extensions accessed via ocamlfind *)
- flag ["ocaml"; "link"; "pkg_unix"] & S[A"-package"; A "unix"];
- flag ["ocaml"; "link"; "pkg_str"] & S[A"-package"; A "str"];
- flag ["ocaml"; "compile"; "pkg_bitstring"] & S[A"-package"; A"bitstring,bitstring.syntax"; A"-syntax"; A"bitstring.syntax,camlp4o"];
- flag ["ocaml"; "ocamldep"; "pkg_bitstring"] & S[A"-package"; A"bitstring,bitstring.syntax"; A"-syntax"; A"bitstring.syntax,camlp4o"];
- flag ["ocaml"; "link"; "pkg_bitstring"] & S[A"-package"; A"bitstring"]
-
-| _ -> ()
-end