SHELL=/bin/bash

main:
	ocamlbuild -lib nums -pkgs oUnit main.byte

test:
	ocamlbuild -libs nums -pkgs oUnit tests.byte && ./tests.byte

clean:
	ocamlbuild -clean
