2012-06-27 18:09:30 +02:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Heptagon *)
|
|
|
|
(* *)
|
|
|
|
(* Gwenael Delaval, LIG/INRIA, UJF *)
|
|
|
|
(* Leonard Gerard, Parkas, ENS *)
|
|
|
|
(* Adrien Guatto, Parkas, ENS *)
|
|
|
|
(* Cedric Pasteur, Parkas, ENS *)
|
2012-06-29 01:43:15 +02:00
|
|
|
(* Marc Pouzet, Parkas, ENS *)
|
2012-06-27 18:09:30 +02:00
|
|
|
(* *)
|
|
|
|
(* Copyright 2012 ENS, INRIA, UJF *)
|
|
|
|
(* *)
|
|
|
|
(* This file is part of the Heptagon compiler. *)
|
|
|
|
(* *)
|
|
|
|
(* Heptagon is free software: you can redistribute it and/or modify it *)
|
|
|
|
(* under the terms of the GNU General Public License as published by *)
|
|
|
|
(* the Free Software Foundation, either version 3 of the License, or *)
|
|
|
|
(* (at your option) any later version. *)
|
|
|
|
(* *)
|
|
|
|
(* Heptagon is distributed in the hope that it will be useful, *)
|
|
|
|
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
|
|
|
|
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *)
|
|
|
|
(* GNU General Public License for more details. *)
|
|
|
|
(* *)
|
|
|
|
(* You should have received a copy of the GNU General Public License *)
|
|
|
|
(* along with Heptagon. If not, see <http://www.gnu.org/licenses/> *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
2010-06-15 10:49:03 +02:00
|
|
|
open Ocamlbuild_plugin
|
|
|
|
open Ocamlbuild_plugin.Options
|
2011-10-20 18:06:23 +02:00
|
|
|
open Myocamlbuild_config
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
let df = function
|
|
|
|
| After_rules ->
|
2011-10-20 18:06:23 +02:00
|
|
|
ocamlfind_after_rules ();
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
(* Tell ocamlbuild about the camlp4 library. *)
|
2011-11-14 10:52:06 +01:00
|
|
|
ocaml_lib ~extern:true ~dir:(ocamlfind_query "camlp4") "camlp4";
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
(* Add preproc.cmo to the ocaml pre-processor when use_preproc is set *)
|
|
|
|
flag ["ocaml"; "pp"; "use_preproc"] (A "preproc.cmo");
|
2010-06-30 16:59:51 +02:00
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
(* Running ocamldep on ocaml code that is tagged with use_preproc will
|
|
|
|
require the cmo. Note that you only need this declaration when the
|
|
|
|
syntax extension is part of the sources to be compiled with
|
|
|
|
ocamlbuild. *)
|
|
|
|
dep ["ocaml"; "ocamldep"; "use_preproc"] ["preproc.cmo"];
|
|
|
|
|
2010-06-30 16:59:51 +02:00
|
|
|
flag ["ocaml"; "parser" ; "menhir" ; "use_menhir"] (S[A"--explain";
|
|
|
|
A"--table"]);
|
2010-06-29 11:18:50 +02:00
|
|
|
|
2011-04-18 15:47:25 +02:00
|
|
|
flag ["ocaml"; "compile" ] (S[A"-w"; A"Ae"; A"-warn-error"; A"PU"; A"-w"; A"-9"]);
|
2010-09-14 09:39:02 +02:00
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
| _ -> ()
|
|
|
|
|
|
|
|
let _ = dispatch df
|