exercism/ocaml/bob/Makefile
2016-08-13 18:20:14 -05:00

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