exercism/ocaml/bob/Makefile

11 lines
139 B
Makefile
Raw Normal View History

2016-08-13 23:20:14 +00:00
test: test.native
@./test.native
test.native: *.ml *.mli
@corebuild -quiet -pkg oUnit test.native
clean:
rm -rf _build
.PHONY: clean