.PHONY: run
run:
	ocamlbuild -use-ocamlfind src/foo.native
	./foo.native

.PHONY: clean
clean:
	ocamlbuild -clean
