blob: ed9aa69c31247d0372c1684e26fda958f240c135 (
plain) (
tree)
|
|
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
|