File: Makefile

package info (click to toggle)
biniou 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 232 kB
  • sloc: ml: 1,825; makefile: 23
file content (18 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (3)
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