forked from lix-project/lix
52e0911302
`installcheck` doesn't yet work, but the rest of the build can now happen mostly inside a separate build directory. Progress on #9342 Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
12 lines
259 B
Makefile
12 lines
259 B
Makefile
# Default installation paths.
|
|
prefix ?= /usr/local
|
|
libdir ?= $(prefix)/lib
|
|
bindir ?= $(prefix)/bin
|
|
libexecdir ?= $(prefix)/libexec
|
|
datadir ?= $(prefix)/share
|
|
localstatedir ?= $(prefix)/var
|
|
sysconfdir ?= $(prefix)/etc
|
|
mandir ?= $(prefix)/share/man
|
|
|
|
DESTDIR ?=
|