Skip to content

Instantly share code, notes, and snippets.

@mukeshtiwari
Created December 29, 2018 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mukeshtiwari/5ad55ea448c9808f8b161899a729dc6d to your computer and use it in GitHub Desktop.
Save mukeshtiwari/5ad55ea448c9808f8b161899a729dc6d to your computer and use it in GitHub Desktop.
keep-learnings-MacBook-Pro:starter-lab1 keep_learning$ ls
Makefile a.out avl.ml expr.ml test.ml
keep-learnings-MacBook-Pro:starter-lab1 keep_learning$ make test
ocamlfind ocamlc -o test -package extlib,oUnit -linkpkg -g avl.ml expr.ml test.ml
keep-learnings-MacBook-Pro:starter-lab1 keep_learning$ ls
Makefile a.out avl.cmi avl.cmo avl.ml expr.cmi expr.cmo expr.ml test test.cmi test.cmo test.ml
keep-learnings-MacBook-Pro:starter-lab1 keep_learning$ cat Makefile
test: avl.ml expr.ml test.ml
ocamlfind ocamlc -o test -package extlib,oUnit -linkpkg -g avl.ml expr.ml test.ml
clean:
rm -f test *.log *.cmi *.cmo *.cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment