[Omake] omake not rebuilding ocaml program if dependency changes

erickt at dslextreme.com erickt at dslextreme.com
Fri Dec 29 23:02:48 PST 2006


Can't figure this out. Say I have these files:

foo.ml:
print_string "hello";;
print_string (Bar.spaces 5);;
print_string "hello";;
print_newline ();;

bar.ml:
let spaces level = String.make (level*2) ' ';;

OMakefile:
FILES[] =
    bar
    foo

.DEFAULT: $(OCamlProgram main, $(FILES))



if I modify either of the .ml files, the program isn't automatically
regenerated. Any idea why this isn't happening?

-e



More information about the Omake mailing list