File: Makefile

package info (click to toggle)
ocamlnet 4.1.9-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 54,024 kB
  • sloc: ml: 151,939; ansic: 11,071; sh: 2,003; makefile: 1,310
file content (28 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (8)
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