forked from lix-project/lix
7feabf7d44
It might seem obnoxious to have yet more configure flags, but I found controlling both the unit and functional tests with one flag was quite confusing because they are so different: - unit tests depending on building, functional tests don't (e.g. when we test already-built Nix) - unit tests can be installed, functional tests cannot - unit tests neeed extra libraries (GTest, RapidCheck), functional tests need extra executables (jq). - unit tests are run by `make check`, functional tests are run by `make installcheck` Really on a technical level, they seem wholly independent. Only on a human level ("they are both are tests") do they have anything in common. I had messed up the logic in cross builds because of this. Now I split the flag in two (and cleaned up a few other inconsistencies), and the logic fixed itself. Co-Authored-By: Robert Hensing <roberth@users.noreply.github.com>
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
AR = @AR@
|
|
BDW_GC_LIBS = @BDW_GC_LIBS@
|
|
BOOST_LDFLAGS = @BOOST_LDFLAGS@
|
|
BUILD_SHARED_LIBS = @BUILD_SHARED_LIBS@
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@
|
|
CXXLTO = @CXXLTO@
|
|
EDITLINE_LIBS = @EDITLINE_LIBS@
|
|
ENABLE_BUILD = @ENABLE_BUILD@
|
|
ENABLE_DOC_GEN = @ENABLE_DOC_GEN@
|
|
ENABLE_FUNCTIONAL_TESTS = @ENABLE_FUNCTIONAL_TESTS@
|
|
ENABLE_INTERNAL_API_DOCS = @ENABLE_INTERNAL_API_DOCS@
|
|
ENABLE_S3 = @ENABLE_S3@
|
|
ENABLE_UNIT_TESTS = @ENABLE_UNIT_TESTS@
|
|
GTEST_LIBS = @GTEST_LIBS@
|
|
HAVE_LIBCPUID = @HAVE_LIBCPUID@
|
|
HAVE_SECCOMP = @HAVE_SECCOMP@
|
|
HOST_OS = @host_os@
|
|
INSTALL_UNIT_TESTS = @INSTALL_UNIT_TESTS@
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBARCHIVE_LIBS = @LIBARCHIVE_LIBS@
|
|
LIBBROTLI_LIBS = @LIBBROTLI_LIBS@
|
|
LIBCURL_LIBS = @LIBCURL_LIBS@
|
|
LIBGIT2_LIBS = @LIBGIT2_LIBS@
|
|
LIBSECCOMP_LIBS = @LIBSECCOMP_LIBS@
|
|
LOWDOWN_LIBS = @LOWDOWN_LIBS@
|
|
OPENSSL_LIBS = @OPENSSL_LIBS@
|
|
PACKAGE_NAME = @PACKAGE_NAME@
|
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
RAPIDCHECK_HEADERS = @RAPIDCHECK_HEADERS@
|
|
SHELL = @bash@
|
|
SODIUM_LIBS = @SODIUM_LIBS@
|
|
SQLITE3_LIBS = @SQLITE3_LIBS@
|
|
bash = @bash@
|
|
bindir = @bindir@
|
|
checkbindir = @checkbindir@
|
|
checklibdir = @checklibdir@
|
|
datadir = @datadir@
|
|
datarootdir = @datarootdir@
|
|
docdir = @docdir@
|
|
embedded_sandbox_shell = @embedded_sandbox_shell@
|
|
exec_prefix = @exec_prefix@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
libexecdir = @libexecdir@
|
|
localstatedir = @localstatedir@
|
|
lsof = @lsof@
|
|
mandir = @mandir@
|
|
pkglibdir = $(libdir)/$(PACKAGE_NAME)
|
|
prefix = @prefix@
|
|
sandbox_shell = @sandbox_shell@
|
|
storedir = @storedir@
|
|
sysconfdir = @sysconfdir@
|
|
system = @system@
|