Revision 497b7a930072c2a992291f5ed7632698cd01027f authored by Roberto Di Cosmo on 27 January 2012, 09:33:41 UTC, committed by Roberto Di Cosmo on 27 January 2012, 17:37:19 UTC
1 parent 5b8fcdc
Raw File
Makefile
OCAMLBUILD=ocamlbuild
OBFLAGS := -j 10 -use-ocamlfind
OCAMLBEST=native

TARGETS = \
  simplescale.$(OCAMLBEST) \
  floatscale.$(OCAMLBEST) \
  simplescale_array.$(OCAMLBEST) \
  simplescalefold.$(OCAMLBEST) \
  simplescalemapfold.$(OCAMLBEST) \
  mandels.$(OCAMLBEST)

all:
	$(OCAMLBUILD) $(OBFLAGS) $(TARGETS)

.PHONY: clean
clean:
	$(OCAMLBUILD) -clean

back to top