8 lines
155 B
Makefile
8 lines
155 B
Makefile
|
OC := ocamlbuild -classic-display -no-links -use-ocamlfind
|
||
|
|
||
|
build:
|
||
|
$(OC) -pkg threads,compiler-libs.toplevel,utop test_program.byte
|
||
|
|
||
|
clean:
|
||
|
$(OC) -clean
|