1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
all: create_join chameneos pipeline nqueens
OCAMLC=ocamlc
# set to ocamlopt to get native executables
clean:
rm -f *.cmi *.cmo *.cma *.cmx *.cmxa *.o *.a
rm -f create_join chameneos pipeline nqueens
create_join: create_join.ml
ocamlfind $(OCAMLC) -o create_join -package netmulticore -linkpkg -g \
create_join.ml
chameneos: chameneos.ml
ocamlfind $(OCAMLC) -o chameneos -package netmulticore,netcamlbox \
-linkpkg -g \
chameneos.ml
pipeline: pipeline.ml
ocamlfind $(OCAMLC) -o pipeline -package netmulticore,netcamlbox \
-linkpkg -g \
pipeline.ml
nqueens: nqueens.ml
ocamlfind $(OCAMLC) -o nqueens -package netmulticore,netcamlbox \
-linkpkg -g \
nqueens.ml
|