summaryrefslogtreecommitdiff
path: root/Makefile
blob: d57c8d0b2119a7381ec308198fe1d4b346303a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all:
	dune build

test:
	dune runtest

check: test

install:
	dune install

uninstall:
	dune uninstall

.PHONY: clean all check test install uninstall

clean:
	dune clean