exercism/ocaml/hello-world/Makefile

12 lines
160 B
Makefile
Raw Normal View History

2017-08-12 14:01:07 +00:00
test: test.native
@./test.native
test.native: *.ml *.ml
@corebuild -r -quiet -pkg oUnit test.native
clean:
rm -rf _build
rm -f test.native
.PHONY: clean