1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
OCAMLBUILD=ocamlbuild -classic-display \ -tags annot,debug,thread \ -libs unix TARGET=native primes: $(OCAMLBUILD) primes.$(TARGET) example: $(OCAMLBUILD) example.$(TARGET) clean: $(OCAMLBUILD) -clean realclean: clean rm -f *~ cleanall: realclean