.PHONY = all,clean

all:
	rm -f *.native *.byte
	ocamlbuild -use-ocamlfind main.native -pkgs yojson

clean:
	ocamlbuild -clean
