.PHONY = all,clean

all:
	rm -f *.native *.byte
	eval `opam config env` && ocamlbuild -use-ocamlfind main.native

clean:
	ocamlbuild -clean
