16 lines
275 B
Makefile
16 lines
275 B
Makefile
all:
|
|
dune build src/lib/oboy.exe
|
|
|
|
core:
|
|
dune build src/core/oboy.a
|
|
|
|
check:
|
|
ocamlbuild -use-ocamlfind -I src -lflag -g test/test_bit.byte --
|
|
ocamlbuild -use-ocamlfind -I src -lflag -g test/test_interrupt.byte --
|
|
|
|
clean:
|
|
dune clean
|
|
|
|
bootstrap:
|
|
opam install . --deps-only
|