Tagged Questions
[OMake](http://omake.metaprl.org/index.html) is a portable, consistent build system inspired by Make and implemented in OCaml.
2
votes
2answers
54 views
I've got hardcoded paths in my Makefile - how to use ocamlfind to eliminate those? (or how to use ocamlbuild or omake instead)
I'm trying to build an ocaml project which requires a camlp4 extension (pa_deriving in this case). Here's my Makefile:
include ./Makefile.config
OCAMLC := ${OCAMLFIND} ocamlc
OCAMLOPT := ...
1
vote
1answer
76 views
Post build testing with omake
Is there any way to add a post build command to an omakefile? I want it to automatically run unit tests everytime a build is successful, but am not sure of the best way to do this.
0
votes
1answer
50 views
How do I make sure that a directory name is quoted in OMake?
I have a relatively complicated suite of OMake files designed for cross-compiling on a specific platform. My source is in C++.
I'm building from Windows and I need to pass to the compiler include ...
0
votes
0answers
179 views
Difference between omake and nmake
Please tell me the difference between omake and nmake. We want to migrate from omake to nmake as we are rolling out clearcase. Please explain the process of migration from omake to nmake? Also please ...
0
votes
1answer
204 views
How to handle build rule with unknown targets in OMake when target list generator is built
I have a project which uses OMake for its build system, and I am trying to handle a rather tough corner case.
I have some definition files and a tool which can take these definition files and create ...
0
votes
3answers
198 views
OMake compilation with sub-directories
Looking through OMake documentation it seems whenever sources from subdirectories are used - they are always compiled into static libraries first. Is this always necessary? Can I compile and link ...