Guest User

Untitled

a guest
Apr 14th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.43 KB | None | 0 0
  1.   3 OCAMLC= ocamlc.opt
  2.   2 OCAMLOPT= ocamlopt.opt
  3.   1
  4.   0 heap: index.cmx heap.cmx htest.cmx
  5.   1         ${OCAMLOPT} -o heap index.cmx heap.cmx
  6.   2          
  7.   3 heap.cmx: heap.ml index.cmx
  8.   4         ${OCAMLOPT} -c heap.ml
  9.   5          
  10.   6 index.cmx: index.ml
  11.   7         ${OCAMLOPT} -c index.ml
  12.   8
  13.   9 htest.cmx: htest.ml heap.cmx
  14.  10         ${OCAMLOPT} -c htest.ml
  15.  11
  16.  12 clean:
  17.  13         rm -r *.{cm{i,x},o} heap
Add Comment
Please, Sign In to add comment