diff options
author | Gabriel Scherer <gabriel.scherer@gmail.com> | 2015-08-15 15:57:51 +0000 |
---|---|---|
committer | Gabriel Scherer <gabriel.scherer@gmail.com> | 2015-08-15 15:57:51 +0000 |
commit | cb3bb152ab337b895a645c05c0b15d715e78e90b (patch) | |
tree | 842dee58e41054db3aef4e9bc019a67b53492e01 /Makefile | |
parent | 5893536b14c5801700892f85c6948a0fa2bb812a (diff) | |
download | ocaml-cb3bb152ab337b895a645c05c0b15d715e78e90b.tar.gz |
add option handling for colors in compiler, OCAMLPARAM and ocamlbuild
(Simon Cruanes and Gabriel Scherer)
Use one of
-color auto
-color always
-color never
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@16348 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -38,8 +38,9 @@ OCAMLDOC_OPT=$(WITH_OCAMLDOC:=.opt) INCLUDES=-I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver \ -I toplevel -UTILS=utils/misc.cmo utils/tbl.cmo utils/config.cmo \ - utils/clflags.cmo utils/terminfo.cmo utils/ccomp.cmo utils/warnings.cmo \ +UTILS=utils/config.cmo utils/clflags.cmo \ + utils/misc.cmo utils/tbl.cmo \ + utils/terminfo.cmo utils/ccomp.cmo utils/warnings.cmo \ utils/consistbl.cmo PARSING=parsing/location.cmo parsing/longident.cmo \ |