Makefile 265 B

1234567891011121314151617
  1. all: test
  2. test:
  3. dune build test/test.exe
  4. dune exec ax_tester
  5. clean:
  6. dune clean
  7. rm -f bisect????.out
  8. coverage:
  9. BISECT_ENABLE=yes make clean test
  10. mkdir -p coverage
  11. bisect-ppx-report -I _build/ -html coverage/ bisect????.out
  12. .PHONY: all test coverage clean