mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
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>
11 lines
180 B
Makefile
11 lines
180 B
Makefile
# Initialise support for build directories.
|
|
builddir ?=
|
|
|
|
ifdef builddir
|
|
buildprefix = $(builddir)/
|
|
buildprefixrel = $(builddir)
|
|
else
|
|
buildprefix =
|
|
buildprefixrel = .
|
|
endif
|