1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#########################################################################
# #
# OCaml #
# #
# Nicolas Pouillard, 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 GNU Library General Public License, with #
# the special exception on linking described in file ../LICENSE. #
# #
#########################################################################
# OCamlbuild tags file
true: debug
"src": include
"bin": include
"plugin-lib": include
<**/*.ml> or <**/*.mli>: warn_L, warn_R, warn_Z, annot, use_unix
"src/discard_printf.ml": rectypes
"ocamlbuildlib.cma": linkall
<**/*.byte> or <**/*.native> or <**/*.top>: use_unix
<src/*.cmx>: for-pack(Ocamlbuild_pack)
# we have several build stages using different build directories,
# so each build must ignore each other's build dir.
<_build*>: -traverse
|