File: Makefile

package info (click to toggle)
js-of-ocaml-ocamlbuild 5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 208 kB
  • sloc: ml: 85; makefile: 15; sh: 9
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