forked from ocaml-multicore/effects-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (27 loc) · 887 Bytes
/
Makefile
File metadata and controls
39 lines (27 loc) · 887 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
all: concurrent generator state reify_reflect ref transaction aio \
delimcc dyn_wind queens memo
concurrent: sched.mli sched.ml concurrent.ml
ocamlc -o concurrent sched.mli sched.ml concurrent.ml
queens: queens.ml
ocamlc -o queens queens.ml
memo: memo.ml
ocamlc -o memo memo.ml
generator: generator.ml
ocamlc -o generator generator.ml
state: state.ml
ocamlc -o state state.ml
reify_reflect: reify_reflect.ml
ocamlc -o reify_reflect reify_reflect.ml
ref: ref.ml
ocamlc -o ref ref.ml
transaction: transaction.ml
ocamlc -o transaction transaction.ml
aio: aio.ml
ocamlc -o aio unix.cma aio.ml
delimcc: delimcc.ml
ocamlc -w "-8" -o delimcc delimcc.ml delimcc_paper_example.ml
dyn_wind: dyn_wind.ml
ocamlc -o dyn_wind dyn_wind.ml
clean:
rm -f *.cmx *.cmi *.cmo *.o concurrent generator *~ a.out state reify_reflect ref \
transaction aio delimcc dyn_wind queens memo