File: Makefile

package info (click to toggle)
variantslib 1%3A0.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: makefile: 14; ml: 1
file content (17 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (98)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
INSTALL_ARGS := $(if $(PREFIX),--prefix $(PREFIX),)

default:
	dune build

install:
	dune install $(INSTALL_ARGS)

uninstall:
	dune uninstall $(INSTALL_ARGS)

reinstall: uninstall install

clean:
	dune clean

.PHONY: default install uninstall reinstall clean