diff options
Diffstat (limited to 'ocamlbuild/flags.mli')
-rw-r--r-- | ocamlbuild/flags.mli | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ocamlbuild/flags.mli b/ocamlbuild/flags.mli new file mode 100644 index 000000000..d0e8c98ca --- /dev/null +++ b/ocamlbuild/flags.mli @@ -0,0 +1,19 @@ +(***********************************************************************) +(* ocamlbuild *) +(* *) +(* Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *) +(* *) +(* Copyright 2007 Institut National de Recherche en Informatique et *) +(* en Automatique. All rights reserved. This file is distributed *) +(* under the terms of the Q Public License version 1.0. *) +(* *) +(***********************************************************************) + +(* $Id$ *) +(* Original author: Nicolas Pouillard *) +val of_tags : Tags.t -> Command.spec +val of_tag_list : Tags.elt list -> Command.spec +val flag : Tags.elt list -> Command.spec -> unit +val add : 'a -> 'a list -> 'a list +val remove : 'a -> 'a list -> 'a list +val to_spec : (string * string) list -> Command.spec |