exercism-ocaml/hello-world/Makefile

10 lines
77 B
Makefile
Raw Normal View History

2024-01-13 12:19:21 +01:00
default: clean test
test:
dune runtest
clean:
dune clean
.PHONY: clean