File: Makefile

package info (click to toggle)
ocaml-alcotest 1.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,436 kB
  • sloc: ml: 3,407; ansic: 125; javascript: 19; makefile: 14
file content (16 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: all test clean

all:
	dune build

test:
	dune build @runtest

test-js:
	dune build @runtest-js

clean:
	dune clean

format:
	dune build --auto-promote @fmt