Browse thread
[Caml-list] ocaml and large development projects
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Markus Mottl <markus@o...> |
| Subject: | Re: [Caml-list] ocaml and large development projects |
On Sun, 18 May 2003, Ed L Cashin wrote: > It never occurred to me that I'd have to create a more complex makefile > just to get real separate compilation during development by using > ocamlc, doing ocamlopt only at the end. OCamlMakefile does that for you: http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html#OCamlMakefile A "make bc" (or simply: "make") will build byte code, a "make nc" will build native code for the sources you specify. In each case "make" will only build what is still missing. OCamlMakefile should scale up fairly well for medium-sized OCaml-projects. The limitations / problems that appear with larger projects are mostly related to general issues concerning "make", which isn't a particularly well-suited tool for this purpose, but the only one which is reliably installed on most development platforms. Regards, Markus Mottl -- Markus Mottl http://www.oefai.at/~markus markus@oefai.at ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners