exercism/ocaml/bob/Makefile

11 lines
139 B
Makefile

test: test.native
@./test.native
test.native: *.ml *.mli
@corebuild -quiet -pkg oUnit test.native
clean:
rm -rf _build
.PHONY: clean