oboy/Makefile

15 lines
268 B
Makefile
Raw Normal View History

all:
2018-12-28 17:20:48 +01:00
dune build src/lib/oboy.exe
core:
2019-05-08 23:09:31 +02:00
dune build src/core/oboy.a
2015-05-08 14:47:12 +02:00
2015-08-10 01:35:47 +02:00
check:
2016-02-28 23:25:19 +01:00
ocamlbuild -use-ocamlfind -I src -lflag -g test/test_bit.byte --
2016-02-28 23:41:06 +01:00
ocamlbuild -use-ocamlfind -I src -lflag -g test/test_interrupt.byte --
2015-08-10 01:35:47 +02:00
2015-02-23 16:51:45 +01:00
clean:
rm -rf _build
rm -f *.byte
rm -f *.native