.PHONY: all clean test

all:
	dune build

test:
	dune runtest

clean:
	rm -rf _build *.install
