.PHONY = all,clean

all:
	rm -f *.byte
	ocamlbuild -use-ocamlfind -cflag -g -lflag -g main.byte

clean:
	ocamlbuild -clean
