File: Makefile

package info (click to toggle)
js-of-ocaml-ocamlbuild 0.0.0%2Bgit20220118%2B852302c8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 204 kB
  • sloc: ml: 71; makefile: 23
file content (17 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all:
	dune build @all

tests:
	dune runtest

promote:
	dune promote

fmt:
	dune build @fmt --auto-promote 2> /dev/null || true
	git diff --exit-code

clean:
	dune clean

.PHONY: all tests promote fmt clean