.PHONY: all run clean
all: Jocaml.class
run: Jocaml.class test.byte
java Jocaml test.byte
clean:
$(RM) *.class *.cmi *.byte *.cmo
test.byte: test.ml
ocamlfind ocamlc -linkpkg -o test.byte test.ml
%.class: %.java
javac $<